Merge branch 'master' into simon/configurable-main-module
# Conflicts: # frontend/src/app/components/blockchain/blockchain.component.ts
This commit is contained in:
commit
15903faf49
2
.github/workflows/cypress.yml
vendored
2
.github/workflows/cypress.yml
vendored
@ -1,6 +1,6 @@
|
||||
name: Cypress Tests
|
||||
|
||||
on: [push]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
cypress:
|
||||
|
@ -113,4 +113,46 @@ export namespace IBitcoinApi {
|
||||
status: 'invalid' | 'headers-only' | 'valid-headers' | 'valid-fork' | 'active';
|
||||
}
|
||||
|
||||
export interface BlockchainInfo {
|
||||
chain: number; // (string) current network name as defined in BIP70 (main, test, regtest)
|
||||
blocks: number; // (numeric) the current number of blocks processed in the server
|
||||
headers: number; // (numeric) the current number of headers we have validated
|
||||
bestblockhash: string, // (string) the hash of the currently best block
|
||||
difficulty: number; // (numeric) the current difficulty
|
||||
mediantime: number; // (numeric) median time for the current best block
|
||||
verificationprogress: number; // (numeric) estimate of verification progress [0..1]
|
||||
initialblockdownload: boolean; // (bool) (debug information) estimate of whether this node is in Initial Block Download mode.
|
||||
chainwork: string // (string) total amount of work in active chain, in hexadecimal
|
||||
size_on_disk: number; // (numeric) the estimated size of the block and undo files on disk
|
||||
pruned: number; // (boolean) if the blocks are subject to pruning
|
||||
pruneheight: number; // (numeric) lowest-height complete block stored (only present if pruning is enabled)
|
||||
automatic_pruning: number; // (boolean) whether automatic pruning is enabled (only present if pruning is enabled)
|
||||
prune_target_size: number; // (numeric) the target size used by pruning (only present if automatic pruning is enabled)
|
||||
softforks: SoftFork[]; // (array) status of softforks in progress
|
||||
bip9_softforks: { [name: string]: Bip9SoftForks[] } // (object) status of BIP9 softforks in progress
|
||||
warnings: string; // (string) any network and blockchain warnings.
|
||||
}
|
||||
|
||||
interface SoftFork {
|
||||
id: string; // (string) name of softfork
|
||||
version: number; // (numeric) block version
|
||||
reject: { // (object) progress toward rejecting pre-softfork blocks
|
||||
status: boolean; // (boolean) true if threshold reached
|
||||
},
|
||||
}
|
||||
interface Bip9SoftForks {
|
||||
status: number; // (string) one of defined, started, locked_in, active, failed
|
||||
bit: number; // (numeric) the bit (0-28) in the block version field used to signal this softfork (only for started status)
|
||||
startTime: number; // (numeric) the minimum median time past of a block at which the bit gains its meaning
|
||||
timeout: number; // (numeric) the median time past of a block at which the deployment is considered failed if not yet locked in
|
||||
since: number; // (numeric) height of the first block to which the status applies
|
||||
statistics: { // (object) numeric statistics about BIP9 signalling for a softfork (only for started status)
|
||||
period: number; // (numeric) the length in blocks of the BIP9 signalling period
|
||||
threshold: number; // (numeric) the number of blocks with the version bit set required to activate the feature
|
||||
elapsed: number; // (numeric) the number of blocks elapsed since the beginning of the current period
|
||||
count: number; // (numeric) the number of blocks with the version bit set in the current period
|
||||
possible: boolean; // (boolean) returns false if there are not enough blocks left in this period to pass activation threshold
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -40,6 +40,10 @@ class BitcoinBaseApi {
|
||||
}
|
||||
return this.bitcoindClient.getMempoolInfo();
|
||||
}
|
||||
|
||||
$getBlockchainInfo(): Promise<IBitcoinApi.BlockchainInfo> {
|
||||
return this.bitcoindClient.getBlockchainInfo();
|
||||
}
|
||||
}
|
||||
|
||||
export default new BitcoinBaseApi();
|
||||
|
@ -6,6 +6,7 @@ import { BlockExtended, TransactionExtended } from '../mempool.interfaces';
|
||||
import { Common } from './common';
|
||||
import diskCache from './disk-cache';
|
||||
import transactionUtils from './transaction-utils';
|
||||
import bitcoinBaseApi from './bitcoin/bitcoin-base.api';
|
||||
|
||||
class Blocks {
|
||||
private blocks: BlockExtended[] = [];
|
||||
@ -44,15 +45,21 @@ class Blocks {
|
||||
}
|
||||
|
||||
if (!this.lastDifficultyAdjustmentTime) {
|
||||
const heightDiff = blockHeightTip % 2016;
|
||||
const blockHash = await bitcoinApi.$getBlockHash(blockHeightTip - heightDiff);
|
||||
const block = await bitcoinApi.$getBlock(blockHash);
|
||||
this.lastDifficultyAdjustmentTime = block.timestamp;
|
||||
this.currentDifficulty = block.difficulty;
|
||||
const blockchainInfo = await bitcoinBaseApi.$getBlockchainInfo();
|
||||
if (blockchainInfo.blocks === blockchainInfo.headers) {
|
||||
const heightDiff = blockHeightTip % 2016;
|
||||
const blockHash = await bitcoinApi.$getBlockHash(blockHeightTip - heightDiff);
|
||||
const block = await bitcoinApi.$getBlock(blockHash);
|
||||
this.lastDifficultyAdjustmentTime = block.timestamp;
|
||||
this.currentDifficulty = block.difficulty;
|
||||
|
||||
const previousPeriodBlockHash = await bitcoinApi.$getBlockHash(blockHeightTip - heightDiff - 2016);
|
||||
const previousPeriodBlock = await bitcoinApi.$getBlock(previousPeriodBlockHash);
|
||||
this.previousDifficultyRetarget = (block.difficulty - previousPeriodBlock.difficulty) / previousPeriodBlock.difficulty * 100;
|
||||
const previousPeriodBlockHash = await bitcoinApi.$getBlockHash(blockHeightTip - heightDiff - 2016);
|
||||
const previousPeriodBlock = await bitcoinApi.$getBlock(previousPeriodBlockHash);
|
||||
this.previousDifficultyRetarget = (block.difficulty - previousPeriodBlock.difficulty) / previousPeriodBlock.difficulty * 100;
|
||||
logger.debug(`Initial difficulty adjustment data set.`);
|
||||
} else {
|
||||
logger.debug(`Blockchain headers (${blockchainInfo.headers}) and blocks (${blockchainInfo.blocks}) not in sync. Waiting...`);
|
||||
}
|
||||
}
|
||||
|
||||
while (this.currentBlockHeight < blockHeightTip) {
|
||||
|
@ -133,6 +133,13 @@ describe('Liquid', () => {
|
||||
cy.get('.error-unblinded' ).contains('Error: Invalid blinding data.');
|
||||
});
|
||||
|
||||
it('shows asset peg in/out and burn transactions', () => {
|
||||
cy.visit('/liquid/asset/6f0279e9ed041c3d710a9f57d0c02928416460c4b722ae3457a11eec381c526d');
|
||||
cy.waitForSkeletonGone();
|
||||
cy.get('#table-tx-vout tr').not('.assetBox');
|
||||
cy.get('#table-tx-vin tr').not('.assetBox');
|
||||
});
|
||||
|
||||
it('prevents regressing issue #644', () => {
|
||||
cy.visit('/liquid/tx/393b890966f305e7c440fcfb12a13f51a7a9011cc59ff5f14f6f93214261bd82');
|
||||
cy.waitForSkeletonGone();
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { emitMempoolInfo } from "../../support/websocket";
|
||||
import { emitMempoolInfo, emitWithoutMempoolInfo } from "../../support/websocket";
|
||||
|
||||
describe('Mainnet', () => {
|
||||
beforeEach(() => {
|
||||
@ -51,6 +51,7 @@ describe('Mainnet', () => {
|
||||
loaded: true
|
||||
}
|
||||
});
|
||||
|
||||
cy.get(':nth-child(1) > #bitcoin-block-0').should('not.exist');
|
||||
cy.get(':nth-child(2) > #bitcoin-block-0').should('not.exist');
|
||||
cy.get(':nth-child(3) > #bitcoin-block-0').should('not.exist');
|
||||
@ -72,28 +73,24 @@ describe('Mainnet', () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe('tv mode', () => {
|
||||
it('loads the tv screen - desktop', () => {
|
||||
it('loads the tv screen - desktop', () => {
|
||||
cy.viewport('macbook-16');
|
||||
cy.visit('/');
|
||||
cy.waitForSkeletonGone();
|
||||
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
||||
cy.viewport('macbook-16');
|
||||
cy.visit('/');
|
||||
cy.waitForSkeletonGone();
|
||||
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
||||
cy.viewport('macbook-16');
|
||||
cy.get('.chart-holder');
|
||||
cy.get('.blockchain-wrapper').should('be.visible');
|
||||
cy.get('#mempool-block-0').should('be.visible');
|
||||
});
|
||||
cy.get('.chart-holder');
|
||||
cy.get('.blockchain-wrapper').should('be.visible');
|
||||
cy.get('#mempool-block-0').should('be.visible');
|
||||
});
|
||||
});
|
||||
|
||||
it('loads the tv screen - mobile', () => {
|
||||
cy.visit('/');
|
||||
cy.waitForSkeletonGone();
|
||||
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
||||
cy.viewport('iphone-6');
|
||||
cy.get('.chart-holder');
|
||||
cy.get('.blockchain-wrapper').should('not.be.visible');
|
||||
});
|
||||
});
|
||||
it('loads the tv screen - mobile', () => {
|
||||
cy.viewport('iphone-6');
|
||||
cy.visit('/tv');
|
||||
cy.waitForSkeletonGone();
|
||||
cy.get('.chart-holder');
|
||||
cy.get('.blockchain-wrapper').should('be.visible');
|
||||
});
|
||||
|
||||
it('loads the api screen', () => {
|
||||
|
@ -70,15 +70,15 @@ export const emitMempoolInfo = ({
|
||||
default:
|
||||
win.mockSocket.send('{"action":"init"}');
|
||||
win.mockSocket.send('{"action":"want","data":["blocks","stats","mempool-blocks","live-2h-chart"]}');
|
||||
cy.readFile('cypress/fixtures/mainnet_mempoolInfo.json', 'ascii').then((fixture) => {
|
||||
win.mockSocket.send(JSON.stringify(fixture));
|
||||
});
|
||||
win.mockSocket.send('{"conversions":{"USD":32365.338815782445}}');
|
||||
cy.readFile('cypress/fixtures/mainnet_live2hchart.json', 'ascii').then((fixture) => {
|
||||
win.mockSocket.send(JSON.stringify(fixture));
|
||||
});
|
||||
cy.readFile('cypress/fixtures/mainnet_mempoolInfo.json', 'ascii').then((fixture) => {
|
||||
win.mockSocket.send(JSON.stringify(fixture));
|
||||
});
|
||||
}
|
||||
});
|
||||
cy.waitForSkeletonGone();
|
||||
return cy.get('#mempool-block-0');
|
||||
};
|
||||
};
|
@ -1,4 +1,4 @@
|
||||
<div class="blocks-container" *ngIf="(isLoading$ | async) === false">
|
||||
<div class="blocks-container" *ngIf="loadingBlocks">
|
||||
<div *ngFor="let block of blocks; let i = index; trackBy: trackByBlocksFn" >
|
||||
<div class="text-center bitcoin-block mined-block" id="bitcoin-block-{{ block.height }}" [ngStyle]="blockStyles[i]">
|
||||
<a [routerLink]="['/block/' | relativeUrl, block.id]" [state]="{ data: { block: block } }" class="blockLink"> </a>
|
||||
@ -9,7 +9,7 @@
|
||||
<div class="fees">
|
||||
~{{ block.medianFee | number:'1.0-0' }} <ng-container i18n="shared.sat-vbyte|sat/vB">sat/vB</ng-container>
|
||||
</div>
|
||||
<div class="fee-span" *ngIf="block.feeRange !== undefined">
|
||||
<div class="fee-span">
|
||||
{{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} <ng-container i18n="shared.sat-vbyte|sat/vB">sat/vB</ng-container>
|
||||
</div>
|
||||
<div class="block-size" [innerHTML]="block.size | bytes: 2">‎</div>
|
||||
@ -25,7 +25,7 @@
|
||||
<div [hidden]="!arrowVisible" id="arrow-up" [style.transition]="transition" [ngStyle]="{'left': arrowLeftPx + 'px' }"></div>
|
||||
</div>
|
||||
|
||||
<div class="blocks-container" *ngIf="(isLoading$ | async) === true">
|
||||
<div class="blocks-container" *ngIf="!loadingBlocks">
|
||||
<div class="flashing">
|
||||
<div *ngFor="let block of blocks; let i = index; trackBy: trackByBlocksFn" >
|
||||
<div class="text-center bitcoin-block mined-block" id="bitcoin-block-{{ block.height }}" [ngStyle]="blockStyles[i]"></div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Component, OnInit, OnDestroy, ChangeDetectionStrategy, ChangeDetectorRef, Input } from '@angular/core';
|
||||
import { Subscription, Observable } from 'rxjs';
|
||||
import { Subscription } from 'rxjs';
|
||||
import { Block } from 'src/app/interfaces/electrs.interface';
|
||||
import { StateService } from 'src/app/services/state.service';
|
||||
import { Router } from '@angular/router';
|
||||
@ -11,8 +11,7 @@ import { Router } from '@angular/router';
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class BlockchainBlocksComponent implements OnInit, OnDestroy {
|
||||
@Input() isLoading$: Observable<boolean>;
|
||||
|
||||
|
||||
network = '';
|
||||
blocks: Block[] = this.mountEmptyBlocks();
|
||||
markHeight: number;
|
||||
@ -23,6 +22,7 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy {
|
||||
blockStyles = [];
|
||||
interval: any;
|
||||
tabHidden = false;
|
||||
loadingBlocks = false;
|
||||
|
||||
arrowVisible = false;
|
||||
arrowLeftPx = 30;
|
||||
@ -54,6 +54,8 @@ export class BlockchainBlocksComponent implements OnInit, OnDestroy {
|
||||
return;
|
||||
}
|
||||
|
||||
this.loadingBlocks = true;
|
||||
|
||||
if (this.blocks.length && block.height !== this.blocks[0].height + 1) {
|
||||
this.blocks = [];
|
||||
this.blocksFilled = false;
|
||||
|
@ -1,8 +1,8 @@
|
||||
<div class="text-center" class="blockchain-wrapper">
|
||||
<div class="position-container {{ network }}">
|
||||
<span>
|
||||
<app-mempool-blocks [isLoading$]="isLoading$"></app-mempool-blocks>
|
||||
<app-blockchain-blocks [isLoading$]="isLoading$"></app-blockchain-blocks>
|
||||
<app-mempool-blocks></app-mempool-blocks>
|
||||
<app-blockchain-blocks></app-blockchain-blocks>
|
||||
<div id="divider"></div>
|
||||
</span>
|
||||
</div>
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';
|
||||
import { StateService } from 'src/app/services/state.service';
|
||||
import { Observable } from 'rxjs';
|
||||
|
||||
@Component({
|
||||
selector: 'app-blockchain',
|
||||
@ -9,7 +8,6 @@ import { Observable } from 'rxjs';
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class BlockchainComponent implements OnInit {
|
||||
isLoading$: Observable<boolean>;
|
||||
network: string;
|
||||
|
||||
constructor(
|
||||
@ -17,7 +15,6 @@ export class BlockchainComponent implements OnInit {
|
||||
) {}
|
||||
|
||||
ngOnInit() {
|
||||
this.isLoading$ = this.stateService.isLoadingWebSocket$;
|
||||
this.network = this.stateService.network;
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
<div class="mempool-blocks-container" *ngIf="(isLoading$ | async) === false">
|
||||
<div class="mempool-blocks-container">
|
||||
<div class="flashing" *ngIf="(timeAvg$ | async) as timeAvg;">
|
||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks$ | async" let-i="index" [ngForTrackBy]="trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]">
|
||||
@ -21,7 +21,7 @@
|
||||
<app-time-until [time]="(1 * i) + now + 61000" [fastRender]="false" [fixedRender]="true"></app-time-until>
|
||||
</ng-template>
|
||||
<ng-template #timeDiffMainnet>
|
||||
<app-time-until [time]="(timeAvg * i) + now + timeAvg" [fastRender]="false" [fixedRender]="true"></app-time-until>
|
||||
<app-time-until [time]="(timeAvg * i) + now + timeAvg" [fastRender]="false" [fixedRender]="true" [forceFloorOnTimeIntervals]="['hour']"></app-time-until>
|
||||
</ng-template>
|
||||
</div>
|
||||
<ng-template #mergedBlock>
|
||||
@ -38,7 +38,7 @@
|
||||
<div *ngIf="arrowVisible" id="arrow-up" [ngStyle]="{'right': rightPosition + 75 + 'px', transition: transition }"></div>
|
||||
</div>
|
||||
|
||||
<div class="mempool-blocks-container" *ngIf="(isLoading$ | async) === true">
|
||||
<div class="mempool-blocks-container" *ngIf="loadingMempoolBlocks === true">
|
||||
<div class="flashing">
|
||||
<ng-template ngFor let-projectedBlock [ngForOf]="mempoolBlocks" let-i="index" [ngForTrackBy]="trackByFn">
|
||||
<div class="bitcoin-block text-center mempool-block" id="mempool-block-{{ i }}" [ngStyle]="mempoolBlockStyles[i]"></div>
|
||||
|
@ -13,7 +13,6 @@ import { feeLevels, mempoolFeeColors } from 'src/app/app.constants';
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
||||
@Input() isLoading$: Observable<boolean>;
|
||||
|
||||
mempoolBlocks: MempoolBlock[] = this.mountEmptyBlocks();
|
||||
mempoolBlocks$: Observable<MempoolBlock[]>;
|
||||
@ -31,6 +30,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
||||
blockPadding = 30;
|
||||
arrowVisible = false;
|
||||
tabHidden = false;
|
||||
loadingMempoolBlocks = true;
|
||||
|
||||
rightPosition = 0;
|
||||
transition = '2s';
|
||||
@ -106,6 +106,7 @@ export class MempoolBlocksComponent implements OnInit, OnDestroy {
|
||||
timeAvgMins += Math.abs(timeAvgDiff);
|
||||
}
|
||||
|
||||
this.loadingMempoolBlocks = false;
|
||||
return timeAvgMins * 60 * 1000;
|
||||
})
|
||||
);
|
||||
|
@ -12,8 +12,8 @@
|
||||
|
||||
<div class="blockchain-wrapper">
|
||||
<div class="position-container">
|
||||
<app-mempool-blocks [isLoading$]="isLoading$"></app-mempool-blocks>
|
||||
<app-blockchain-blocks [isLoading$]="isLoading$"></app-blockchain-blocks>
|
||||
<app-mempool-blocks></app-mempool-blocks>
|
||||
<app-blockchain-blocks></app-blockchain-blocks>
|
||||
<div id="divider"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -89,9 +89,4 @@
|
||||
display: flex;
|
||||
margin-top: 0px;
|
||||
flex-direction: column;
|
||||
@media(max-height: 700px) {
|
||||
.blockchain-wrapper{
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
}
|
@ -12,7 +12,6 @@ import { Observable } from 'rxjs';
|
||||
styleUrls: ['./television.component.scss']
|
||||
})
|
||||
export class TelevisionComponent implements OnInit {
|
||||
isLoading$: Observable<boolean>;
|
||||
|
||||
mempoolStats: OptimizedMempoolStats[] = [];
|
||||
mempoolVsizeFeesData: any;
|
||||
@ -27,7 +26,6 @@ export class TelevisionComponent implements OnInit {
|
||||
ngOnInit() {
|
||||
this.seoService.setTitle($localize`:@@46ce8155c9ab953edeec97e8950b5a21e67d7c4e:TV view`);
|
||||
this.websocketService.want(['blocks', 'live-2h-chart', 'mempool-blocks']);
|
||||
this.isLoading$ = this.stateService.isLoadingWebSocket$;
|
||||
|
||||
this.apiService.list2HStatistics$()
|
||||
.subscribe((mempoolStats) => {
|
||||
|
@ -15,6 +15,7 @@ export class TimeUntilComponent implements OnInit, OnChanges, OnDestroy {
|
||||
@Input() time: number;
|
||||
@Input() fastRender = false;
|
||||
@Input() fixedRender = false;
|
||||
@Input() forceFloorOnTimeIntervals: string[];
|
||||
|
||||
constructor(
|
||||
private ref: ChangeDetectorRef,
|
||||
@ -67,10 +68,10 @@ export class TimeUntilComponent implements OnInit, OnChanges, OnDestroy {
|
||||
let counter: number;
|
||||
for (const i in this.intervals) {
|
||||
if (this.intervals.hasOwnProperty(i)) {
|
||||
if (i === 'minute') {
|
||||
counter = Math.round(seconds / this.intervals[i]);
|
||||
} else {
|
||||
if (this.forceFloorOnTimeIntervals && this.forceFloorOnTimeIntervals.indexOf(i) > -1) {
|
||||
counter = Math.floor(seconds / this.intervals[i]);
|
||||
} else {
|
||||
counter = Math.round(seconds / this.intervals[i]);
|
||||
}
|
||||
const dateStrings = dates(counter);
|
||||
if (counter > 0) {
|
||||
|
@ -120,7 +120,7 @@
|
||||
<app-time-until [time]="(60 * 1000 * txInBlockIndex) + now" [fastRender]="false" [fixedRender]="true"></app-time-until>
|
||||
</ng-template>
|
||||
<ng-template #timeEstimateDefault>
|
||||
<app-time-until *ngIf="(timeAvg$ | async) as timeAvg;" [time]="(timeAvg * txInBlockIndex) + now + timeAvg" [fastRender]="false" [fixedRender]="true"></app-time-until>
|
||||
<app-time-until *ngIf="(timeAvg$ | async) as timeAvg;" [time]="(timeAvg * txInBlockIndex) + now + timeAvg" [fastRender]="false" [fixedRender]="true" [forceFloorOnTimeIntervals]="['hour']"></app-time-until>
|
||||
</ng-template>
|
||||
</ng-template>
|
||||
</ng-template>
|
||||
|
@ -21,7 +21,7 @@
|
||||
<table class="table table-borderless smaller-text table-sm" id="table-tx-vin">
|
||||
<tbody>
|
||||
<ng-template ngFor let-vin [ngForOf]="tx['@vinLimit'] ? tx.vin.slice(0, 10) : tx.vin" [ngForTrackBy]="trackByIndexFn">
|
||||
<tr [ngClass]="assetsMinimal && vin.prevout && assetsMinimal[vin.prevout.asset] && !vin.is_coinbase && vin.prevout.scriptpubkey_address ? 'assetBox' : ''">
|
||||
<tr [ngClass]="assetsMinimal && vin.prevout && assetsMinimal[vin.prevout.asset] && !vin.is_coinbase && vin.prevout.scriptpubkey_address && tx._unblinded ? 'assetBox' : ''">
|
||||
<td class="arrow-td">
|
||||
<ng-template [ngIf]="vin.prevout === null && !vin.is_pegin" [ngIfElse]="hasPrevout">
|
||||
<span class="grey">
|
||||
@ -122,7 +122,7 @@
|
||||
<table class="table table-borderless smaller-text table-sm" id="table-tx-vout">
|
||||
<tbody>
|
||||
<ng-template ngFor let-vout let-vindex="index" [ngForOf]="tx['@voutLimit'] ? tx.vout.slice(0, 10) : tx.vout" [ngForTrackBy]="trackByIndexFn">
|
||||
<tr [ngClass]="assetsMinimal && assetsMinimal[vout.asset] && vout.scriptpubkey_address && tx.vin && !tx.vin[0].is_coinbase ? 'assetBox' : ''">
|
||||
<tr [ngClass]="assetsMinimal && assetsMinimal[vout.asset] && vout.scriptpubkey_address && tx.vin && !tx.vin[0].is_coinbase && tx._unblinded ? 'assetBox' : ''">
|
||||
<td>
|
||||
<a *ngIf="vout.scriptpubkey_address; else scriptpubkey_type" [routerLink]="['/address/' | relativeUrl, vout.scriptpubkey_address]" title="{{ vout.scriptpubkey_address }}">
|
||||
<span class="d-block d-lg-none">{{ vout.scriptpubkey_address | shortenString : 16 }}</span>
|
||||
|
@ -1583,6 +1583,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>عام</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
@ -3372,6 +3373,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>في ~ <x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">65</context>
|
||||
@ -3880,9 +3882,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>الرسوم المتوقعه</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3891,7 +3892,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4017,7 +4018,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4030,28 +4031,28 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>الفترة الحالية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
@ -4137,6 +4138,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/>دقيقه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -3739,8 +3739,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3749,7 +3749,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3865,7 +3865,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3877,27 +3877,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3875,8 +3875,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3885,7 +3885,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4009,7 +4009,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4021,27 +4021,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3885,9 +3885,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Gebührenschätzungen</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3896,7 +3895,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4022,7 +4021,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4035,29 +4034,28 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<target>Vorige: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</target>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Laufende Periode</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3572,8 +3572,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3582,7 +3582,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3695,7 +3695,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3707,27 +3707,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3885,9 +3885,9 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Estimaciones de Tasas</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Tasa de Transacción</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3896,7 +3896,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4022,7 +4022,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4035,29 +4035,29 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<target>Anterior: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</target>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Previo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Período Actual</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -1583,6 +1583,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>عمومی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
@ -1933,6 +1934,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>جزئیات مربوط به تنظیم سختی را برمیگرداند.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
@ -2050,6 +2052,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>سربرگ بلاک کد شده به صورت hex را برمیگرداند.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
@ -2841,6 +2844,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>سربرگ بلاک به صورت Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
@ -2987,6 +2991,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>بلاک<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
@ -3003,6 +3008,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>بلاک<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
@ -3242,6 +3248,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>همین الان</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
@ -3253,6 +3260,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target><x equiv-text="dateStrings.i18nYear" id="DATE"/> پیش</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
@ -3312,6 +3320,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>بعد از <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
@ -3371,6 +3380,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>در حدود <x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">65</context>
|
||||
@ -3879,8 +3889,9 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>کارمزد تراکنشها</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3889,7 +3900,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3999,6 +4010,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>تنظیم سختی بلاکها</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
@ -4007,50 +4019,55 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>باقیمانده</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,210</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>تخمین</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">217,218</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>قبلی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>دوره فعلی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> سال</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -4058,6 +4075,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> سال</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@ -4065,6 +4083,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ماه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
@ -4072,6 +4091,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ماه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
@ -4079,6 +4099,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> هفته</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -4086,6 +4107,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> هفته</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
@ -4093,6 +4115,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> روز</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
@ -4100,6 +4123,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> روز</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
@ -4107,6 +4131,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ساعت</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
@ -4114,6 +4139,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ساعت</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
@ -4121,6 +4147,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> دقیقه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -4128,6 +4155,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> دقیقه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
@ -4135,6 +4163,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ثانیه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
@ -4142,6 +4171,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target><x equiv-text="counter" id="DATE"/> ثانیه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
@ -3885,9 +3885,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Siirtokulu arviot</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3896,7 +3895,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4022,7 +4021,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4035,29 +4034,28 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<target>Edellinen:<x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/>%</target>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Nykyinen jakso</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3812,8 +3812,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3822,7 +3822,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3946,7 +3946,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3958,27 +3958,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3853,9 +3853,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>עמלה מוערכת</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3864,7 +3863,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3990,7 +3989,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4003,28 +4002,28 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>מחזור נוכחי</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3744,8 +3744,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3754,7 +3754,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3867,7 +3867,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3879,27 +3879,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3589,8 +3589,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3599,7 +3599,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3712,7 +3712,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3724,27 +3724,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3880,9 +3880,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Díj becslések</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3891,7 +3890,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4017,7 +4016,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4030,28 +4029,28 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Mostani Periódus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3876,8 +3876,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3886,7 +3886,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4010,7 +4010,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4022,27 +4022,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3875,8 +3875,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3885,7 +3885,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4009,7 +4009,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4021,27 +4021,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3727,8 +3727,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3737,7 +3737,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3861,7 +3861,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3873,27 +3873,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3885,8 +3885,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3895,7 +3895,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4019,7 +4019,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4031,27 +4031,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -1583,6 +1583,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="42b59f1f3dfde09c4c04f711307847438e057efb">
|
||||
<source>General</source>
|
||||
<target>Generell</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">9,11</context>
|
||||
@ -1933,6 +1934,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2761d0de651f1c4395e6e7fbc7fded09918f8dcb">
|
||||
<source>Returns details about difficulty adjustment.</source>
|
||||
<target>Returnerer detaljer om vanskelighetsgradjustering.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">24,26</context>
|
||||
@ -2046,6 +2048,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="2ca235ae8c14854eb6ea6d42fd2521204d3db01f">
|
||||
<source>Returns the hex-encoded block header.</source>
|
||||
<target>Returnerer den hex-enkodede blokkheaderen.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">230,233</context>
|
||||
@ -2837,6 +2840,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="cbfb79ff517493268a49acffa81ecc02336d8372">
|
||||
<source>Block Header Hex</source>
|
||||
<target>Blokkheader Hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">118,119</context>
|
||||
@ -2983,6 +2987,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="1bb6965f8e1bbe40c076528ffd841da86f57f119">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>blocks<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> blokker <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">22,23</context>
|
||||
@ -2999,6 +3004,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="b7ef3894d9b6f157c400ddc937c70c9881ecd896">
|
||||
<source><x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/>block<x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></source>
|
||||
<target> <x equiv-text="{{ i }}" id="INTERPOLATION"/> <x ctype="x-span" equiv-text="<span class="shared-block">" id="START_TAG_SPAN"/> blokk <x ctype="x-span" equiv-text="</span>" id="CLOSE_TAG_SPAN"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
@ -3238,6 +3244,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.just-now">
|
||||
<source>Just now</source>
|
||||
<target>Akkurat nå</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
@ -3249,6 +3256,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since">
|
||||
<source><x equiv-text="dateStrings.i18nYear" id="DATE"/> ago</source>
|
||||
<target> <x equiv-text="dateStrings.i18nYear" id="DATE"/> siden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
@ -3308,6 +3316,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-span">
|
||||
<source>After <x equiv-text="dateStrings.i18nYear" id="DATE"/></source>
|
||||
<target>Etter <x equiv-text="dateStrings.i18nYear" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-span/time-span.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
@ -3367,6 +3376,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>Om ~ <x equiv-text="dateStrings.i18nMinute" id="DATE"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">65</context>
|
||||
@ -3875,8 +3885,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3885,7 +3895,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3995,6 +4005,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="63da83692b85cf17e0606153029a83fd4038d6dd">
|
||||
<source>Difficulty Adjustment</source>
|
||||
<target>Vanskelighetsgradjustering</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
@ -4003,50 +4014,54 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0912816d94f2f05a7eee8f7622670e0c6bbbce16">
|
||||
<source>Remaining</source>
|
||||
<target>Gjenstående</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">208,210</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5e65ce907fc0e1a1a09d4130eb8c59d00a9457ef">
|
||||
<source>Estimate</source>
|
||||
<target>Anslag</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">217,218</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Nåværende periode</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.year">
|
||||
<source><x equiv-text="counter" id="DATE"/> year</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> år</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -4054,6 +4069,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.years">
|
||||
<source><x equiv-text="counter" id="DATE"/> years</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> år</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@ -4061,6 +4077,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.month">
|
||||
<source><x equiv-text="counter" id="DATE"/> month</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> måned</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
@ -4068,6 +4085,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.months">
|
||||
<source><x equiv-text="counter" id="DATE"/> months</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> måneder</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
@ -4075,6 +4093,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.week">
|
||||
<source><x equiv-text="counter" id="DATE"/> week</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> uke</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -4082,6 +4101,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.weeks">
|
||||
<source><x equiv-text="counter" id="DATE"/> weeks</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> uker</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
@ -4089,6 +4109,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.day">
|
||||
<source><x equiv-text="counter" id="DATE"/> day</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> dag</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
@ -4096,6 +4117,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.days">
|
||||
<source><x equiv-text="counter" id="DATE"/> days</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> dager</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
@ -4103,6 +4125,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hour">
|
||||
<source><x equiv-text="counter" id="DATE"/> hour</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> time</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
@ -4110,6 +4133,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.hours">
|
||||
<source><x equiv-text="counter" id="DATE"/> hours</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> timer</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
@ -4117,6 +4141,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> minutt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -4124,6 +4149,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minutes">
|
||||
<source><x equiv-text="counter" id="DATE"/> minutes</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> minutter</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
@ -4131,6 +4157,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.second">
|
||||
<source><x equiv-text="counter" id="DATE"/> second</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> sekund</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
@ -4138,6 +4165,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.seconds">
|
||||
<source><x equiv-text="counter" id="DATE"/> seconds</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/> sekunder</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
|
@ -3872,8 +3872,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3882,7 +3882,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4006,7 +4006,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4018,27 +4018,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3875,8 +3875,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3885,7 +3885,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4009,7 +4009,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4021,27 +4021,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3885,9 +3885,9 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Estimativa de Taxas</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Taxa de Transação</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3896,7 +3896,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4022,7 +4022,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4035,29 +4035,29 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<target>Anterior: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</target>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Anterior</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Período Atual</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3879,8 +3879,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3889,7 +3889,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4013,7 +4013,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4025,27 +4025,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3880,9 +3880,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Ocena omrežnine</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3891,7 +3890,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4017,7 +4016,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4030,28 +4029,28 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Trenutno obdobje</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3885,9 +3885,9 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>Avgiftsestimat</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>Transaktionsavgifter</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3896,7 +3896,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4022,7 +4022,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4035,29 +4035,29 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<target>Föregående: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/> <x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/>%</target>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>Föregående</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>Nuvarande period</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3876,8 +3876,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3886,7 +3886,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4010,7 +4010,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4022,27 +4022,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3867,8 +3867,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3877,7 +3877,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4001,7 +4001,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4013,27 +4013,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3872,8 +3872,8 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3882,7 +3882,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -4006,7 +4006,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -4018,27 +4018,27 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
|
@ -3301,6 +3301,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-until">
|
||||
<source>In ~<x equiv-text="dateStrings.i18nMinute" id="DATE"/></source>
|
||||
<target>~<x equiv-text="dateStrings.i18nMinute" id="DATE"/>后</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-until/time-until.component.ts</context>
|
||||
<context context-type="linenumber">65</context>
|
||||
@ -3801,9 +3802,9 @@
|
||||
<note from="description" priority="1">TX Fee Rating is Warning</note>
|
||||
<note from="meaning" priority="1">tx-fee-rating.overpaid.warning</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="4a2866b06cff4db4aea54b19836652dfd45e30aa">
|
||||
<source>Fee Estimates</source>
|
||||
<target>费用估算</target>
|
||||
<trans-unit datatype="html" id="86d26b45470e43b409e589517922276109138e87">
|
||||
<source>Transaction Fees</source>
|
||||
<target>交易费用</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -3812,7 +3813,7 @@
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">33,36</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">fees-box.fee-estimates</note>
|
||||
<note from="description" priority="1">fees-box.transaction-fees</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="e1139ea570985b3f114e18876f09fd7223429983">
|
||||
<source>Latest blocks</source>
|
||||
@ -3938,7 +3939,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">238,241</context>
|
||||
<context context-type="linenumber">255,258</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.remaining</note>
|
||||
</trans-unit>
|
||||
@ -3951,28 +3952,29 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">245,248</context>
|
||||
<context context-type="linenumber">262,265</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.estimate</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="983c4c0b344f9233566599573cb1200a8b6073a7">
|
||||
<source>Previous: <x equiv-text="{{epochData.previousRetarget > 0 ? '+' : ''}}" id="INTERPOLATION"/><x equiv-text="{{ epochData.previousRetarget | number: '1.2-2' }}" id="INTERPOLATION_1"/> %</source>
|
||||
<trans-unit datatype="html" id="680d5c75b7fd8d37961083608b9fcdc4167b4c43">
|
||||
<source>Previous</source>
|
||||
<target>前一段</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">219,220</context>
|
||||
<context context-type="linenumber">228,229</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.previous-retarget</note>
|
||||
<note from="description" priority="1">difficulty-box.previous</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="5db469cd0357e5f578b85a996f7e99c9e4148ff5">
|
||||
<source>Current Period</source>
|
||||
<target>本期</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">222,223</context>
|
||||
<context context-type="linenumber">239,240</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">252,255</context>
|
||||
<context context-type="linenumber">269,272</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">difficulty-box.current-period</note>
|
||||
</trans-unit>
|
||||
@ -4058,6 +4060,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="date-base.minute">
|
||||
<source><x equiv-text="counter" id="DATE"/> minute</source>
|
||||
<target> <x equiv-text="counter" id="DATE"/>分钟</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/i18n/dates.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
|
@ -18,6 +18,7 @@ do
|
||||
--bin electrs \
|
||||
-- \
|
||||
-vvv \
|
||||
--asset-db-path "$HOME/asset_registry_db" \
|
||||
--address-search \
|
||||
--cors '*' \
|
||||
--network liquid \
|
||||
|
Loading…
x
Reference in New Issue
Block a user