Merge branch 'master' into hunicus/promo-subtitles
This commit is contained in:
commit
caf15351f7
26
.github/workflows/get_image_digest.yml
vendored
Normal file
26
.github/workflows/get_image_digest.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: 'Print images digest'
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: 'Image Version'
|
||||||
|
required: false
|
||||||
|
default: 'latest'
|
||||||
|
type: string
|
||||||
|
jobs:
|
||||||
|
print-images-sha:
|
||||||
|
runs-on: 'ubuntu-latest'
|
||||||
|
name: Print digest for images
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
path: digest
|
||||||
|
|
||||||
|
- name: Run script
|
||||||
|
working-directory: digest
|
||||||
|
run: |
|
||||||
|
sh ./docker/scripts/get_image_digest.sh $VERSION
|
||||||
|
env:
|
||||||
|
VERSION: ${{ github.event.inputs.version }}
|
@ -5,9 +5,9 @@ const PROPAGATION_MARGIN = 180; // in seconds, time since a transaction is first
|
|||||||
|
|
||||||
class Audit {
|
class Audit {
|
||||||
auditBlock(transactions: TransactionExtended[], projectedBlocks: MempoolBlockWithTransactions[], mempool: { [txId: string]: TransactionExtended })
|
auditBlock(transactions: TransactionExtended[], projectedBlocks: MempoolBlockWithTransactions[], mempool: { [txId: string]: TransactionExtended })
|
||||||
: { censored: string[], added: string[], fresh: string[], score: number } {
|
: { censored: string[], added: string[], fresh: string[], score: number, similarity: number } {
|
||||||
if (!projectedBlocks?.[0]?.transactionIds || !mempool) {
|
if (!projectedBlocks?.[0]?.transactionIds || !mempool) {
|
||||||
return { censored: [], added: [], fresh: [], score: 0 };
|
return { censored: [], added: [], fresh: [], score: 0, similarity: 1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
const matches: string[] = []; // present in both mined block and template
|
const matches: string[] = []; // present in both mined block and template
|
||||||
@ -16,6 +16,8 @@ class Audit {
|
|||||||
const isCensored = {}; // missing, without excuse
|
const isCensored = {}; // missing, without excuse
|
||||||
const isDisplaced = {};
|
const isDisplaced = {};
|
||||||
let displacedWeight = 0;
|
let displacedWeight = 0;
|
||||||
|
let matchedWeight = 0;
|
||||||
|
let projectedWeight = 0;
|
||||||
|
|
||||||
const inBlock = {};
|
const inBlock = {};
|
||||||
const inTemplate = {};
|
const inTemplate = {};
|
||||||
@ -38,11 +40,16 @@ class Audit {
|
|||||||
isCensored[txid] = true;
|
isCensored[txid] = true;
|
||||||
}
|
}
|
||||||
displacedWeight += mempool[txid].weight;
|
displacedWeight += mempool[txid].weight;
|
||||||
|
} else {
|
||||||
|
matchedWeight += mempool[txid].weight;
|
||||||
}
|
}
|
||||||
|
projectedWeight += mempool[txid].weight;
|
||||||
inTemplate[txid] = true;
|
inTemplate[txid] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
displacedWeight += (4000 - transactions[0].weight);
|
displacedWeight += (4000 - transactions[0].weight);
|
||||||
|
projectedWeight += transactions[0].weight;
|
||||||
|
matchedWeight += transactions[0].weight;
|
||||||
|
|
||||||
// we can expect an honest miner to include 'displaced' transactions in place of recent arrivals and censored txs
|
// we can expect an honest miner to include 'displaced' transactions in place of recent arrivals and censored txs
|
||||||
// these displaced transactions should occupy the first N weight units of the next projected block
|
// these displaced transactions should occupy the first N weight units of the next projected block
|
||||||
@ -121,12 +128,14 @@ class Audit {
|
|||||||
const numCensored = Object.keys(isCensored).length;
|
const numCensored = Object.keys(isCensored).length;
|
||||||
const numMatches = matches.length - 1; // adjust for coinbase tx
|
const numMatches = matches.length - 1; // adjust for coinbase tx
|
||||||
const score = numMatches > 0 ? (numMatches / (numMatches + numCensored)) : 0;
|
const score = numMatches > 0 ? (numMatches / (numMatches + numCensored)) : 0;
|
||||||
|
const similarity = projectedWeight ? matchedWeight / projectedWeight : 1;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
censored: Object.keys(isCensored),
|
censored: Object.keys(isCensored),
|
||||||
added,
|
added,
|
||||||
fresh,
|
fresh,
|
||||||
score
|
score,
|
||||||
|
similarity,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { CpfpInfo, TransactionExtended, TransactionStripped } from '../mempool.interfaces';
|
import { CpfpInfo, MempoolBlockWithTransactions, TransactionExtended, TransactionStripped } from '../mempool.interfaces';
|
||||||
import config from '../config';
|
import config from '../config';
|
||||||
import { NodeSocket } from '../repositories/NodesSocketsRepository';
|
import { NodeSocket } from '../repositories/NodesSocketsRepository';
|
||||||
import { isIP } from 'net';
|
import { isIP } from 'net';
|
||||||
@ -164,6 +164,30 @@ export class Common {
|
|||||||
return parents;
|
return parents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// calculates the ratio of matched transactions to projected transactions by weight
|
||||||
|
static getSimilarity(projectedBlock: MempoolBlockWithTransactions, transactions: TransactionExtended[]): number {
|
||||||
|
let matchedWeight = 0;
|
||||||
|
let projectedWeight = 0;
|
||||||
|
const inBlock = {};
|
||||||
|
|
||||||
|
for (const tx of transactions) {
|
||||||
|
inBlock[tx.txid] = tx;
|
||||||
|
}
|
||||||
|
|
||||||
|
// look for transactions that were expected in the template, but missing from the mined block
|
||||||
|
for (const tx of projectedBlock.transactions) {
|
||||||
|
if (inBlock[tx.txid]) {
|
||||||
|
matchedWeight += tx.vsize * 4;
|
||||||
|
}
|
||||||
|
projectedWeight += tx.vsize * 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
projectedWeight += transactions[0].weight;
|
||||||
|
matchedWeight += transactions[0].weight;
|
||||||
|
|
||||||
|
return projectedWeight ? matchedWeight / projectedWeight : 1;
|
||||||
|
}
|
||||||
|
|
||||||
static getSqlInterval(interval: string | null): string | null {
|
static getSqlInterval(interval: string | null): string | null {
|
||||||
switch (interval) {
|
switch (interval) {
|
||||||
case '24h': return '1 DAY';
|
case '24h': return '1 DAY';
|
||||||
|
@ -7,7 +7,7 @@ import cpfpRepository from '../repositories/CpfpRepository';
|
|||||||
import { RowDataPacket } from 'mysql2';
|
import { RowDataPacket } from 'mysql2';
|
||||||
|
|
||||||
class DatabaseMigration {
|
class DatabaseMigration {
|
||||||
private static currentVersion = 58;
|
private static currentVersion = 59;
|
||||||
private queryTimeout = 3600_000;
|
private queryTimeout = 3600_000;
|
||||||
private statisticsAddedIndexed = false;
|
private statisticsAddedIndexed = false;
|
||||||
private uniqueLogs: string[] = [];
|
private uniqueLogs: string[] = [];
|
||||||
@ -510,6 +510,11 @@ class DatabaseMigration {
|
|||||||
// We only run some migration queries for this version
|
// We only run some migration queries for this version
|
||||||
await this.updateToSchemaVersion(58);
|
await this.updateToSchemaVersion(58);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (databaseSchemaVersion < 59 && (config.MEMPOOL.NETWORK === 'signet' || config.MEMPOOL.NETWORK === 'testnet')) {
|
||||||
|
// https://github.com/mempool/mempool/issues/3360
|
||||||
|
await this.$executeQuery(`TRUNCATE prices`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -55,6 +55,7 @@ class DiskCache {
|
|||||||
const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES);
|
const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES);
|
||||||
|
|
||||||
await fsPromises.writeFile(DiskCache.FILE_NAME, JSON.stringify({
|
await fsPromises.writeFile(DiskCache.FILE_NAME, JSON.stringify({
|
||||||
|
network: config.MEMPOOL.NETWORK,
|
||||||
cacheSchemaVersion: this.cacheSchemaVersion,
|
cacheSchemaVersion: this.cacheSchemaVersion,
|
||||||
blocks: blocks.getBlocks(),
|
blocks: blocks.getBlocks(),
|
||||||
blockSummaries: blocks.getBlockSummaries(),
|
blockSummaries: blocks.getBlockSummaries(),
|
||||||
@ -98,6 +99,7 @@ class DiskCache {
|
|||||||
const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES);
|
const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES);
|
||||||
|
|
||||||
fs.writeFileSync(DiskCache.TMP_FILE_NAME, JSON.stringify({
|
fs.writeFileSync(DiskCache.TMP_FILE_NAME, JSON.stringify({
|
||||||
|
network: config.MEMPOOL.NETWORK,
|
||||||
cacheSchemaVersion: this.cacheSchemaVersion,
|
cacheSchemaVersion: this.cacheSchemaVersion,
|
||||||
blocks: blocks.getBlocks(),
|
blocks: blocks.getBlocks(),
|
||||||
blockSummaries: blocks.getBlockSummaries(),
|
blockSummaries: blocks.getBlockSummaries(),
|
||||||
@ -160,6 +162,10 @@ class DiskCache {
|
|||||||
logger.notice('Disk cache contains an outdated schema version. Clearing it and skipping the cache loading.');
|
logger.notice('Disk cache contains an outdated schema version. Clearing it and skipping the cache loading.');
|
||||||
return this.wipeCache();
|
return this.wipeCache();
|
||||||
}
|
}
|
||||||
|
if (data.network && data.network !== config.MEMPOOL.NETWORK) {
|
||||||
|
logger.notice('Disk cache contains data from a different network. Clearing it and skipping the cache loading.');
|
||||||
|
return this.wipeCache();
|
||||||
|
}
|
||||||
|
|
||||||
if (data.mempoolArray) {
|
if (data.mempoolArray) {
|
||||||
for (const tx of data.mempoolArray) {
|
for (const tx of data.mempoolArray) {
|
||||||
|
@ -432,7 +432,7 @@ class WebsocketHandler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Common.indexingEnabled() && memPool.isInSync()) {
|
if (Common.indexingEnabled() && memPool.isInSync()) {
|
||||||
const { censored, added, fresh, score } = Audit.auditBlock(transactions, projectedBlocks, auditMempool);
|
const { censored, added, fresh, score, similarity } = Audit.auditBlock(transactions, projectedBlocks, auditMempool);
|
||||||
const matchRate = Math.round(score * 100 * 100) / 100;
|
const matchRate = Math.round(score * 100 * 100) / 100;
|
||||||
|
|
||||||
const stripped = projectedBlocks[0]?.transactions ? projectedBlocks[0].transactions.map((tx) => {
|
const stripped = projectedBlocks[0]?.transactions ? projectedBlocks[0].transactions.map((tx) => {
|
||||||
@ -464,8 +464,14 @@ class WebsocketHandler {
|
|||||||
|
|
||||||
if (block.extras) {
|
if (block.extras) {
|
||||||
block.extras.matchRate = matchRate;
|
block.extras.matchRate = matchRate;
|
||||||
|
block.extras.similarity = similarity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (block.extras) {
|
||||||
|
const mBlocks = mempoolBlocks.getMempoolBlocksWithTransactions();
|
||||||
|
if (mBlocks?.length && mBlocks[0].transactions) {
|
||||||
|
block.extras.similarity = Common.getSimilarity(mBlocks[0], transactions);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const removed: string[] = [];
|
const removed: string[] = [];
|
||||||
|
@ -153,6 +153,7 @@ export interface BlockExtension {
|
|||||||
feeRange: number[]; // fee rate percentiles
|
feeRange: number[]; // fee rate percentiles
|
||||||
reward: number;
|
reward: number;
|
||||||
matchRate: number | null;
|
matchRate: number | null;
|
||||||
|
similarity?: number;
|
||||||
pool: {
|
pool: {
|
||||||
id: number; // Note - This is the `unique_id`, not to mix with the auto increment `id`
|
id: number; // Note - This is the `unique_id`, not to mix with the auto increment `id`
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -17,7 +17,9 @@ class PoolsUpdater {
|
|||||||
treeUrl: string = config.MEMPOOL.POOLS_JSON_TREE_URL;
|
treeUrl: string = config.MEMPOOL.POOLS_JSON_TREE_URL;
|
||||||
|
|
||||||
public async updatePoolsJson(): Promise<void> {
|
public async updatePoolsJson(): Promise<void> {
|
||||||
if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false) {
|
if (['mainnet', 'testnet', 'signet'].includes(config.MEMPOOL.NETWORK) === false ||
|
||||||
|
config.MEMPOOL.ENABLED === false
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,6 +73,11 @@ class PriceUpdater {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public async $run(): Promise<void> {
|
public async $run(): Promise<void> {
|
||||||
|
if (config.MEMPOOL.NETWORK === 'signet' || config.MEMPOOL.NETWORK === 'testnet') {
|
||||||
|
// Coins have no value on testnet/signet, so we want to always show 0
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (this.running === true) {
|
if (this.running === true) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -88,7 +93,7 @@ class PriceUpdater {
|
|||||||
if (this.historyInserted === false && config.DATABASE.ENABLED === true) {
|
if (this.historyInserted === false && config.DATABASE.ENABLED === true) {
|
||||||
await this.$insertHistoricalPrices();
|
await this.$insertHistoricalPrices();
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e: any) {
|
||||||
logger.err(`Cannot save BTC prices in db. Reason: ${e instanceof Error ? e.message : e}`, logger.tags.mining);
|
logger.err(`Cannot save BTC prices in db. Reason: ${e instanceof Error ? e.message : e}`, logger.tags.mining);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,6 +38,10 @@
|
|||||||
"translation": "src/locale/messages.de.xlf",
|
"translation": "src/locale/messages.de.xlf",
|
||||||
"baseHref": "/de/"
|
"baseHref": "/de/"
|
||||||
},
|
},
|
||||||
|
"da": {
|
||||||
|
"translation": "src/locale/messages.da.xlf",
|
||||||
|
"baseHref": "/da/"
|
||||||
|
},
|
||||||
"es": {
|
"es": {
|
||||||
"translation": "src/locale/messages.es.xlf",
|
"translation": "src/locale/messages.es.xlf",
|
||||||
"baseHref": "/es/"
|
"baseHref": "/es/"
|
||||||
|
@ -139,26 +139,87 @@ export const specialBlocks = {
|
|||||||
'0': {
|
'0': {
|
||||||
labelEvent: 'Genesis',
|
labelEvent: 'Genesis',
|
||||||
labelEventCompleted: 'The Genesis of Bitcoin',
|
labelEventCompleted: 'The Genesis of Bitcoin',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
},
|
},
|
||||||
'210000': {
|
'210000': {
|
||||||
labelEvent: 'Bitcoin\'s 1st Halving',
|
labelEvent: 'Bitcoin\'s 1st Halving',
|
||||||
labelEventCompleted: 'Block Subsidy has halved to 25 BTC per block',
|
labelEventCompleted: 'Block Subsidy has halved to 25 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
},
|
},
|
||||||
'420000': {
|
'420000': {
|
||||||
labelEvent: 'Bitcoin\'s 2nd Halving',
|
labelEvent: 'Bitcoin\'s 2nd Halving',
|
||||||
labelEventCompleted: 'Block Subsidy has halved to 12.5 BTC per block',
|
labelEventCompleted: 'Block Subsidy has halved to 12.5 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
},
|
},
|
||||||
'630000': {
|
'630000': {
|
||||||
labelEvent: 'Bitcoin\'s 3rd Halving',
|
labelEvent: 'Bitcoin\'s 3rd Halving',
|
||||||
labelEventCompleted: 'Block Subsidy has halved to 6.25 BTC per block',
|
labelEventCompleted: 'Block Subsidy has halved to 6.25 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
},
|
},
|
||||||
'709632': {
|
'709632': {
|
||||||
labelEvent: 'Taproot 🌱 activation',
|
labelEvent: 'Taproot 🌱 activation',
|
||||||
labelEventCompleted: 'Taproot 🌱 has been activated!',
|
labelEventCompleted: 'Taproot 🌱 has been activated!',
|
||||||
|
networks: ['mainnet'],
|
||||||
},
|
},
|
||||||
'840000': {
|
'840000': {
|
||||||
labelEvent: 'Bitcoin\'s 4th Halving',
|
labelEvent: 'Bitcoin\'s 4th Halving',
|
||||||
labelEventCompleted: 'Block Subsidy has halved to 3.125 BTC per block',
|
labelEventCompleted: 'Block Subsidy has halved to 3.125 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'1050000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 5th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 1.5625 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'1260000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 6th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.78125 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'1470000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 7th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.390625 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'1680000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 8th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.1953125 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'1890000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 9th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.09765625 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'2100000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 10th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.04882812 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'2310000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 11th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.02441406 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'2520000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 12th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.01220703 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'2730000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 13th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.00610351 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'2940000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 14th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.00305175 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
|
},
|
||||||
|
'3150000': {
|
||||||
|
labelEvent: 'Bitcoin\'s 15th Halving',
|
||||||
|
labelEventCompleted: 'Block Subsidy has halved to 0.00152587 BTC per block',
|
||||||
|
networks: ['mainnet', 'testnet'],
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -254,3 +254,30 @@ export function selectPowerOfTen(val: number): { divider: number, unit: string }
|
|||||||
|
|
||||||
return selectedPowerOfTen;
|
return selectedPowerOfTen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const featureActivation = {
|
||||||
|
mainnet: {
|
||||||
|
rbf: 399701,
|
||||||
|
segwit: 477120,
|
||||||
|
taproot: 709632,
|
||||||
|
},
|
||||||
|
testnet: {
|
||||||
|
rbf: 720255,
|
||||||
|
segwit: 872730,
|
||||||
|
taproot: 2032291,
|
||||||
|
},
|
||||||
|
signet: {
|
||||||
|
rbf: 0,
|
||||||
|
segwit: 0,
|
||||||
|
taproot: 0,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export function isFeatureActive(network: string, height: number, feature: 'rbf' | 'segwit' | 'taproot'): boolean {
|
||||||
|
const activationHeight = featureActivation[network || 'mainnet']?.[feature];
|
||||||
|
if (activationHeight != null) {
|
||||||
|
return height >= activationHeight;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -299,6 +299,10 @@
|
|||||||
<img class="image" src="/resources/profile/boltz.svg" />
|
<img class="image" src="/resources/profile/boltz.svg" />
|
||||||
<span>Boltz</span>
|
<span>Boltz</span>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="https://github.com/MutinyWallet" target="_blank" title="Mutiny">
|
||||||
|
<img class="image not-rounded" src="/resources/profile/mutiny.svg" />
|
||||||
|
<span>Mutiny</span>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
|
|
||||||
.image.not-rounded {
|
.image.not-rounded {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
width: 74px;
|
width: 60px;
|
||||||
height: 74px;
|
height: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.intro {
|
.intro {
|
||||||
@ -42,9 +42,11 @@
|
|||||||
|
|
||||||
video {
|
video {
|
||||||
width: 640px;
|
width: 640px;
|
||||||
height: 360px;
|
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
height: 360px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.social-icons {
|
.social-icons {
|
||||||
@ -57,9 +59,13 @@
|
|||||||
.enterprise-sponsor,
|
.enterprise-sponsor,
|
||||||
.community-integrations-sponsor,
|
.community-integrations-sponsor,
|
||||||
.maintainers {
|
.maintainers {
|
||||||
margin-top: 68px;
|
margin-top: 30px;
|
||||||
margin-bottom: 68px;
|
margin-bottom: 68px;
|
||||||
scroll-margin: 30px;
|
scroll-margin: 30px;
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
margin-top: 68px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.maintainers {
|
.maintainers {
|
||||||
@ -228,11 +234,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.community-integrations-sponsor {
|
.community-integrations-sponsor {
|
||||||
max-width: 965px;
|
max-width: 1110px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.community-integrations-sponsor img.image {
|
.community-integrations-sponsor img.image {
|
||||||
width: 78px;
|
width: 64px;
|
||||||
height: 78px;
|
height: 64px;
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<div [attr.data-cy]="'bitcoin-block-offset-' + offset + '-index-' + i"
|
<div [attr.data-cy]="'bitcoin-block-offset-' + offset + '-index-' + i"
|
||||||
class="text-center bitcoin-block mined-block blockchain-blocks-offset-{{ offset }}-index-{{ i }}"
|
class="text-center bitcoin-block mined-block blockchain-blocks-offset-{{ offset }}-index-{{ i }}"
|
||||||
id="bitcoin-block-{{ block.height }}" [ngStyle]="blockStyles[i]"
|
id="bitcoin-block-{{ block.height }}" [ngStyle]="blockStyles[i]"
|
||||||
[class.blink-bg]="(specialBlocks[block.height] !== undefined)">
|
[class.blink-bg]="isSpecial(block.height)">
|
||||||
<a draggable="false" [routerLink]="['/block/' | relativeUrl, block.id]" [state]="{ data: { block: block } }"
|
<a draggable="false" [routerLink]="['/block/' | relativeUrl, block.id]" [state]="{ data: { block: block } }"
|
||||||
class="blockLink" [ngClass]="{'disabled': (this.stateService.blockScrolling$ | async)}"> </a>
|
class="blockLink" [ngClass]="{'disabled': (this.stateService.blockScrolling$ | async)}"> </a>
|
||||||
<div [attr.data-cy]="'bitcoin-block-' + i + '-height'" class="block-height">
|
<div [attr.data-cy]="'bitcoin-block-' + i + '-height'" class="block-height">
|
||||||
|
@ -269,6 +269,10 @@ export class BlockchainBlocksComponent implements OnInit, OnChanges, OnDestroy {
|
|||||||
this.cd.markForCheck();
|
this.cd.markForCheck();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isSpecial(height: number): boolean {
|
||||||
|
return this.specialBlocks[height]?.networks.includes(this.stateService.network || 'mainnet') ? true : false;
|
||||||
|
}
|
||||||
|
|
||||||
getStyleForBlock(block: BlockchainBlock, index: number, animateEnterFrom: number = 0) {
|
getStyleForBlock(block: BlockchainBlock, index: number, animateEnterFrom: number = 0) {
|
||||||
if (!block || block.placeholder) {
|
if (!block || block.placeholder) {
|
||||||
return this.getStyleForPlaceholderBlock(index, animateEnterFrom);
|
return this.getStyleForPlaceholderBlock(index, animateEnterFrom);
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div class="mempool-blocks-container" [class.time-ltr]="timeLtr" *ngIf="(difficultyAdjustments$ | async) as da;">
|
<div class="mempool-blocks-container" [class.time-ltr]="timeLtr" *ngIf="(difficultyAdjustments$ | async) as da;">
|
||||||
<div class="flashing">
|
<div class="flashing">
|
||||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks$ | async" let-i="index" [ngForTrackBy]="trackByFn">
|
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks$ | async" let-i="index" [ngForTrackBy]="trackByFn">
|
||||||
<div [attr.data-cy]="'mempool-block-' + i" class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]" [class.blink-bg]="projectedBlock.blink">
|
<div @blockEntryTrigger [@.disabled]="!animateEntry" [attr.data-cy]="'mempool-block-' + i" class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]" [class.blink-bg]="projectedBlock.blink">
|
||||||
<a draggable="false" [routerLink]="['/mempool-block/' | relativeUrl, i]"
|
<a draggable="false" [routerLink]="['/mempool-block/' | relativeUrl, i]"
|
||||||
class="blockLink" [ngClass]="{'disabled': (this.stateService.blockScrolling$ | async)}"> </a>
|
class="blockLink" [ngClass]="{'disabled': (this.stateService.blockScrolling$ | async)}"> </a>
|
||||||
<div class="block-body">
|
<div class="block-body">
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@angular/core';
|
import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
|
||||||
import { Subscription, Observable, fromEvent, merge, of, combineLatest, timer } from 'rxjs';
|
import { Subscription, Observable, fromEvent, merge, of, combineLatest } from 'rxjs';
|
||||||
import { MempoolBlock } from '../../interfaces/websocket.interface';
|
import { MempoolBlock } from '../../interfaces/websocket.interface';
|
||||||
import { StateService } from '../../services/state.service';
|
import { StateService } from '../../services/state.service';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
@ -9,11 +9,18 @@ import { specialBlocks } from '../../app.constants';
|
|||||||
import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe';
|
import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe';
|
||||||
import { Location } from '@angular/common';
|
import { Location } from '@angular/common';
|
||||||
import { DifficultyAdjustment } from '../../interfaces/node-api.interface';
|
import { DifficultyAdjustment } from '../../interfaces/node-api.interface';
|
||||||
|
import { animate, style, transition, trigger } from '@angular/animations';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-mempool-blocks',
|
selector: 'app-mempool-blocks',
|
||||||
templateUrl: './mempool-blocks.component.html',
|
templateUrl: './mempool-blocks.component.html',
|
||||||
styleUrls: ['./mempool-blocks.component.scss'],
|
styleUrls: ['./mempool-blocks.component.scss'],
|
||||||
|
animations: [trigger('blockEntryTrigger', [
|
||||||
|
transition(':enter', [
|
||||||
|
style({ transform: 'translateX(-155px)' }),
|
||||||
|
animate('2s 0s ease', style({ transform: '' })),
|
||||||
|
]),
|
||||||
|
])],
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||||
})
|
})
|
||||||
export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
||||||
@ -32,12 +39,14 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
isLoadingWebsocketSubscription: Subscription;
|
isLoadingWebsocketSubscription: Subscription;
|
||||||
blockSubscription: Subscription;
|
blockSubscription: Subscription;
|
||||||
networkSubscription: Subscription;
|
networkSubscription: Subscription;
|
||||||
|
chainTipSubscription: Subscription;
|
||||||
network = '';
|
network = '';
|
||||||
now = new Date().getTime();
|
now = new Date().getTime();
|
||||||
timeOffset = 0;
|
timeOffset = 0;
|
||||||
showMiningInfo = false;
|
showMiningInfo = false;
|
||||||
timeLtrSubscription: Subscription;
|
timeLtrSubscription: Subscription;
|
||||||
timeLtr: boolean;
|
timeLtr: boolean;
|
||||||
|
animateEntry: boolean = false;
|
||||||
|
|
||||||
blockWidth = 125;
|
blockWidth = 125;
|
||||||
blockPadding = 30;
|
blockPadding = 30;
|
||||||
@ -53,6 +62,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
resetTransitionTimeout: number;
|
resetTransitionTimeout: number;
|
||||||
|
|
||||||
|
chainTip: number = -1;
|
||||||
blockIndex = 1;
|
blockIndex = 1;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@ -69,6 +79,8 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
this.chainTip = this.stateService.latestBlockHeight;
|
||||||
|
|
||||||
if (['', 'testnet', 'signet'].includes(this.stateService.network)) {
|
if (['', 'testnet', 'signet'].includes(this.stateService.network)) {
|
||||||
this.enabledMiningInfoIfNeeded(this.location.path());
|
this.enabledMiningInfoIfNeeded(this.location.path());
|
||||||
this.location.onUrlChange((url) => this.enabledMiningInfoIfNeeded(url));
|
this.location.onUrlChange((url) => this.enabledMiningInfoIfNeeded(url));
|
||||||
@ -116,9 +128,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
mempoolBlocks.forEach((block, i) => {
|
mempoolBlocks.forEach((block, i) => {
|
||||||
block.index = this.blockIndex + i;
|
block.index = this.blockIndex + i;
|
||||||
block.height = lastBlock.height + i + 1;
|
block.height = lastBlock.height + i + 1;
|
||||||
if (this.stateService.network === '') {
|
block.blink = specialBlocks[block.height]?.networks.includes(this.stateService.network || 'mainnet') ? true : false;
|
||||||
block.blink = specialBlocks[block.height] ? true : false;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const stringifiedBlocks = JSON.stringify(mempoolBlocks);
|
const stringifiedBlocks = JSON.stringify(mempoolBlocks);
|
||||||
@ -155,11 +165,24 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
this.blockSubscription = this.stateService.blocks$
|
this.blockSubscription = this.stateService.blocks$
|
||||||
.subscribe(([block]) => {
|
.subscribe(([block]) => {
|
||||||
if (block?.extras?.matchRate >= 66 && !this.tabHidden) {
|
if (this.chainTip === -1) {
|
||||||
|
this.animateEntry = block.height === this.stateService.latestBlockHeight;
|
||||||
|
} else {
|
||||||
|
this.animateEntry = block.height > this.chainTip;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.chainTip = this.stateService.latestBlockHeight;
|
||||||
|
if ((block?.extras?.similarity == null || block?.extras?.similarity > 0.5) && !this.tabHidden) {
|
||||||
this.blockIndex++;
|
this.blockIndex++;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.chainTipSubscription = this.stateService.chainTip$.subscribe((height) => {
|
||||||
|
if (this.chainTip === -1) {
|
||||||
|
this.chainTip = height;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
this.networkSubscription = this.stateService.networkChanged$
|
this.networkSubscription = this.stateService.networkChanged$
|
||||||
.subscribe((network) => this.network = network);
|
.subscribe((network) => this.network = network);
|
||||||
|
|
||||||
@ -195,11 +218,12 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
this.blockSubscription.unsubscribe();
|
this.blockSubscription.unsubscribe();
|
||||||
this.networkSubscription.unsubscribe();
|
this.networkSubscription.unsubscribe();
|
||||||
this.timeLtrSubscription.unsubscribe();
|
this.timeLtrSubscription.unsubscribe();
|
||||||
|
this.chainTipSubscription.unsubscribe();
|
||||||
clearTimeout(this.resetTransitionTimeout);
|
clearTimeout(this.resetTransitionTimeout);
|
||||||
}
|
}
|
||||||
|
|
||||||
trackByFn(index: number, block: MempoolBlock) {
|
trackByFn(index: number, block: MempoolBlock) {
|
||||||
return block.index;
|
return (block.isStack) ? 'stack' : block.index;
|
||||||
}
|
}
|
||||||
|
|
||||||
reduceMempoolBlocksToFitScreen(blocks: MempoolBlock[]): MempoolBlock[] {
|
reduceMempoolBlocksToFitScreen(blocks: MempoolBlock[]): MempoolBlock[] {
|
||||||
@ -216,6 +240,9 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
|||||||
lastBlock.medianFee = this.median(lastBlock.feeRange);
|
lastBlock.medianFee = this.median(lastBlock.feeRange);
|
||||||
lastBlock.totalFees += block.totalFees;
|
lastBlock.totalFees += block.totalFees;
|
||||||
}
|
}
|
||||||
|
if (blocks.length) {
|
||||||
|
blocks[blocks.length - 1].isStack = blocks[blocks.length - 1].blockVSize > this.stateService.blockVSize;
|
||||||
|
}
|
||||||
return blocks;
|
return blocks;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,10 +162,10 @@ export class PoolRankingComponent implements OnInit {
|
|||||||
if (this.miningWindowPreference === '24h') {
|
if (this.miningWindowPreference === '24h') {
|
||||||
return `<b style="color: white">${pool.name} (${pool.share}%)</b><br>` +
|
return `<b style="color: white">${pool.name} (${pool.share}%)</b><br>` +
|
||||||
pool.lastEstimatedHashrate.toString() + ' PH/s' +
|
pool.lastEstimatedHashrate.toString() + ' PH/s' +
|
||||||
`<br>` + $localize`${i} blocks`;
|
`<br>` + $localize`${ i }:INTERPOLATION: blocks`;
|
||||||
} else {
|
} else {
|
||||||
return `<b style="color: white">${pool.name} (${pool.share}%)</b><br>` +
|
return `<b style="color: white">${pool.name} (${pool.share}%)</b><br>` +
|
||||||
$localize`${i} blocks`;
|
$localize`${ i }:INTERPOLATION: blocks`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -195,13 +195,15 @@ export class PoolRankingComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
borderColor: '#000',
|
borderColor: '#000',
|
||||||
formatter: () => {
|
formatter: () => {
|
||||||
|
const percentage = totalShareOther.toFixed(2) + '%';
|
||||||
|
const i = totalBlockOther.toString();
|
||||||
if (this.miningWindowPreference === '24h') {
|
if (this.miningWindowPreference === '24h') {
|
||||||
return `<b style="color: white">${'Other'} (${totalShareOther.toFixed(2)}%)</b><br>` +
|
return `<b style="color: white">` + $localize`Other (${percentage})` + `</b><br>` +
|
||||||
totalEstimatedHashrateOther.toString() + ' PH/s' +
|
totalEstimatedHashrateOther.toString() + ' PH/s' +
|
||||||
`<br>` + totalBlockOther.toString() + ` blocks`;
|
`<br>` + $localize`${ i }:INTERPOLATION: blocks`;
|
||||||
} else {
|
} else {
|
||||||
return `<b style="color: white">${'Other'} (${totalShareOther.toFixed(2)}%)</b><br>` +
|
return `<b style="color: white">` + $localize`Other (${percentage})` + `</b><br>` +
|
||||||
totalBlockOther.toString() + ` blocks`;
|
$localize`${ i }:INTERPOLATION: blocks`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -85,13 +85,11 @@ export class StartComponent implements OnInit, OnDestroy {
|
|||||||
});
|
});
|
||||||
this.stateService.blocks$
|
this.stateService.blocks$
|
||||||
.subscribe((blocks: any) => {
|
.subscribe((blocks: any) => {
|
||||||
if (this.stateService.network !== '') {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.countdown = 0;
|
this.countdown = 0;
|
||||||
const block = blocks[0];
|
const block = blocks[0];
|
||||||
|
|
||||||
for (const sb in specialBlocks) {
|
for (const sb in specialBlocks) {
|
||||||
|
if (specialBlocks[sb].networks.includes(this.stateService.network || 'mainnet')) {
|
||||||
const height = parseInt(sb, 10);
|
const height = parseInt(sb, 10);
|
||||||
const diff = height - block.height;
|
const diff = height - block.height;
|
||||||
if (diff > 0 && diff <= 1008) {
|
if (diff > 0 && diff <= 1008) {
|
||||||
@ -99,7 +97,8 @@ export class StartComponent implements OnInit, OnDestroy {
|
|||||||
this.eventName = specialBlocks[sb].labelEvent;
|
this.eventName = specialBlocks[sb].labelEvent;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (specialBlocks[block.height]) {
|
}
|
||||||
|
if (specialBlocks[block.height] && specialBlocks[block.height].networks.includes(this.stateService.network || 'mainnet')) {
|
||||||
this.specialEvent = true;
|
this.specialEvent = true;
|
||||||
this.eventName = specialBlocks[block.height].labelEventCompleted;
|
this.eventName = specialBlocks[block.height].labelEventCompleted;
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -67,7 +67,7 @@
|
|||||||
<td><app-time kind="span" [time]="tx.status.block_time - transactionTime" [fastRender]="true" [relative]="true"></app-time></td>
|
<td><app-time kind="span" [time]="tx.status.block_time - transactionTime" [fastRender]="true" [relative]="true"></app-time></td>
|
||||||
</tr>
|
</tr>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
<tr *ngIf="network !== 'liquid' && network !== 'liquidtestnet'">
|
<tr *ngIf="network !== 'liquid' && network !== 'liquidtestnet' && featuresEnabled">
|
||||||
<td class="td-width" i18n="transaction.features|Transaction features">Features</td>
|
<td class="td-width" i18n="transaction.features|Transaction features">Features</td>
|
||||||
<td>
|
<td>
|
||||||
<app-tx-features [tx]="tx"></app-tx-features>
|
<app-tx-features [tx]="tx"></app-tx-features>
|
||||||
@ -468,6 +468,7 @@
|
|||||||
<ng-template #feeTable>
|
<ng-template #feeTable>
|
||||||
<table class="table table-borderless table-striped">
|
<table class="table table-borderless table-striped">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr *ngIf="isMobile && (network === 'liquid' || network === 'liquidtestnet' || !featuresEnabled)"></tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="td-width" i18n="transaction.fee|Transaction fee">Fee</td>
|
<td class="td-width" i18n="transaction.fee|Transaction fee">Fee</td>
|
||||||
<td>{{ tx.fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span> <span class="fiat"><app-fiat [blockConversion]="blockConversion" [value]="tx.fee"></app-fiat></span></td>
|
<td>{{ tx.fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span> <span class="fiat"><app-fiat [blockConversion]="blockConversion" [value]="tx.fee"></app-fiat></span></td>
|
||||||
|
@ -23,6 +23,7 @@ import { BlockExtended, CpfpInfo } from '../../interfaces/node-api.interface';
|
|||||||
import { LiquidUnblinding } from './liquid-ublinding';
|
import { LiquidUnblinding } from './liquid-ublinding';
|
||||||
import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe';
|
import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe';
|
||||||
import { Price, PriceService } from '../../services/price.service';
|
import { Price, PriceService } from '../../services/price.service';
|
||||||
|
import { isFeatureActive } from '../../bitcoin.utils';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-transaction',
|
selector: 'app-transaction',
|
||||||
@ -74,6 +75,12 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
flowEnabled: boolean;
|
flowEnabled: boolean;
|
||||||
blockConversion: Price;
|
blockConversion: Price;
|
||||||
tooltipPosition: { x: number, y: number };
|
tooltipPosition: { x: number, y: number };
|
||||||
|
isMobile: boolean;
|
||||||
|
|
||||||
|
featuresEnabled: boolean;
|
||||||
|
segwitEnabled: boolean;
|
||||||
|
rbfEnabled: boolean;
|
||||||
|
taprootEnabled: boolean;
|
||||||
|
|
||||||
@ViewChild('graphContainer')
|
@ViewChild('graphContainer')
|
||||||
graphContainer: ElementRef;
|
graphContainer: ElementRef;
|
||||||
@ -197,6 +204,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.tx = tx;
|
this.tx = tx;
|
||||||
|
this.setFeatures();
|
||||||
this.isCached = true;
|
this.isCached = true;
|
||||||
if (tx.fee === undefined) {
|
if (tx.fee === undefined) {
|
||||||
this.tx.fee = 0;
|
this.tx.fee = 0;
|
||||||
@ -291,6 +299,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.tx = tx;
|
this.tx = tx;
|
||||||
|
this.setFeatures();
|
||||||
this.isCached = false;
|
this.isCached = false;
|
||||||
if (tx.fee === undefined) {
|
if (tx.fee === undefined) {
|
||||||
this.tx.fee = 0;
|
this.tx.fee = 0;
|
||||||
@ -428,9 +437,23 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setFeatures(): void {
|
||||||
|
if (this.tx) {
|
||||||
|
this.segwitEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'segwit');
|
||||||
|
this.taprootEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'taproot');
|
||||||
|
this.rbfEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'rbf');
|
||||||
|
} else {
|
||||||
|
this.segwitEnabled = false;
|
||||||
|
this.taprootEnabled = false;
|
||||||
|
this.rbfEnabled = false;
|
||||||
|
}
|
||||||
|
this.featuresEnabled = this.segwitEnabled || this.taprootEnabled || this.rbfEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
resetTransaction() {
|
resetTransaction() {
|
||||||
this.error = undefined;
|
this.error = undefined;
|
||||||
this.tx = null;
|
this.tx = null;
|
||||||
|
this.setFeatures();
|
||||||
this.waitingForTransaction = false;
|
this.waitingForTransaction = false;
|
||||||
this.isLoadingTx = true;
|
this.isLoadingTx = true;
|
||||||
this.rbfTransaction = undefined;
|
this.rbfTransaction = undefined;
|
||||||
@ -495,6 +518,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
|||||||
|
|
||||||
@HostListener('window:resize', ['$event'])
|
@HostListener('window:resize', ['$event'])
|
||||||
setGraphSize(): void {
|
setGraphSize(): void {
|
||||||
|
this.isMobile = window.innerWidth < 850;
|
||||||
if (this.graphContainer) {
|
if (this.graphContainer) {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.graphWidth = this.graphContainer.nativeElement.clientWidth;
|
this.graphWidth = this.graphContainer.nativeElement.clientWidth;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<ng-template [ngIf]="!tx.status.confirmed || tx.status.block_height >= 477120">
|
<ng-template [ngIf]="segwitEnabled">
|
||||||
<span *ngIf="segwitGains.realizedSegwitGains && !segwitGains.potentialSegwitGains; else segwitTwo" class="badge badge-success mr-1" i18n-ngbTooltip="ngbTooltip about segwit gains" ngbTooltip="This transaction saved {{ segwitGains.realizedSegwitGains * 100 | number: '1.0-0' }}% on fees by using native SegWit" placement="bottom" i18n="tx-features.tag.segwit|SegWit">SegWit</span>
|
<span *ngIf="segwitGains.realizedSegwitGains && !segwitGains.potentialSegwitGains; else segwitTwo" class="badge badge-success mr-1" i18n-ngbTooltip="ngbTooltip about segwit gains" ngbTooltip="This transaction saved {{ segwitGains.realizedSegwitGains * 100 | number: '1.0-0' }}% on fees by using native SegWit" placement="bottom" i18n="tx-features.tag.segwit|SegWit">SegWit</span>
|
||||||
<ng-template #segwitTwo>
|
<ng-template #segwitTwo>
|
||||||
<span *ngIf="segwitGains.realizedSegwitGains && segwitGains.potentialSegwitGains; else potentialP2shSegwitGains" class="badge badge-warning mr-1" i18n-ngbTooltip="ngbTooltip about double segwit gains" ngbTooltip="This transaction saved {{ segwitGains.realizedSegwitGains * 100 | number: '1.0-0' }}% on fees by using SegWit and could save {{ segwitGains.potentialSegwitGains * 100 | number : '1.0-0' }}% more by fully upgrading to native SegWit" placement="bottom" i18n="tx-features.tag.segwit|SegWit">SegWit</span>
|
<span *ngIf="segwitGains.realizedSegwitGains && segwitGains.potentialSegwitGains; else potentialP2shSegwitGains" class="badge badge-warning mr-1" i18n-ngbTooltip="ngbTooltip about double segwit gains" ngbTooltip="This transaction saved {{ segwitGains.realizedSegwitGains * 100 | number: '1.0-0' }}% on fees by using SegWit and could save {{ segwitGains.potentialSegwitGains * 100 | number : '1.0-0' }}% more by fully upgrading to native SegWit" placement="bottom" i18n="tx-features.tag.segwit|SegWit">SegWit</span>
|
||||||
@ -8,7 +8,7 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
||||||
<ng-template [ngIf]="!tx.status.confirmed || tx.status.block_height >= 709632">
|
<ng-template [ngIf]="taprootEnabled">
|
||||||
<span *ngIf="segwitGains.realizedTaprootGains && !segwitGains.potentialTaprootGains; else notFullyTaproot" class="badge badge-success mr-1" i18n-ngbTooltip="Tooltip about fees saved with taproot" ngbTooltip="This transaction uses Taproot and thereby saved at least {{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}% on fees" placement="bottom" i18n="tx-features.tag.taproot|Taproot">Taproot</span>
|
<span *ngIf="segwitGains.realizedTaprootGains && !segwitGains.potentialTaprootGains; else notFullyTaproot" class="badge badge-success mr-1" i18n-ngbTooltip="Tooltip about fees saved with taproot" ngbTooltip="This transaction uses Taproot and thereby saved at least {{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}% on fees" placement="bottom" i18n="tx-features.tag.taproot|Taproot">Taproot</span>
|
||||||
<ng-template #notFullyTaproot>
|
<ng-template #notFullyTaproot>
|
||||||
<span *ngIf="segwitGains.realizedTaprootGains && segwitGains.potentialTaprootGains; else noTaproot" class="badge badge-warning mr-1" i18n-ngbTooltip="Tooltip about fees that saved and could be saved with taproot" ngbTooltip="This transaction uses Taproot and already saved at least {{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}% on fees, but could save an additional {{ segwitGains.potentialTaprootGains * 100 | number: '1.0-0' }}% by fully using Taproot" placement="bottom" i18n="tx-features.tag.taproot|Taproot">Taproot</span>
|
<span *ngIf="segwitGains.realizedTaprootGains && segwitGains.potentialTaprootGains; else noTaproot" class="badge badge-warning mr-1" i18n-ngbTooltip="Tooltip about fees that saved and could be saved with taproot" ngbTooltip="This transaction uses Taproot and already saved at least {{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}% on fees, but could save an additional {{ segwitGains.potentialTaprootGains * 100 | number: '1.0-0' }}% by fully using Taproot" placement="bottom" i18n="tx-features.tag.taproot|Taproot">Taproot</span>
|
||||||
@ -24,7 +24,7 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
||||||
<ng-template [ngIf]="!tx.status.confirmed || tx.status.block_height > 399700">
|
<ng-template [ngIf]="rbfEnabled">
|
||||||
<span *ngIf="isRbfTransaction; else rbfDisabled" class="badge badge-success" i18n-ngbTooltip="RBF tooltip" ngbTooltip="This transaction supports Replace-By-Fee (RBF) allowing fee bumping" placement="bottom" i18n="tx-features.tag.rbf|RBF">RBF</span>
|
<span *ngIf="isRbfTransaction; else rbfDisabled" class="badge badge-success" i18n-ngbTooltip="RBF tooltip" ngbTooltip="This transaction supports Replace-By-Fee (RBF) allowing fee bumping" placement="bottom" i18n="tx-features.tag.rbf|RBF">RBF</span>
|
||||||
<ng-template #rbfDisabled><span class="badge badge-danger mr-1" i18n-ngbTooltip="RBF disabled tooltip" ngbTooltip="This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method" placement="bottom"><del i18n="tx-features.tag.rbf|RBF">RBF</del></span></ng-template>
|
<ng-template #rbfDisabled><span class="badge badge-danger mr-1" i18n-ngbTooltip="RBF disabled tooltip" ngbTooltip="This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method" placement="bottom"><del i18n="tx-features.tag.rbf|RBF">RBF</del></span></ng-template>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { Component, ChangeDetectionStrategy, OnChanges, Input } from '@angular/core';
|
import { Component, ChangeDetectionStrategy, OnChanges, Input } from '@angular/core';
|
||||||
import { calcSegwitFeeGains } from '../../bitcoin.utils';
|
import { calcSegwitFeeGains, isFeatureActive } from '../../bitcoin.utils';
|
||||||
import { Transaction } from '../../interfaces/electrs.interface';
|
import { Transaction } from '../../interfaces/electrs.interface';
|
||||||
|
import { StateService } from '../../services/state.service';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-tx-features',
|
selector: 'app-tx-features',
|
||||||
@ -21,12 +22,21 @@ export class TxFeaturesComponent implements OnChanges {
|
|||||||
isRbfTransaction: boolean;
|
isRbfTransaction: boolean;
|
||||||
isTaproot: boolean;
|
isTaproot: boolean;
|
||||||
|
|
||||||
constructor() { }
|
segwitEnabled: boolean;
|
||||||
|
rbfEnabled: boolean;
|
||||||
|
taprootEnabled: boolean;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
private stateService: StateService,
|
||||||
|
) { }
|
||||||
|
|
||||||
ngOnChanges() {
|
ngOnChanges() {
|
||||||
if (!this.tx) {
|
if (!this.tx) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
this.segwitEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'segwit');
|
||||||
|
this.taprootEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'taproot');
|
||||||
|
this.rbfEnabled = !this.tx.status.confirmed || isFeatureActive(this.stateService.network, this.tx.status.block_height, 'rbf');
|
||||||
this.segwitGains = calcSegwitFeeGains(this.tx);
|
this.segwitGains = calcSegwitFeeGains(this.tx);
|
||||||
this.isRbfTransaction = this.tx.vin.some((v) => v.sequence < 0xfffffffe);
|
this.isRbfTransaction = this.tx.vin.some((v) => v.sequence < 0xfffffffe);
|
||||||
this.isTaproot = this.tx.vin.some((v) => v.prevout && v.prevout.scriptpubkey_type === 'v1_p2tr');
|
this.isTaproot = this.tx.vin.some((v) => v.prevout && v.prevout.scriptpubkey_type === 'v1_p2tr');
|
||||||
|
@ -118,6 +118,7 @@ export interface BlockExtension {
|
|||||||
reward?: number;
|
reward?: number;
|
||||||
coinbaseRaw?: string;
|
coinbaseRaw?: string;
|
||||||
matchRate?: number;
|
matchRate?: number;
|
||||||
|
similarity?: number;
|
||||||
pool?: {
|
pool?: {
|
||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
|
@ -43,6 +43,7 @@ export interface MempoolBlock {
|
|||||||
totalFees: number;
|
totalFees: number;
|
||||||
feeRange: number[];
|
feeRange: number[];
|
||||||
index: number;
|
index: number;
|
||||||
|
isStack?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface MempoolBlockWithTransactions extends MempoolBlock {
|
export interface MempoolBlockWithTransactions extends MempoolBlock {
|
||||||
|
@ -207,8 +207,8 @@ export class NodesMap implements OnInit, OnChanges {
|
|||||||
|
|
||||||
return `
|
return `
|
||||||
<b style="color: white">${alias}</b><br>
|
<b style="color: white">${alias}</b><br>
|
||||||
${liquidity}<br>
|
${liquidity}<br>` +
|
||||||
${data[5]} channels<br>
|
$localize`:@@205c1b86ac1cc419c4d0cca51fdde418c4ffdc20:${data[5]}:INTERPOLATION: channels` + `<br>
|
||||||
${getFlagEmoji(data[7])} ${data[6]}
|
${getFlagEmoji(data[7])} ${data[6]}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
@ -99,8 +99,9 @@ export class NodesPerCountryChartComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
borderColor: '#000',
|
borderColor: '#000',
|
||||||
formatter: () => {
|
formatter: () => {
|
||||||
|
const nodeCount = country.count.toString();
|
||||||
return `<b style="color: white">${country.name.en} (${country.share}%)</b><br>` +
|
return `<b style="color: white">${country.name.en} (${country.share}%)</b><br>` +
|
||||||
$localize`${country.count.toString()} nodes` + `<br>` +
|
$localize`${nodeCount} nodes` + `<br>` +
|
||||||
$localize`${this.amountShortenerPipe.transform(country.capacity / 100000000, 2)} BTC capacity`
|
$localize`${this.amountShortenerPipe.transform(country.capacity / 100000000, 2)} BTC capacity`
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
@ -115,7 +116,7 @@ export class NodesPerCountryChartComponent implements OnInit {
|
|||||||
color: 'grey',
|
color: 'grey',
|
||||||
},
|
},
|
||||||
value: totalShareOther,
|
value: totalShareOther,
|
||||||
name: 'Other' + (this.isMobile() ? `` : ` (${totalShareOther.toFixed(2)}%)`),
|
name: $localize`Other (${totalShareOther.toFixed(2) + '%'})`,
|
||||||
label: {
|
label: {
|
||||||
overflow: 'truncate',
|
overflow: 'truncate',
|
||||||
color: '#b1b1b1',
|
color: '#b1b1b1',
|
||||||
@ -131,8 +132,9 @@ export class NodesPerCountryChartComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
borderColor: '#000',
|
borderColor: '#000',
|
||||||
formatter: () => {
|
formatter: () => {
|
||||||
return `<b style="color: white">${'Other'} (${totalShareOther.toFixed(2)}%)</b><br>` +
|
const nodeCount = totalNodeOther.toString();
|
||||||
totalNodeOther.toString() + ` nodes`;
|
return `<b style="color: white">` + $localize`Other (${totalShareOther.toFixed(2) + '%'})` + `</b><br>` +
|
||||||
|
$localize`${nodeCount} nodes`;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
data: 9999 as any
|
data: 9999 as any
|
||||||
|
@ -153,8 +153,9 @@ export class NodesPerISPChartComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
borderColor: '#000',
|
borderColor: '#000',
|
||||||
formatter: () => {
|
formatter: () => {
|
||||||
|
const nodeCount = isp[4].toString();
|
||||||
return `<b style="color: white">${isp[1]} (${this.sortBy === 'capacity' ? isp[7] : isp[6]}%)</b><br>` +
|
return `<b style="color: white">${isp[1]} (${this.sortBy === 'capacity' ? isp[7] : isp[6]}%)</b><br>` +
|
||||||
$localize`${isp[4].toString()} nodes` + `<br>` +
|
$localize`${nodeCount} nodes` + `<br>` +
|
||||||
$localize`${this.amountShortenerPipe.transform(isp[2] / 100000000, 2)} BTC`
|
$localize`${this.amountShortenerPipe.transform(isp[2] / 100000000, 2)} BTC`
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
@ -169,7 +170,7 @@ export class NodesPerISPChartComponent implements OnInit {
|
|||||||
color: 'grey',
|
color: 'grey',
|
||||||
},
|
},
|
||||||
value: totalShareOther,
|
value: totalShareOther,
|
||||||
name: 'Other' + (isMobile() || this.widget ? `` : ` (${totalShareOther.toFixed(2)}%)`),
|
name: $localize`Other (${totalShareOther.toFixed(2) + '%'})`,
|
||||||
label: {
|
label: {
|
||||||
overflow: 'truncate',
|
overflow: 'truncate',
|
||||||
color: '#b1b1b1',
|
color: '#b1b1b1',
|
||||||
@ -185,8 +186,9 @@ export class NodesPerISPChartComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
borderColor: '#000',
|
borderColor: '#000',
|
||||||
formatter: () => {
|
formatter: () => {
|
||||||
return `<b style="color: white">Other (${totalShareOther.toFixed(2)}%)</b><br>` +
|
const nodeCount = nodeCountOther.toString();
|
||||||
$localize`${nodeCountOther.toString()} nodes` + `<br>` +
|
return `<b style="color: white">` + $localize`Other (${totalShareOther.toFixed(2) + '%'})` + `</b><br>` +
|
||||||
|
$localize`${nodeCount} nodes` + `<br>` +
|
||||||
$localize`${this.amountShortenerPipe.transform(capacityOther / 100000000, 2)} BTC`;
|
$localize`${this.amountShortenerPipe.transform(capacityOther / 100000000, 2)} BTC`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -256,7 +256,7 @@ export class LightningStatisticsChartComponent implements OnInit {
|
|||||||
series: data.channel_count.length === 0 ? [] : [
|
series: data.channel_count.length === 0 ? [] : [
|
||||||
{
|
{
|
||||||
zlevel: 1,
|
zlevel: 1,
|
||||||
name: 'Channels',
|
name: $localize`:@@807cf11e6ac1cde912496f764c176bdfdd6b7e19:Channels`,
|
||||||
showSymbol: false,
|
showSymbol: false,
|
||||||
symbol: 'none',
|
symbol: 'none',
|
||||||
data: data.channel_count,
|
data: data.channel_count,
|
||||||
|
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
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Community alliancer</target>
|
<target>Community alliancer</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Oversættere</target>
|
<target>Oversættere</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Bidragsydere</target>
|
<target>Bidragsydere</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Medlemmer</target>
|
<target>Medlemmer</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Vedligeholdere</target>
|
<target>Vedligeholdere</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -2633,6 +2633,10 @@
|
|||||||
<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">8,9</context>
|
<context context-type="linenumber">8,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">38</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
||||||
<context context-type="linenumber">75</context>
|
<context context-type="linenumber">75</context>
|
||||||
@ -3080,13 +3084,17 @@
|
|||||||
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
||||||
<source>Difficulty Adjustment</source>
|
<source>Difficulty Adjustment</source>
|
||||||
<target>Sværhedsgrad justering</target>
|
<target>Sværhedsgrad justering</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
|
<context context-type="linenumber">1,5</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
<context context-type="linenumber">1,5</context>
|
<context context-type="linenumber">1,5</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3094,11 +3102,11 @@
|
|||||||
<source>Remaining</source>
|
<source>Remaining</source>
|
||||||
<target>Tilbage</target>
|
<target>Tilbage</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">7,9</context>
|
<context context-type="linenumber">7,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">66,69</context>
|
<context context-type="linenumber">66,69</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.remaining</note>
|
<note priority="1" from="description">difficulty-box.remaining</note>
|
||||||
@ -3107,11 +3115,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target> <x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> blokke <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target> <x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> blokke <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">10,11</context>
|
<context context-type="linenumber">10,11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">53,54</context>
|
<context context-type="linenumber">53,54</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3132,11 +3140,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target> <x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> blok <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target> <x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> blok <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">11,12</context>
|
<context context-type="linenumber">11,12</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">54,55</context>
|
<context context-type="linenumber">54,55</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3149,11 +3157,11 @@
|
|||||||
<source>Estimate</source>
|
<source>Estimate</source>
|
||||||
<target>Estimat</target>
|
<target>Estimat</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">16,17</context>
|
<context context-type="linenumber">16,17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">73,76</context>
|
<context context-type="linenumber">73,76</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.estimate</note>
|
<note priority="1" from="description">difficulty-box.estimate</note>
|
||||||
@ -3162,20 +3170,24 @@
|
|||||||
<source>Previous</source>
|
<source>Previous</source>
|
||||||
<target>Forrige</target>
|
<target>Forrige</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">31,33</context>
|
<context context-type="linenumber">31,33</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">59,61</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.previous</note>
|
<note priority="1" from="description">difficulty-box.previous</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
||||||
<source>Current Period</source>
|
<source>Current Period</source>
|
||||||
<target>Nuværende periode</target>
|
<target>Nuværende periode</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">43,44</context>
|
<context context-type="linenumber">43,44</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">80,83</context>
|
<context context-type="linenumber">80,83</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.current-period</note>
|
<note priority="1" from="description">difficulty-box.current-period</note>
|
||||||
@ -3184,11 +3196,99 @@
|
|||||||
<source>Next Halving</source>
|
<source>Next Halving</source>
|
||||||
<target>Næste Halvering</target>
|
<target>Næste Halvering</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">50,52</context>
|
<context context-type="linenumber">50,52</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.next-halving</note>
|
<note priority="1" from="description">difficulty-box.next-halving</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">13</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">14</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">18</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">19</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">24</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">25</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">29</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">30</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">34</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">35</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
||||||
|
<source>Average block time</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">42,45</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.average-block-time</note>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
||||||
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
||||||
<target>Enten 2x minimum eller lavprioritetssatsen (alt efter hvad der er lavest)</target>
|
<target>Enten 2x minimum eller lavprioritetssatsen (alt efter hvad der er lavest)</target>
|
||||||
@ -3667,7 +3767,7 @@
|
|||||||
<target>Belønningsstatistik</target>
|
<target>Belønningsstatistik</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3676,7 +3776,7 @@
|
|||||||
<target>(144 blokke)</target>
|
<target>(144 blokke)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3685,7 +3785,7 @@
|
|||||||
<target>Seneste blokke</target>
|
<target>Seneste blokke</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3698,7 +3798,7 @@
|
|||||||
<target>Justeringer</target>
|
<target>Justeringer</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3707,7 +3807,7 @@
|
|||||||
<target>Udsend transaktion</target>
|
<target>Udsend transaktion</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3882,9 +3982,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target> <x id="PH" equiv-text="i"/> blokke</target>
|
<target><x id="INTERPOLATION" equiv-text="i"/> blokke</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3893,6 +3993,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -4366,40 +4501,28 @@
|
|||||||
<target>Lige nu</target>
|
<target>Lige nu</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">78</context>
|
<context context-type="linenumber">79</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-since" datatype="html">
|
<trans-unit id="time-since" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
||||||
<target> <x id="DATE" equiv-text="dateStrings.i18nYear"/> siden</target>
|
<target> <x id="DATE" equiv-text="dateStrings.i18nYear"/> siden</target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">97</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">98</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">99</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">100</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">101</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">103</context>
|
<context context-type="linenumber">103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">104</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">105</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">106</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">107</context>
|
<context context-type="linenumber">107</context>
|
||||||
@ -4412,54 +4535,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">109</context>
|
<context context-type="linenumber">109</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">110</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">111</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">112</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">113</context>
|
<context context-type="linenumber">113</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">115</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">116</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">117</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">118</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">119</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-until" datatype="html">
|
<trans-unit id="time-until" datatype="html">
|
||||||
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>Om ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>Om ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">120</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">121</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">122</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">123</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">124</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">125</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">126</context>
|
<context context-type="linenumber">126</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">127</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">128</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">129</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">130</context>
|
<context context-type="linenumber">130</context>
|
||||||
@ -4472,54 +4595,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">132</context>
|
<context context-type="linenumber">132</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">133</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">134</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">135</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">136</context>
|
<context context-type="linenumber">136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">137</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">138</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">139</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">140</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">141</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">142</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-span" datatype="html">
|
<trans-unit id="time-span" datatype="html">
|
||||||
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>Efter <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>Efter <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">143</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">144</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">145</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">146</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">147</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">148</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">149</context>
|
<context context-type="linenumber">149</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">150</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">151</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">152</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">153</context>
|
<context context-type="linenumber">153</context>
|
||||||
@ -4532,22 +4655,34 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">155</context>
|
<context context-type="linenumber">155</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">156</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">157</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">158</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">159</context>
|
<context context-type="linenumber">159</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">160</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">161</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">162</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">163</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">164</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">165</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
||||||
<source>This transaction has been replaced by:</source>
|
<source>This transaction has been replaced by:</source>
|
||||||
@ -5440,6 +5575,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5680,7 +5819,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5821,7 +5960,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6139,6 +6278,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6619,19 +6762,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target> <x id="PH" equiv-text="country.count.toString()"/> noder</target>
|
<target><x id="PH" equiv-text="nodeCount"/> noder</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6639,7 +6786,7 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC kapacitet</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC kapacitet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6757,11 +6904,11 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Community-Allianzen</target>
|
<target>Community-Allianzen</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Projektübersetzer</target>
|
<target>Projektübersetzer</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Projektmitwirkende</target>
|
<target>Projektmitwirkende</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Projektmitglieder</target>
|
<target>Projektmitglieder</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Projektbetreuer</target>
|
<target>Projektbetreuer</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -3094,7 +3094,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3778,7 +3778,7 @@
|
|||||||
<target>Belohnungsstatistiken</target>
|
<target>Belohnungsstatistiken</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3787,7 +3787,7 @@
|
|||||||
<target>(144 Blöcke)</target>
|
<target>(144 Blöcke)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3796,7 +3796,7 @@
|
|||||||
<target>Neueste Blöcke</target>
|
<target>Neueste Blöcke</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3809,7 +3809,7 @@
|
|||||||
<target>Anpassungen</target>
|
<target>Anpassungen</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3818,7 +3818,7 @@
|
|||||||
<target>Transaktion senden</target>
|
<target>Transaktion senden</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3993,9 +3993,8 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> Blocks</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -4004,6 +4003,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5551,6 +5585,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5791,7 +5829,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5932,7 +5970,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6250,6 +6288,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6730,19 +6772,22 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> Nodes</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6750,7 +6795,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC Kapazität</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC Kapazität</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6868,11 +6913,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Alianzas de la comunidad</target>
|
<target>Alianzas de la comunidad</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Traductores del proyecto</target>
|
<target>Traductores del proyecto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Contribuyentes al proyecto</target>
|
<target>Contribuyentes al proyecto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Miembros del proyecto</target>
|
<target>Miembros del proyecto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Mantenedores del proyecto</target>
|
<target>Mantenedores del proyecto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -2633,6 +2633,10 @@
|
|||||||
<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">8,9</context>
|
<context context-type="linenumber">8,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">38</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
||||||
<context context-type="linenumber">75</context>
|
<context context-type="linenumber">75</context>
|
||||||
@ -3080,13 +3084,17 @@
|
|||||||
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
||||||
<source>Difficulty Adjustment</source>
|
<source>Difficulty Adjustment</source>
|
||||||
<target>Ajuste de Dificultad</target>
|
<target>Ajuste de Dificultad</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
|
<context context-type="linenumber">1,5</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
<context context-type="linenumber">1,5</context>
|
<context context-type="linenumber">1,5</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3094,11 +3102,11 @@
|
|||||||
<source>Remaining</source>
|
<source>Remaining</source>
|
||||||
<target>Restante</target>
|
<target>Restante</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">7,9</context>
|
<context context-type="linenumber">7,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">66,69</context>
|
<context context-type="linenumber">66,69</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.remaining</note>
|
<note priority="1" from="description">difficulty-box.remaining</note>
|
||||||
@ -3107,11 +3115,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>bloques<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>bloques<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">10,11</context>
|
<context context-type="linenumber">10,11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">53,54</context>
|
<context context-type="linenumber">53,54</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3132,11 +3140,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>bloque<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>bloque<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">11,12</context>
|
<context context-type="linenumber">11,12</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">54,55</context>
|
<context context-type="linenumber">54,55</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3149,11 +3157,11 @@
|
|||||||
<source>Estimate</source>
|
<source>Estimate</source>
|
||||||
<target>Estimada</target>
|
<target>Estimada</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">16,17</context>
|
<context context-type="linenumber">16,17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">73,76</context>
|
<context context-type="linenumber">73,76</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.estimate</note>
|
<note priority="1" from="description">difficulty-box.estimate</note>
|
||||||
@ -3162,20 +3170,24 @@
|
|||||||
<source>Previous</source>
|
<source>Previous</source>
|
||||||
<target>Previo</target>
|
<target>Previo</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">31,33</context>
|
<context context-type="linenumber">31,33</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">59,61</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.previous</note>
|
<note priority="1" from="description">difficulty-box.previous</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
||||||
<source>Current Period</source>
|
<source>Current Period</source>
|
||||||
<target>Período Actual</target>
|
<target>Período Actual</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">43,44</context>
|
<context context-type="linenumber">43,44</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">80,83</context>
|
<context context-type="linenumber">80,83</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.current-period</note>
|
<note priority="1" from="description">difficulty-box.current-period</note>
|
||||||
@ -3184,11 +3196,110 @@
|
|||||||
<source>Next Halving</source>
|
<source>Next Halving</source>
|
||||||
<target>Siguiente halving</target>
|
<target>Siguiente halving</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">50,52</context>
|
<context context-type="linenumber">50,52</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.next-halving</note>
|
<note priority="1" from="description">difficulty-box.next-halving</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloques esperados</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">13</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloque esperado</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">14</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloques minados</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">18</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloque minado</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">19</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloques restantes</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">24</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloque restante</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">25</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloques por delante</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">29</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloque por delante</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">30</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloques por detrás</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">34</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloque por detrás</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">35</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
||||||
|
<source>Average block time</source>
|
||||||
|
<target>Tiempo medio de bloque</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">42,45</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.average-block-time</note>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
||||||
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
||||||
<target>O bien 2x el mínimo, o la tasa de prioridad baja (lo que resulte menor)</target>
|
<target>O bien 2x el mínimo, o la tasa de prioridad baja (lo que resulte menor)</target>
|
||||||
@ -3667,7 +3778,7 @@
|
|||||||
<target>Estadísticas de recompensa</target>
|
<target>Estadísticas de recompensa</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3676,7 +3787,7 @@
|
|||||||
<target>(144 bloques)</target>
|
<target>(144 bloques)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3685,7 +3796,7 @@
|
|||||||
<target>Últimos bloques</target>
|
<target>Últimos bloques</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3698,7 +3809,7 @@
|
|||||||
<target>Ajustes</target>
|
<target>Ajustes</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3707,7 +3818,7 @@
|
|||||||
<target>Transmitir transacción</target>
|
<target>Transmitir transacción</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3827,7 +3938,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c16d236667af327bd474b149cb909d1cd06fa50c" datatype="html">
|
<trans-unit id="c16d236667af327bd474b149cb909d1cd06fa50c" datatype="html">
|
||||||
<source>Avg Health</source>
|
<source>Avg Health</source>
|
||||||
<target>El promedio de salud</target>
|
<target>Promedio de salud</target>
|
||||||
<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>
|
||||||
<context context-type="linenumber">96,97</context>
|
<context context-type="linenumber">96,97</context>
|
||||||
@ -3882,9 +3993,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> bloques</target>
|
<target><x id="INTERPOLATION" equiv-text="i"/> bloques</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3893,6 +4004,42 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<target>Otros (<x id="PH" equiv-text="percentage"/>)</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -4366,40 +4513,28 @@
|
|||||||
<target>Justo ahora</target>
|
<target>Justo ahora</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">78</context>
|
<context context-type="linenumber">79</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-since" datatype="html">
|
<trans-unit id="time-since" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
||||||
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> atrás</target>
|
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> atrás</target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">97</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">98</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">99</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">100</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">101</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">103</context>
|
<context context-type="linenumber">103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">104</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">105</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">106</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">107</context>
|
<context context-type="linenumber">107</context>
|
||||||
@ -4412,54 +4547,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">109</context>
|
<context context-type="linenumber">109</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">110</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">111</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">112</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">113</context>
|
<context context-type="linenumber">113</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">115</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">116</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">117</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">118</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">119</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-until" datatype="html">
|
<trans-unit id="time-until" datatype="html">
|
||||||
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>En ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>En ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">120</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">121</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">122</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">123</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">124</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">125</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">126</context>
|
<context context-type="linenumber">126</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">127</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">128</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">129</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">130</context>
|
<context context-type="linenumber">130</context>
|
||||||
@ -4472,54 +4607,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">132</context>
|
<context context-type="linenumber">132</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">133</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">134</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">135</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">136</context>
|
<context context-type="linenumber">136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">137</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">138</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">139</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">140</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">141</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">142</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-span" datatype="html">
|
<trans-unit id="time-span" datatype="html">
|
||||||
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>Después <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>Después <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">143</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">144</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">145</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">146</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">147</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">148</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">149</context>
|
<context context-type="linenumber">149</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">150</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">151</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">152</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">153</context>
|
<context context-type="linenumber">153</context>
|
||||||
@ -4532,22 +4667,34 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">155</context>
|
<context context-type="linenumber">155</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">156</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">157</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">158</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">159</context>
|
<context context-type="linenumber">159</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">160</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">161</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">162</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">163</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">164</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">165</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
||||||
<source>This transaction has been replaced by:</source>
|
<source>This transaction has been replaced by:</source>
|
||||||
@ -5215,7 +5362,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="8f2791f5d9656271dd6c385f5ad572716e90f4a2" datatype="html">
|
<trans-unit id="8f2791f5d9656271dd6c385f5ad572716e90f4a2" datatype="html">
|
||||||
<source><x id="START_BOLD_TEXT" ctype="x-b" equiv-text="mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with"/>mempool.space merely provides data about the Bitcoin network.<x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/> It cannot help you with retrieving funds, confirming your transaction quicker, etc.</source>
|
<source><x id="START_BOLD_TEXT" ctype="x-b" equiv-text="mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with"/>mempool.space merely provides data about the Bitcoin network.<x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/> It cannot help you with retrieving funds, confirming your transaction quicker, etc.</source>
|
||||||
<target><x id="START_BOLD_TEXT" ctype="x-b" equiv-text="mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with"/>memepool.space simplemente proporciona datos sobre la red Bitcoin. <x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/>No puede ayudarle a recuperar fondos, confirmar su transacción más rápdio, etc. </target>
|
<target><x id="START_BOLD_TEXT" ctype="x-b" equiv-text="mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with"/>mempool.space simplemente proporciona datos sobre la red Bitcoin. <x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/>No puede ayudarle a recuperar fondos, confirmar su transacción más rápido, etc. </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">13</context>
|
<context context-type="linenumber">13</context>
|
||||||
@ -5440,6 +5587,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5680,7 +5831,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5729,7 +5880,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4610828009441770083" datatype="html">
|
<trans-unit id="4610828009441770083" datatype="html">
|
||||||
<source>Force closed</source>
|
<source>Force closed</source>
|
||||||
<target>Forzar cierre</target>
|
<target>Cierre forzado</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">24</context>
|
||||||
@ -5737,7 +5888,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="96508700250272816" datatype="html">
|
<trans-unit id="96508700250272816" datatype="html">
|
||||||
<source>Force closed with penalty</source>
|
<source>Force closed with penalty</source>
|
||||||
<target>Fuerza cerrada con sanción</target>
|
<target>Cierre forzado con sanción</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
||||||
<context context-type="linenumber">28</context>
|
<context context-type="linenumber">28</context>
|
||||||
@ -5821,7 +5972,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -5871,7 +6022,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="cfcc7201138b0ef9901e9604c35f550e91629295" datatype="html">
|
<trans-unit id="cfcc7201138b0ef9901e9604c35f550e91629295" datatype="html">
|
||||||
<source>avg</source>
|
<source>avg</source>
|
||||||
<target>El promedio</target>
|
<target>Promedio</target>
|
||||||
<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>
|
||||||
<context context-type="linenumber">3,5</context>
|
<context context-type="linenumber">3,5</context>
|
||||||
@ -5880,7 +6031,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ba9117dcc11814c44437cf9d7561874ba8b98a2a" datatype="html">
|
<trans-unit id="ba9117dcc11814c44437cf9d7561874ba8b98a2a" datatype="html">
|
||||||
<source>med</source>
|
<source>med</source>
|
||||||
<target>Media</target>
|
<target>Med</target>
|
||||||
<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>
|
||||||
<context context-type="linenumber">6,9</context>
|
<context context-type="linenumber">6,9</context>
|
||||||
@ -6139,6 +6290,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6271,7 +6426,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7254919336112973896" datatype="html">
|
<trans-unit id="7254919336112973896" datatype="html">
|
||||||
<source>Outgoing Fees</source>
|
<source>Outgoing Fees</source>
|
||||||
<target>Gastos de salida</target>
|
<target>Tasas de salida</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">170</context>
|
||||||
@ -6283,7 +6438,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="484887099976974152" datatype="html">
|
<trans-unit id="484887099976974152" datatype="html">
|
||||||
<source>Incoming Fees</source>
|
<source>Incoming Fees</source>
|
||||||
<target>Gastos de entrada</target>
|
<target>Tasas de entrada</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/node-fee-chart/node-fee-chart.component.ts</context>
|
||||||
<context context-type="linenumber">178</context>
|
<context context-type="linenumber">178</context>
|
||||||
@ -6619,19 +6774,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> nodos</target>
|
<target><x id="PH" equiv-text="nodeCount"/> nodos</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6639,7 +6798,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> capacidad BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> capacidad BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6757,11 +6916,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Yhteisöliittoumat </target>
|
<target>Yhteisöliittoumat </target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Projektin kääntäjät</target>
|
<target>Projektin kääntäjät</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Projektin avustajat</target>
|
<target>Projektin avustajat</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Projektin jäsenet</target>
|
<target>Projektin jäsenet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Projektin ylläpitäjät </target>
|
<target>Projektin ylläpitäjät </target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -2633,6 +2633,10 @@
|
|||||||
<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">8,9</context>
|
<context context-type="linenumber">8,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">38</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
||||||
<context context-type="linenumber">75</context>
|
<context context-type="linenumber">75</context>
|
||||||
@ -3080,13 +3084,17 @@
|
|||||||
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
||||||
<source>Difficulty Adjustment</source>
|
<source>Difficulty Adjustment</source>
|
||||||
<target>Vaikeudensäätö</target>
|
<target>Vaikeudensäätö</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
|
<context context-type="linenumber">1,5</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
<context context-type="linenumber">1,5</context>
|
<context context-type="linenumber">1,5</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3094,11 +3102,11 @@
|
|||||||
<source>Remaining</source>
|
<source>Remaining</source>
|
||||||
<target>Jäljellä</target>
|
<target>Jäljellä</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">7,9</context>
|
<context context-type="linenumber">7,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">66,69</context>
|
<context context-type="linenumber">66,69</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.remaining</note>
|
<note priority="1" from="description">difficulty-box.remaining</note>
|
||||||
@ -3107,11 +3115,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>lohkoa<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>lohkoa<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">10,11</context>
|
<context context-type="linenumber">10,11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">53,54</context>
|
<context context-type="linenumber">53,54</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3132,11 +3140,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>lohko<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>lohko<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">11,12</context>
|
<context context-type="linenumber">11,12</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">54,55</context>
|
<context context-type="linenumber">54,55</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3149,11 +3157,11 @@
|
|||||||
<source>Estimate</source>
|
<source>Estimate</source>
|
||||||
<target>Arvio</target>
|
<target>Arvio</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">16,17</context>
|
<context context-type="linenumber">16,17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">73,76</context>
|
<context context-type="linenumber">73,76</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.estimate</note>
|
<note priority="1" from="description">difficulty-box.estimate</note>
|
||||||
@ -3162,20 +3170,24 @@
|
|||||||
<source>Previous</source>
|
<source>Previous</source>
|
||||||
<target>Edellinen</target>
|
<target>Edellinen</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">31,33</context>
|
<context context-type="linenumber">31,33</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">59,61</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.previous</note>
|
<note priority="1" from="description">difficulty-box.previous</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
||||||
<source>Current Period</source>
|
<source>Current Period</source>
|
||||||
<target>Nykyinen jakso</target>
|
<target>Nykyinen jakso</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">43,44</context>
|
<context context-type="linenumber">43,44</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">80,83</context>
|
<context context-type="linenumber">80,83</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.current-period</note>
|
<note priority="1" from="description">difficulty-box.current-period</note>
|
||||||
@ -3184,11 +3196,99 @@
|
|||||||
<source>Next Halving</source>
|
<source>Next Halving</source>
|
||||||
<target>Puoliintuminen</target>
|
<target>Puoliintuminen</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">50,52</context>
|
<context context-type="linenumber">50,52</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.next-halving</note>
|
<note priority="1" from="description">difficulty-box.next-halving</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">13</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">14</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">18</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">19</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">24</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">25</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">29</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">30</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">34</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">35</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
||||||
|
<source>Average block time</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">42,45</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.average-block-time</note>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
||||||
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
||||||
<target>Joko 2x vähimmäismäärä tai alhaisen prioriteetin määrä (riippuen siitä, kumpi on alhaisempi)</target>
|
<target>Joko 2x vähimmäismäärä tai alhaisen prioriteetin määrä (riippuen siitä, kumpi on alhaisempi)</target>
|
||||||
@ -3667,7 +3767,7 @@
|
|||||||
<target>Palkkiotilastot</target>
|
<target>Palkkiotilastot</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3676,7 +3776,7 @@
|
|||||||
<target>(144 lohkoa)</target>
|
<target>(144 lohkoa)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3685,7 +3785,7 @@
|
|||||||
<target>Viimeisimmät lohkot</target>
|
<target>Viimeisimmät lohkot</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3698,7 +3798,7 @@
|
|||||||
<target>Vaikeudensäädöt</target>
|
<target>Vaikeudensäädöt</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3707,7 +3807,7 @@
|
|||||||
<target>Siirtotapahtuman kuulutus</target>
|
<target>Siirtotapahtuman kuulutus</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3882,9 +3982,8 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/>lohkoa</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3893,6 +3992,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -4366,40 +4500,28 @@
|
|||||||
<target>Juuri nyt</target>
|
<target>Juuri nyt</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">78</context>
|
<context context-type="linenumber">79</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-since" datatype="html">
|
<trans-unit id="time-since" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
||||||
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> sitten</target>
|
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> sitten</target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">97</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">98</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">99</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">100</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">101</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">103</context>
|
<context context-type="linenumber">103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">104</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">105</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">106</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">107</context>
|
<context context-type="linenumber">107</context>
|
||||||
@ -4412,53 +4534,53 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">109</context>
|
<context context-type="linenumber">109</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">110</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">111</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">112</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">113</context>
|
<context context-type="linenumber">113</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">115</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">116</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">117</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">118</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">119</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-until" datatype="html">
|
<trans-unit id="time-until" datatype="html">
|
||||||
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">120</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">121</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">122</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">123</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">124</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">125</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">126</context>
|
<context context-type="linenumber">126</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">127</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">128</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">129</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">130</context>
|
<context context-type="linenumber">130</context>
|
||||||
@ -4471,54 +4593,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">132</context>
|
<context context-type="linenumber">132</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">133</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">134</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">135</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">136</context>
|
<context context-type="linenumber">136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">137</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">138</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">139</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">140</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">141</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">142</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-span" datatype="html">
|
<trans-unit id="time-span" datatype="html">
|
||||||
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> jälkeen</target>
|
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> jälkeen</target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">143</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">144</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">145</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">146</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">147</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">148</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">149</context>
|
<context context-type="linenumber">149</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">150</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">151</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">152</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">153</context>
|
<context context-type="linenumber">153</context>
|
||||||
@ -4531,22 +4653,34 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">155</context>
|
<context context-type="linenumber">155</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">156</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">157</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">158</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">159</context>
|
<context context-type="linenumber">159</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">160</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">161</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">162</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">163</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">164</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">165</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
||||||
<source>This transaction has been replaced by:</source>
|
<source>This transaction has been replaced by:</source>
|
||||||
@ -5439,6 +5573,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5679,7 +5817,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5820,7 +5958,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6138,6 +6276,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6618,19 +6760,22 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> solmua</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6638,7 +6783,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC kapasiteetti</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC kapasiteetti</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6756,11 +6901,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1234,7 +1234,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="bisq.transaction.browser-title" datatype="html">
|
<trans-unit id="bisq.transaction.browser-title" datatype="html">
|
||||||
<source>Transaction: <x id="INTERPOLATION" equiv-text="this.txId"/></source>
|
<source>Transaction: <x id="INTERPOLATION" equiv-text="this.txId"/></source>
|
||||||
<target>Transaction : <x id="INTERPOLATION" equiv-text="this.txId"/></target>
|
<target>Transaction: <x id="INTERPOLATION" equiv-text="this.txId"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.ts</context>
|
<context context-type="sourcefile">src/app/bisq/bisq-transaction/bisq-transaction.component.ts</context>
|
||||||
<context context-type="linenumber">50</context>
|
<context context-type="linenumber">50</context>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Alliances communautaires</target>
|
<target>Alliances communautaires</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Traducteurs</target>
|
<target>Traducteurs</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Contributeurs au projet</target>
|
<target>Contributeurs au projet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Membres du projet</target>
|
<target>Membres du projet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Mainteneurs de projet</target>
|
<target>Mainteneurs de projet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1800,7 +1800,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="asset.component.asset-browser-title" datatype="html">
|
<trans-unit id="asset.component.asset-browser-title" datatype="html">
|
||||||
<source>Asset: <x id="INTERPOLATION" equiv-text="this.assetString"/></source>
|
<source>Asset: <x id="INTERPOLATION" equiv-text="this.assetString"/></source>
|
||||||
<target>Actif : <x id="INTERPOLATION" equiv-text="this.assetString"/></target>
|
<target>Actif: <x id="INTERPOLATION" equiv-text="this.assetString"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/asset/asset.component.ts</context>
|
<context context-type="sourcefile">src/app/components/asset/asset.component.ts</context>
|
||||||
<context context-type="linenumber">75</context>
|
<context context-type="linenumber">75</context>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -2633,6 +2633,10 @@
|
|||||||
<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">8,9</context>
|
<context context-type="linenumber">8,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">38</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
||||||
<context context-type="linenumber">75</context>
|
<context context-type="linenumber">75</context>
|
||||||
@ -3080,13 +3084,17 @@
|
|||||||
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
||||||
<source>Difficulty Adjustment</source>
|
<source>Difficulty Adjustment</source>
|
||||||
<target>Ajustement de la difficulté</target>
|
<target>Ajustement de la difficulté</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
|
<context context-type="linenumber">1,5</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
<context context-type="linenumber">1,5</context>
|
<context context-type="linenumber">1,5</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3094,11 +3102,11 @@
|
|||||||
<source>Remaining</source>
|
<source>Remaining</source>
|
||||||
<target>Restant</target>
|
<target>Restant</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">7,9</context>
|
<context context-type="linenumber">7,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">66,69</context>
|
<context context-type="linenumber">66,69</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.remaining</note>
|
<note priority="1" from="description">difficulty-box.remaining</note>
|
||||||
@ -3107,11 +3115,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocs<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocs<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">10,11</context>
|
<context context-type="linenumber">10,11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">53,54</context>
|
<context context-type="linenumber">53,54</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3132,11 +3140,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>bloc<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>bloc<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">11,12</context>
|
<context context-type="linenumber">11,12</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">54,55</context>
|
<context context-type="linenumber">54,55</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3149,11 +3157,11 @@
|
|||||||
<source>Estimate</source>
|
<source>Estimate</source>
|
||||||
<target>Estimation</target>
|
<target>Estimation</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">16,17</context>
|
<context context-type="linenumber">16,17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">73,76</context>
|
<context context-type="linenumber">73,76</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.estimate</note>
|
<note priority="1" from="description">difficulty-box.estimate</note>
|
||||||
@ -3162,20 +3170,24 @@
|
|||||||
<source>Previous</source>
|
<source>Previous</source>
|
||||||
<target>Précédent</target>
|
<target>Précédent</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">31,33</context>
|
<context context-type="linenumber">31,33</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">59,61</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.previous</note>
|
<note priority="1" from="description">difficulty-box.previous</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
||||||
<source>Current Period</source>
|
<source>Current Period</source>
|
||||||
<target>Période actuelle</target>
|
<target>Période actuelle</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">43,44</context>
|
<context context-type="linenumber">43,44</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">80,83</context>
|
<context context-type="linenumber">80,83</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.current-period</note>
|
<note priority="1" from="description">difficulty-box.current-period</note>
|
||||||
@ -3184,11 +3196,110 @@
|
|||||||
<source>Next Halving</source>
|
<source>Next Halving</source>
|
||||||
<target>Prochain halving</target>
|
<target>Prochain halving</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">50,52</context>
|
<context context-type="linenumber">50,52</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.next-halving</note>
|
<note priority="1" from="description">difficulty-box.next-halving</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocs attendus</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">13</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloc attendu</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">14</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocs trouvés</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">18</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloc trouvé</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">19</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocs restants</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">24</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloc restant</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">25</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocs d'avance</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">29</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloc d'avance</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">30</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocs de retard</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">34</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> bloc de retard</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">35</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
||||||
|
<source>Average block time</source>
|
||||||
|
<target>Temps de bloc moyen</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">42,45</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.average-block-time</note>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
||||||
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
||||||
<target>Soit 2x les frais minimum, soit les frais de faible priorité (selon le plus bas)</target>
|
<target>Soit 2x les frais minimum, soit les frais de faible priorité (selon le plus bas)</target>
|
||||||
@ -3667,7 +3778,7 @@
|
|||||||
<target>Statistiques de récompense</target>
|
<target>Statistiques de récompense</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3676,7 +3787,7 @@
|
|||||||
<target>(144 blocs)</target>
|
<target>(144 blocs)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3685,7 +3796,7 @@
|
|||||||
<target>Derniers blocs</target>
|
<target>Derniers blocs</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3698,7 +3809,7 @@
|
|||||||
<target>Ajustements</target>
|
<target>Ajustements</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3707,7 +3818,7 @@
|
|||||||
<target>Émettre une transaction</target>
|
<target>Émettre une transaction</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3882,9 +3993,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> blocs</target>
|
<target> <x id="INTERPOLATION" equiv-text="i"/> blocs</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3893,6 +4004,42 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<target>Autre ( <x id="PH" equiv-text="percentage"/> )</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -4366,40 +4513,28 @@
|
|||||||
<target>Juste maintenant</target>
|
<target>Juste maintenant</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">78</context>
|
<context context-type="linenumber">79</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-since" datatype="html">
|
<trans-unit id="time-since" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
||||||
<target>Il y a <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>Il y a <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">97</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">98</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">99</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">100</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">101</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">103</context>
|
<context context-type="linenumber">103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">104</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">105</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">106</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">107</context>
|
<context context-type="linenumber">107</context>
|
||||||
@ -4412,54 +4547,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">109</context>
|
<context context-type="linenumber">109</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">110</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">111</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">112</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">113</context>
|
<context context-type="linenumber">113</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">115</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">116</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">117</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">118</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">119</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-until" datatype="html">
|
<trans-unit id="time-until" datatype="html">
|
||||||
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>Dans ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>Dans ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">120</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">121</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">122</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">123</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">124</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">125</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">126</context>
|
<context context-type="linenumber">126</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">127</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">128</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">129</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">130</context>
|
<context context-type="linenumber">130</context>
|
||||||
@ -4472,54 +4607,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">132</context>
|
<context context-type="linenumber">132</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">133</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">134</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">135</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">136</context>
|
<context context-type="linenumber">136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">137</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">138</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">139</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">140</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">141</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">142</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-span" datatype="html">
|
<trans-unit id="time-span" datatype="html">
|
||||||
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>Après <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>Après <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">143</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">144</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">145</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">146</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">147</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">148</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">149</context>
|
<context context-type="linenumber">149</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">150</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">151</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">152</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">153</context>
|
<context context-type="linenumber">153</context>
|
||||||
@ -4532,22 +4667,34 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">155</context>
|
<context context-type="linenumber">155</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">156</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">157</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">158</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">159</context>
|
<context context-type="linenumber">159</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">160</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">161</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">162</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">163</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">164</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">165</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
||||||
<source>This transaction has been replaced by:</source>
|
<source>This transaction has been replaced by:</source>
|
||||||
@ -5053,7 +5200,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="47b821c7df420c96de0b22844a88c04d52628540" datatype="html">
|
<trans-unit id="47b821c7df420c96de0b22844a88c04d52628540" datatype="html">
|
||||||
<source>This transaction uses Taproot and already saved at least <x id="INTERPOLATION" equiv-text="{{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}"/>% on fees, but could save an additional <x id="INTERPOLATION_1" equiv-text="{{ segwitGains.potentialTaprootGains * 100 | number: '1.0-0' }}"/>% by fully using Taproot</source>
|
<source>This transaction uses Taproot and already saved at least <x id="INTERPOLATION" equiv-text="{{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}"/>% on fees, but could save an additional <x id="INTERPOLATION_1" equiv-text="{{ segwitGains.potentialTaprootGains * 100 | number: '1.0-0' }}"/>% by fully using Taproot</source>
|
||||||
<target>Cette transaction utilise Taproot et a déjà économisé au moins <x id="INTERPOLATION" equiv-text="{{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}"/> % sur les frais, mais pourrait économiser <x id="INTERPOLATION_1" equiv-text="{{ segwitGains.potentialTaprootGains * 100 | number: '1.0-0' }}"/> % supplémentaires en utilisant pleinement Taproot</target>
|
<target>Cette transaction utilise Taproot et a déjà économisé au moins <x id="INTERPOLATION" equiv-text="{{ segwitGains.realizedTaprootGains * 100 | number: '1.0-0' }}"/>% sur les frais, mais pourrait économiser <x id="INTERPOLATION_1" equiv-text="{{ segwitGains.potentialTaprootGains * 100 | number: '1.0-0' }}"/>% supplémentaires en utilisant pleinement 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">14</context>
|
<context context-type="linenumber">14</context>
|
||||||
@ -5440,6 +5587,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5680,7 +5831,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5713,7 +5864,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6008566722612122663" datatype="html">
|
<trans-unit id="6008566722612122663" datatype="html">
|
||||||
<source>Channel: <x id="PH" equiv-text="value.short_id"/></source>
|
<source>Channel: <x id="PH" equiv-text="value.short_id"/></source>
|
||||||
<target>Canal : <x id="PH" equiv-text="value.short_id"/></target>
|
<target>Canal: <x id="PH" equiv-text="value.short_id"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/channel/channel.component.ts</context>
|
||||||
<context context-type="linenumber">37</context>
|
<context context-type="linenumber">37</context>
|
||||||
@ -5821,7 +5972,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6139,6 +6290,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6619,19 +6774,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target> <x id="PH" equiv-text="country.count.toString()"/> nœuds</target>
|
<target><x id="PH" equiv-text="nodeCount"/> nœuds</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6639,7 +6798,7 @@
|
|||||||
<target>Capacité de <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC</target>
|
<target>Capacité de <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6757,11 +6916,11 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
@ -6911,7 +7070,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="date-base.week" datatype="html">
|
<trans-unit id="date-base.week" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="counter"/> week</source>
|
<source><x id="DATE" equiv-text="counter"/> week</source>
|
||||||
<target> <x id="DATE" equiv-text="counter"/> semaine</target>
|
<target><x id="DATE" equiv-text="counter"/> sem</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||||
<context context-type="linenumber">7</context>
|
<context context-type="linenumber">7</context>
|
||||||
@ -6919,7 +7078,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="date-base.weeks" datatype="html">
|
<trans-unit id="date-base.weeks" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="counter"/> weeks</source>
|
<source><x id="DATE" equiv-text="counter"/> weeks</source>
|
||||||
<target> <x id="DATE" equiv-text="counter"/> semaines</target>
|
<target><x id="DATE" equiv-text="counter"/> sem</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||||
<context context-type="linenumber">8</context>
|
<context context-type="linenumber">8</context>
|
||||||
|
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>בני ברית מהקהילה</target>
|
<target>בני ברית מהקהילה</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>מתרגמי הפרוייקט</target>
|
<target>מתרגמי הפרוייקט</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>תורמי הפרוייקט</target>
|
<target>תורמי הפרוייקט</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>חברי צוות הפרוייקט</target>
|
<target>חברי צוות הפרוייקט</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>מתחזקי הפרוייקט</target>
|
<target>מתחזקי הפרוייקט</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -2633,6 +2633,10 @@
|
|||||||
<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">8,9</context>
|
<context context-type="linenumber">8,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">38</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
|
||||||
<context context-type="linenumber">75</context>
|
<context context-type="linenumber">75</context>
|
||||||
@ -3080,13 +3084,17 @@
|
|||||||
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
<trans-unit id="63da83692b85cf17e0606153029a83fd4038d6dd" datatype="html">
|
||||||
<source>Difficulty Adjustment</source>
|
<source>Difficulty Adjustment</source>
|
||||||
<target>התאמת קשי</target>
|
<target>התאמת קשי</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
|
<context context-type="linenumber">1,5</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
<context context-type="linenumber">1,5</context>
|
<context context-type="linenumber">1,5</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3094,11 +3102,11 @@
|
|||||||
<source>Remaining</source>
|
<source>Remaining</source>
|
||||||
<target>נותרו</target>
|
<target>נותרו</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">7,9</context>
|
<context context-type="linenumber">7,9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">66,69</context>
|
<context context-type="linenumber">66,69</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.remaining</note>
|
<note priority="1" from="description">difficulty-box.remaining</note>
|
||||||
@ -3107,11 +3115,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> בלוקים <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-template"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> בלוקים <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">10,11</context>
|
<context context-type="linenumber">10,11</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">53,54</context>
|
<context context-type="linenumber">53,54</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3132,11 +3140,11 @@
|
|||||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>block<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> בלוק <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">block</span></ng-template> </div>"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> בלוק <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">11,12</context>
|
<context context-type="linenumber">11,12</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">54,55</context>
|
<context context-type="linenumber">54,55</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
@ -3149,11 +3157,11 @@
|
|||||||
<source>Estimate</source>
|
<source>Estimate</source>
|
||||||
<target>הערכה</target>
|
<target>הערכה</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">16,17</context>
|
<context context-type="linenumber">16,17</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">73,76</context>
|
<context context-type="linenumber">73,76</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.estimate</note>
|
<note priority="1" from="description">difficulty-box.estimate</note>
|
||||||
@ -3162,20 +3170,24 @@
|
|||||||
<source>Previous</source>
|
<source>Previous</source>
|
||||||
<target>הקודם</target>
|
<target>הקודם</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">31,33</context>
|
<context context-type="linenumber">31,33</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">59,61</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.previous</note>
|
<note priority="1" from="description">difficulty-box.previous</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
<trans-unit id="5db469cd0357e5f578b85a996f7e99c9e4148ff5" datatype="html">
|
||||||
<source>Current Period</source>
|
<source>Current Period</source>
|
||||||
<target>מחזור נוכחי</target>
|
<target>מחזור נוכחי</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">43,44</context>
|
<context context-type="linenumber">43,44</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">80,83</context>
|
<context context-type="linenumber">80,83</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.current-period</note>
|
<note priority="1" from="description">difficulty-box.current-period</note>
|
||||||
@ -3184,11 +3196,99 @@
|
|||||||
<source>Next Halving</source>
|
<source>Next Halving</source>
|
||||||
<target>חצייה הבאה</target>
|
<target>חצייה הבאה</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||||
<context context-type="linenumber">50,52</context>
|
<context context-type="linenumber">50,52</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">difficulty-box.next-halving</note>
|
<note priority="1" from="description">difficulty-box.next-halving</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">13</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">14</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.expected-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">18</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">19</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.mined-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">24</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-blocks</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">25</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.remaining-block</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">29</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">30</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-ahead</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">34</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.blocks-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||||
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
|
<context context-type="linenumber">35</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.block-behind</note>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
||||||
|
<source>Average block time</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
|
<context context-type="linenumber">42,45</context>
|
||||||
|
</context-group>
|
||||||
|
<note priority="1" from="description">difficulty-box.average-block-time</note>
|
||||||
|
</trans-unit>
|
||||||
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
<trans-unit id="6ff9e8b67bc2cda7569dc0996d4c2fd858c5d4e6" datatype="html">
|
||||||
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
<source>Either 2x the minimum, or the Low Priority rate (whichever is lower)</source>
|
||||||
<target>או כפול מהמינימום או בעמלת עדיפות נמוכה (הנמוך מבין השניים)</target>
|
<target>או כפול מהמינימום או בעמלת עדיפות נמוכה (הנמוך מבין השניים)</target>
|
||||||
@ -3666,7 +3766,7 @@
|
|||||||
<target>סטטיסטיקת פרסים</target>
|
<target>סטטיסטיקת פרסים</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3675,7 +3775,7 @@
|
|||||||
<target>(144 בלוקים)</target>
|
<target>(144 בלוקים)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3684,7 +3784,7 @@
|
|||||||
<target>בלוקים אחרונים</target>
|
<target>בלוקים אחרונים</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3697,7 +3797,7 @@
|
|||||||
<target>התאמות</target>
|
<target>התאמות</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3706,7 +3806,7 @@
|
|||||||
<target>שדר טרנזקציה</target>
|
<target>שדר טרנזקציה</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3880,9 +3980,8 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> בלוקים</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3891,6 +3990,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -4363,40 +4497,28 @@
|
|||||||
<target>זה עתה</target>
|
<target>זה עתה</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">78</context>
|
<context context-type="linenumber">79</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-since" datatype="html">
|
<trans-unit id="time-since" datatype="html">
|
||||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
||||||
<target>לפני <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>לפני <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">97</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">98</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">99</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">100</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">101</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">102</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">103</context>
|
<context context-type="linenumber">103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">104</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">105</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">106</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">107</context>
|
<context context-type="linenumber">107</context>
|
||||||
@ -4409,53 +4531,53 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">109</context>
|
<context context-type="linenumber">109</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">110</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">111</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">112</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">113</context>
|
<context context-type="linenumber">113</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">115</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">116</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">117</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">118</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">119</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-until" datatype="html">
|
<trans-unit id="time-until" datatype="html">
|
||||||
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">120</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">121</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">122</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">123</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">124</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">125</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">126</context>
|
<context context-type="linenumber">126</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">127</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">128</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">129</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">130</context>
|
<context context-type="linenumber">130</context>
|
||||||
@ -4468,54 +4590,54 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">132</context>
|
<context context-type="linenumber">132</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">133</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">134</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">135</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">136</context>
|
<context context-type="linenumber">136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">137</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">138</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">139</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">140</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">141</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">142</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-span" datatype="html">
|
<trans-unit id="time-span" datatype="html">
|
||||||
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>After <x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
<target>לאחר <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
<target>לאחר <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">143</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">144</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">145</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">146</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">147</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">148</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">149</context>
|
<context context-type="linenumber">149</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">150</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">151</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">152</context>
|
||||||
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">153</context>
|
<context context-type="linenumber">153</context>
|
||||||
@ -4528,22 +4650,34 @@
|
|||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">155</context>
|
<context context-type="linenumber">155</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">156</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">157</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
|
||||||
<context context-type="linenumber">158</context>
|
|
||||||
</context-group>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">159</context>
|
<context context-type="linenumber">159</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">160</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">161</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">162</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">163</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">164</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
|
<context context-type="linenumber">165</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
<trans-unit id="0094b97dd052620710f173e7aedf6807a1eba1f5" datatype="html">
|
||||||
<source>This transaction has been replaced by:</source>
|
<source>This transaction has been replaced by:</source>
|
||||||
@ -5426,6 +5560,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5665,7 +5803,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5806,7 +5944,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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6120,6 +6258,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6589,19 +6731,22 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> צמתים</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6609,7 +6754,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> קיבולת ביטקוין</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> קיבולת ביטקוין</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6721,11 +6866,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> ביטקוין</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> ביטקוין</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
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
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>コミュニティーの提携</target>
|
<target>コミュニティーの提携</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>プロジェクト翻訳者</target>
|
<target>プロジェクト翻訳者</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>プロジェクト貢献者</target>
|
<target>プロジェクト貢献者</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>プロジェクトメンバー</target>
|
<target>プロジェクトメンバー</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>プロジェクトメンテナー</target>
|
<target>プロジェクトメンテナー</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -3094,7 +3094,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3203,6 +3203,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
<trans-unit id="0c65c3ee0ce537e507e0b053b479012e5803d2cf" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks expected</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 期待値</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">13</context>
|
<context context-type="linenumber">13</context>
|
||||||
@ -3211,6 +3212,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
<trans-unit id="ec9f27d00a7778cd1cfe1806105d2ca3314fa506" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block expected</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 期待値</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">14</context>
|
<context context-type="linenumber">14</context>
|
||||||
@ -3219,6 +3221,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
<trans-unit id="b89cb92adf0a831d4a263ecdba02139abbda02ae" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks mined</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 採掘済</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">18</context>
|
<context context-type="linenumber">18</context>
|
||||||
@ -3227,6 +3230,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 採掘済</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">19</context>
|
<context context-type="linenumber">19</context>
|
||||||
@ -3235,6 +3239,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 残り</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">24</context>
|
||||||
@ -3243,6 +3248,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 残り</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">25</context>
|
<context context-type="linenumber">25</context>
|
||||||
@ -3251,6 +3257,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 早い</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">29</context>
|
<context context-type="linenumber">29</context>
|
||||||
@ -3259,6 +3266,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 早い</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">30</context>
|
<context context-type="linenumber">30</context>
|
||||||
@ -3267,6 +3275,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 遅い</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">34</context>
|
<context context-type="linenumber">34</context>
|
||||||
@ -3275,6 +3284,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||||
|
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> 個のブロック - 遅い</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||||
<context context-type="linenumber">35</context>
|
<context context-type="linenumber">35</context>
|
||||||
@ -3283,6 +3293,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
<trans-unit id="5e78899c9b98f29856ce3c7c265e1344bc7a5a18" datatype="html">
|
||||||
<source>Average block time</source>
|
<source>Average block time</source>
|
||||||
|
<target>平均ブロック生成時間</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||||
<context context-type="linenumber">42,45</context>
|
<context context-type="linenumber">42,45</context>
|
||||||
@ -3767,7 +3778,7 @@
|
|||||||
<target>報酬の統計値</target>
|
<target>報酬の統計値</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3776,7 +3787,7 @@
|
|||||||
<target>(144つのブロック)</target>
|
<target>(144つのブロック)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3785,7 +3796,7 @@
|
|||||||
<target>最新のブロック</target>
|
<target>最新のブロック</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3798,7 +3809,7 @@
|
|||||||
<target>補正</target>
|
<target>補正</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3807,7 +3818,7 @@
|
|||||||
<target>ブロードキャストトランザクション</target>
|
<target>ブロードキャストトランザクション</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3982,9 +3993,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/>のブロック</target>
|
<target> <x id="INTERPOLATION" equiv-text="i"/> ブロック</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3993,6 +4004,42 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<target>その他 ( <x id="PH" equiv-text="percentage"/> )</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -4148,7 +4195,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="88cb6e7b056be423b78e369ae1592c9e751095b8" datatype="html">
|
<trans-unit id="88cb6e7b056be423b78e369ae1592c9e751095b8" datatype="html">
|
||||||
<source>Mined blocks</source>
|
<source>Mined blocks</source>
|
||||||
<target>マイニングされたブロック</target>
|
<target>採掘されたブロック</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||||
<context context-type="linenumber">141,143</context>
|
<context context-type="linenumber">141,143</context>
|
||||||
@ -4269,7 +4316,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>
|
<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>
|
||||||
@ -4279,7 +4326,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>
|
<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>
|
||||||
@ -4531,6 +4578,7 @@
|
|||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="time-until" datatype="html">
|
<trans-unit id="time-until" datatype="html">
|
||||||
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
<source>In ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||||
|
<target>あと〜<x id="DATE" equiv-text="dateStrings.i18nYear"/>で</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||||
<context context-type="linenumber">126</context>
|
<context context-type="linenumber">126</context>
|
||||||
@ -5539,6 +5587,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5779,7 +5831,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5920,7 +5972,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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6238,6 +6290,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6718,19 +6774,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> 台</target>
|
<target> <x id="PH" equiv-text="nodeCount"/> ノード</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6738,7 +6798,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC 容量</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC 容量</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6856,11 +6916,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Bendruomenės Aljansai</target>
|
<target>Bendruomenės Aljansai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Projekto Vertėjai</target>
|
<target>Projekto Vertėjai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Projekto Pagalbininkai</target>
|
<target>Projekto Pagalbininkai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Projekto Nariai</target>
|
<target>Projekto Nariai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Projekto Prižiūrėtojai</target>
|
<target>Projekto Prižiūrėtojai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -3094,7 +3094,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3767,7 +3767,7 @@
|
|||||||
<target>Atlygio statistika</target>
|
<target>Atlygio statistika</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3776,7 +3776,7 @@
|
|||||||
<target>(144 blokai)</target>
|
<target>(144 blokai)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3785,7 +3785,7 @@
|
|||||||
<target>Naujausi blokai</target>
|
<target>Naujausi blokai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3798,7 +3798,7 @@
|
|||||||
<target>Koregavimai</target>
|
<target>Koregavimai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3807,7 +3807,7 @@
|
|||||||
<target>Transliuoti Sandorį</target>
|
<target>Transliuoti Sandorį</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3982,9 +3982,8 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target> <x id="PH" equiv-text="i"/> blokai</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3993,6 +3992,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5539,6 +5573,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5779,7 +5817,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5920,7 +5958,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6238,6 +6276,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6718,19 +6760,22 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target> <x id="PH" equiv-text="country.count.toString()"/> mazgai</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6738,7 +6783,7 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC talpumas</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC talpumas</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6856,11 +6901,11 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
@ -148,7 +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="Максимумот"/></target>
|
<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>
|
||||||
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Соработка со Заедницата</target>
|
<target>Соработка со Заедницата</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Преведувачи</target>
|
<target>Преведувачи</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Контрибутори</target>
|
<target>Контрибутори</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Членови на проектот</target>
|
<target>Членови на проектот</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Одржувачи на проектот</target>
|
<target>Одржувачи на проектот</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -3094,7 +3094,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3778,7 +3778,7 @@
|
|||||||
<target>Статистика за награди</target>
|
<target>Статистика за награди</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3787,7 +3787,7 @@
|
|||||||
<target>(144 блока)</target>
|
<target>(144 блока)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3796,7 +3796,7 @@
|
|||||||
<target>Последни блокови</target>
|
<target>Последни блокови</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3809,7 +3809,7 @@
|
|||||||
<target>Промени</target>
|
<target>Промени</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3818,7 +3818,7 @@
|
|||||||
<target>Емитирај ја Трансакцијата</target>
|
<target>Емитирај ја Трансакцијата</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3993,9 +3993,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> блока</target>
|
<target><x id="INTERPOLATION" equiv-text="i"/> блокови</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -4004,6 +4004,42 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<target>Други (<x id="PH" equiv-text="percentage"/>)</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5551,6 +5587,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5791,7 +5831,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5932,7 +5972,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6250,6 +6290,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6730,19 +6774,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> нодови</target>
|
<target><x id="PH" equiv-text="nodeCount"/> нодови</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6750,7 +6798,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC капацитет</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC капацитет</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6868,11 +6916,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
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
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Sojusze społecznościowe</target>
|
<target>Sojusze społecznościowe</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Tłumacze projektu</target>
|
<target>Tłumacze projektu</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Współtwórcy projektu</target>
|
<target>Współtwórcy projektu</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Członkowie projektu</target>
|
<target>Członkowie projektu</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Opiekunowie projektu</target>
|
<target>Opiekunowie projektu</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -3094,7 +3094,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3778,7 +3778,7 @@
|
|||||||
<target>Statystyki nagród</target>
|
<target>Statystyki nagród</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3787,7 +3787,7 @@
|
|||||||
<target>(144 bloków)</target>
|
<target>(144 bloków)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3796,7 +3796,7 @@
|
|||||||
<target>Ostatnie bloki</target>
|
<target>Ostatnie bloki</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3809,7 +3809,7 @@
|
|||||||
<target>Dostosowania</target>
|
<target>Dostosowania</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3818,7 +3818,7 @@
|
|||||||
<target>Rozgłoś transakcję</target>
|
<target>Rozgłoś transakcję</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3993,9 +3993,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> bloków</target>
|
<target><x id="INTERPOLATION" equiv-text="i"/> bloków</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -4004,6 +4004,42 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<target>Inne (<x id="PH" equiv-text="percentage"/>)</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5551,6 +5587,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5791,7 +5831,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5932,7 +5972,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6250,6 +6290,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6730,19 +6774,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> węzłów</target>
|
<target><x id="PH" equiv-text="nodeCount"/> węzłów</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6750,7 +6798,7 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> pojemność BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> pojemność BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6868,11 +6916,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
@ -750,11 +750,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">33</context>
|
<context context-type="linenumber">32</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">43</context>
|
<context context-type="linenumber">42</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.html</context>
|
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||||
@ -775,11 +775,11 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">375,378</context>
|
<context context-type="linenumber">391,394</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">88</context>
|
<context context-type="linenumber">87</context>
|
||||||
</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>
|
||||||
@ -805,7 +805,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">90</context>
|
<context context-type="linenumber">89</context>
|
||||||
</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>
|
||||||
@ -1487,7 +1487,7 @@
|
|||||||
<target>Alianças da comunidade</target>
|
<target>Alianças da comunidade</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">275,277</context>
|
<context context-type="linenumber">291,293</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.alliances</note>
|
<note priority="1" from="description">about.alliances</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1496,7 +1496,7 @@
|
|||||||
<target>Tradutores do Projeto</target>
|
<target>Tradutores do Projeto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">291,293</context>
|
<context context-type="linenumber">307,309</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.translators</note>
|
<note priority="1" from="description">about.translators</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1505,7 +1505,7 @@
|
|||||||
<target>Contribuidores do projeto</target>
|
<target>Contribuidores do projeto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">305,307</context>
|
<context context-type="linenumber">321,323</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.contributors</note>
|
<note priority="1" from="description">about.contributors</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1514,7 +1514,7 @@
|
|||||||
<target>Membros do Projeto</target>
|
<target>Membros do Projeto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">317,319</context>
|
<context context-type="linenumber">333,335</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.project_members</note>
|
<note priority="1" from="description">about.project_members</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -1523,7 +1523,7 @@
|
|||||||
<target>Mantenedores do projeto</target>
|
<target>Mantenedores do projeto</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||||
<context context-type="linenumber">330,332</context>
|
<context context-type="linenumber">346,348</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">about.maintainers</note>
|
<note priority="1" from="description">about.maintainers</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -2215,7 +2215,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">41,42</context>
|
<context context-type="linenumber">41,43</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>
|
||||||
@ -3094,7 +3094,7 @@
|
|||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">24</context>
|
<context context-type="linenumber">23</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
<note priority="1" from="description">dashboard.difficulty-adjustment</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3778,7 +3778,7 @@
|
|||||||
<target>Estatisticas de recompensas</target>
|
<target>Estatisticas de recompensas</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">10</context>
|
<context context-type="linenumber">9</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.reward-stats</note>
|
<note priority="1" from="description">mining.reward-stats</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3787,7 +3787,7 @@
|
|||||||
<target>(144 blocos)</target>
|
<target>(144 blocos)</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">11</context>
|
<context context-type="linenumber">10</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">mining.144-blocks</note>
|
<note priority="1" from="description">mining.144-blocks</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3796,7 +3796,7 @@
|
|||||||
<target>Últimos blocos</target>
|
<target>Últimos blocos</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">53</context>
|
<context context-type="linenumber">52</context>
|
||||||
</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>
|
||||||
@ -3809,7 +3809,7 @@
|
|||||||
<target>Ajustes</target>
|
<target>Ajustes</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">67</context>
|
<context context-type="linenumber">66</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<note priority="1" from="description">dashboard.adjustments</note>
|
<note priority="1" from="description">dashboard.adjustments</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
@ -3818,7 +3818,7 @@
|
|||||||
<target>Transmitir Transação</target>
|
<target>Transmitir Transação</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||||
<context context-type="linenumber">92</context>
|
<context context-type="linenumber">91</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.html</context>
|
||||||
@ -3993,9 +3993,8 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> blocos</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -4004,6 +4003,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5551,6 +5585,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5791,7 +5829,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">42,43</context>
|
<context context-type="linenumber">42,44</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>
|
||||||
@ -5932,7 +5970,7 @@
|
|||||||
<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">63,67</context>
|
<context context-type="linenumber">63,68</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>
|
||||||
@ -6250,6 +6288,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6730,19 +6772,22 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> nós</target>
|
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6750,7 +6795,7 @@
|
|||||||
<target>Capacidade de <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC</target>
|
<target>Capacidade de <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6868,11 +6913,11 @@
|
|||||||
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
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
@ -3993,9 +3993,9 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<target><x id="PH" equiv-text="i"/> block</target>
|
<target><x id="INTERPOLATION" equiv-text="i"/> block</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -4004,6 +4004,42 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<target>Övriga (<x id="PH" equiv-text="percentage"/>)</target>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5551,6 +5587,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -6250,6 +6290,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6730,19 +6774,23 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<target><x id="PH" equiv-text="country.count.toString()"/> noder</target>
|
<target><x id="PH" equiv-text="nodeCount"/> noder</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
@ -6750,7 +6798,7 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC-kapacitet</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC-kapacitet</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6868,11 +6916,11 @@
|
|||||||
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
<target> <x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
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
@ -3709,8 +3709,8 @@
|
|||||||
<context context-type="linenumber">58</context>
|
<context context-type="linenumber">58</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="6095122426142344316" datatype="html">
|
<trans-unit id="312539377512157124" datatype="html">
|
||||||
<source><x id="PH" equiv-text="i"/> blocks</source>
|
<source><x id="INTERPOLATION" equiv-text="i"/> blocks</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">165,163</context>
|
<context context-type="linenumber">165,163</context>
|
||||||
@ -3719,6 +3719,41 @@
|
|||||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
<context context-type="linenumber">168,167</context>
|
<context context-type="linenumber">168,167</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">203,201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">206,205</context>
|
||||||
|
</context-group>
|
||||||
|
</trans-unit>
|
||||||
|
<trans-unit id="3666195172774554282" datatype="html">
|
||||||
|
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">201</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||||
|
<context context-type="linenumber">205</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">119,114</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">136</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">173,168</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">190</context>
|
||||||
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
<trans-unit id="2158ea60725d3a97aed6f0f00aa7df48d7bb42ff" datatype="html">
|
||||||
<source>mining pool</source>
|
<source>mining pool</source>
|
||||||
@ -5144,6 +5179,10 @@
|
|||||||
<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">123,124</context>
|
<context context-type="linenumber">123,124</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||||
|
<context context-type="linenumber">211,208</context>
|
||||||
|
</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">
|
||||||
@ -5802,6 +5841,10 @@
|
|||||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
<context context-type="linenumber">194,193</context>
|
<context context-type="linenumber">194,193</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">259,257</context>
|
||||||
|
</context-group>
|
||||||
<note priority="1" from="description">lightning.channels</note>
|
<note priority="1" from="description">lightning.channels</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
<trans-unit id="e4706894b195010f6814e54bf6570c729d69aaca" datatype="html">
|
||||||
@ -6242,25 +6285,29 @@
|
|||||||
<note priority="1" from="description">lightning.share</note>
|
<note priority="1" from="description">lightning.share</note>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="5222540403093176126" datatype="html">
|
<trans-unit id="5222540403093176126" datatype="html">
|
||||||
<source><x id="PH" equiv-text="country.count.toString()"/> nodes</source>
|
<source><x id="PH" equiv-text="nodeCount"/> nodes</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">103,102</context>
|
<context context-type="linenumber">104,103</context>
|
||||||
|
</context-group>
|
||||||
|
<context-group purpose="location">
|
||||||
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
|
<context context-type="linenumber">137,136</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">157,156</context>
|
<context context-type="linenumber">158,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">189,188</context>
|
<context context-type="linenumber">191,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7032954508645880700" datatype="html">
|
<trans-unit id="7032954508645880700" datatype="html">
|
||||||
<source><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC capacity</source>
|
<source><x id="PH" equiv-text="this.amountShortenerPipe.transform(country.capacity / 100000000, 2)"/> BTC capacity</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||||
<context context-type="linenumber">104,102</context>
|
<context context-type="linenumber">105,103</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
<trans-unit id="7ede3edfacd291eb9db08e11845d9efdf197f417" datatype="html">
|
||||||
@ -6366,11 +6413,11 @@
|
|||||||
<source><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</source>
|
<source><x id="PH" equiv-text="this.amountShortenerPipe.transform(isp[2] / 100000000, 2)"/> BTC</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">158,156</context>
|
<context context-type="linenumber">159,157</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.ts</context>
|
||||||
<context context-type="linenumber">190,188</context>
|
<context context-type="linenumber">192,190</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
<trans-unit id="c18497e4f0db0d0ad0c71ba294295f42b3d312c9" datatype="html">
|
||||||
|
File diff suppressed because it is too large
Load Diff
3
frontend/src/resources/profile/mutiny.svg
Normal file
3
frontend/src/resources/profile/mutiny.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M12 417.5H52.6667V437.75H113.667V417.5H134V215H154.333V174.5H134V154.25H93.3333V174.5H73V194.75H52.6667V215H113.667V255.5H93.3333V275.75H52.6667V255.5H32.3333V174.5H52.6667V154.25H73V134H195V154.25H215.333V174.5H235.667V215H256V255.5H276.333V275.75H296.667V235.25H317V215H337.333V174.5H357.667V134H378V113.75H398.333V73.25H439V53H479.667V73.25H500V93.5H459.333V73.25H439V93.5H418.667V336.5H439V437.75H459.333V458H378V437.75H357.667V235.25H337.333V255.5H317V296H296.667V336.5H276.333V377H235.667V336.5H215.333V296H195V235.25H174.667V356.75H154.333V417.5H134V437.75H113.667V458H32.3333V437.75H12V417.5Z" fill="#E23A5E"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 735 B |
Loading…
x
Reference in New Issue
Block a user