Merge branch 'master' into simon/angular-universal
* master: (42 commits) i18n: Added missing Bisq translations. Minor missing space and character fixes. add missing 'sat/vb' string for i18n i18n: Removed CR from "In X minutes" translation i18n: Updated strings for "x confirmations", "x transactions", "x blocks" and "block ETA". Peg-out, and bisq headers. Update translation strings from Transifex Enable 'ka' locale for Georgian Update translation strings from Transifex Disable Vietnamese locale 'vi' until translations are completed Update translation strings from Transifex add 'sat' string for i18n Update translation strings from Transifex Update translation strings from Transifex i18n update Remove extra garbage characters from OP_RETURN tooltip. fixes #254 Fix for changing locale on other networks than mainnet. fixes #253 i18n: Asset search box Update translation strings from Transifex i18n: Added X of X transaction. Flipped collapse/expand i18n: Added "miner identification" and updated "navigate to sponsor" Update translations from Transifex ... # Conflicts: # frontend/src/app/components/app/app.component.ts # frontend/src/app/components/mempool-block/mempool-block.component.ts
This commit is contained in:
@@ -7,13 +7,17 @@
|
||||
</div>
|
||||
<div class="block-body">
|
||||
<div class="fees">
|
||||
~{{ block.medianFee | number:'1.0-0' }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</span>
|
||||
~{{ block.medianFee | number:'1.0-0' }} <ng-container i18n="shared.sat-vbyte|sat/vB">sat/vB</ng-container>
|
||||
</div>
|
||||
<div class="fee-span">
|
||||
{{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</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">{{ block.size | bytes: 2 }}</div>
|
||||
<div class="transaction-count">{{ block.tx_count | number }} <ng-template [ngIf]="block.tx_count === 1" i18n="shared.transaction">transaction</ng-template><ng-template [ngIf]="block.tx_count !== 1" i18n="shared.transactions">transactions</ng-template></div>
|
||||
<div class="transaction-count">
|
||||
<ng-container *ngTemplateOutlet="block.tx_count === 1 ? transactionsSingular : transactionsPlural; context: {$implicit: block.tx_count | number}"></ng-container>
|
||||
<ng-template #transactionsSingular let-i i18n="shared.transaction-count.singular">{{ i }} transaction</ng-template>
|
||||
<ng-template #transactionsPlural let-i i18n="shared.transaction-count.plural">{{ i }} transactions</ng-template>
|
||||
</div>
|
||||
<div class="time-difference"><app-time-since [time]="block.timestamp" [fastRender]="true"></app-time-since></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user