Merge branch 'master' into simon/fiat-space-fix
This commit is contained in:
commit
ca690bf123
@ -220,18 +220,17 @@ class BitcoinRoutes {
|
||||
let cpfpInfo;
|
||||
if (config.DATABASE.ENABLED) {
|
||||
cpfpInfo = await transactionRepository.$getCpfpInfo(req.params.txId);
|
||||
}
|
||||
if (cpfpInfo) {
|
||||
res.json(cpfpInfo);
|
||||
return;
|
||||
} else {
|
||||
res.json({
|
||||
ancestors: []
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (cpfpInfo) {
|
||||
res.json(cpfpInfo);
|
||||
return;
|
||||
}
|
||||
}
|
||||
res.status(404).send(`Transaction has no CPFP info available.`);
|
||||
}
|
||||
|
||||
private getBackendInfo(req: Request, res: Response) {
|
||||
@ -652,7 +651,7 @@ class BitcoinRoutes {
|
||||
if (result) {
|
||||
res.json(result);
|
||||
} else {
|
||||
res.status(404).send('not found');
|
||||
res.status(204).send();
|
||||
}
|
||||
} catch (e) {
|
||||
res.status(500).send(e instanceof Error ? e.message : e);
|
||||
|
||||
@ -175,6 +175,7 @@ export class Common {
|
||||
case '1y': return '1 YEAR';
|
||||
case '2y': return '2 YEAR';
|
||||
case '3y': return '3 YEAR';
|
||||
case '4y': return '4 YEAR';
|
||||
default: return null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -263,7 +263,7 @@ class MiningRoutes {
|
||||
const audit = await BlocksAuditsRepository.$getBlockAudit(req.params.hash);
|
||||
|
||||
if (!audit) {
|
||||
res.status(404).send(`This block has not been audited.`);
|
||||
res.status(204).send(`This block has not been audited.`);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@ -568,6 +568,7 @@ class Mining {
|
||||
|
||||
private getTimeRange(interval: string | null, scale = 1): number {
|
||||
switch (interval) {
|
||||
case '4y': return 43200 * scale; // 12h
|
||||
case '3y': return 43200 * scale; // 12h
|
||||
case '2y': return 28800 * scale; // 8h
|
||||
case '1y': return 28800 * scale; // 8h
|
||||
|
||||
@ -375,6 +375,17 @@ class StatisticsApi {
|
||||
}
|
||||
}
|
||||
|
||||
public async $list4Y(): Promise<OptimizedStatistic[]> {
|
||||
try {
|
||||
const query = this.getQueryForDays(43200, '4 YEAR'); // 12h interval
|
||||
const [rows] = await DB.query({ sql: query, timeout: this.queryTimeout });
|
||||
return this.mapStatisticToOptimizedStatistic(rows as Statistic[]);
|
||||
} catch (e) {
|
||||
logger.err('$list4Y() error' + (e instanceof Error ? e.message : e));
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
private mapStatisticToOptimizedStatistic(statistic: Statistic[]): OptimizedStatistic[] {
|
||||
return statistic.map((s) => {
|
||||
return {
|
||||
|
||||
@ -14,10 +14,11 @@ class StatisticsRoutes {
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'statistics/1y', this.$getStatisticsByTime.bind(this, '1y'))
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'statistics/2y', this.$getStatisticsByTime.bind(this, '2y'))
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'statistics/3y', this.$getStatisticsByTime.bind(this, '3y'))
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'statistics/4y', this.$getStatisticsByTime.bind(this, '4y'))
|
||||
;
|
||||
}
|
||||
|
||||
private async $getStatisticsByTime(time: '2h' | '24h' | '1w' | '1m' | '3m' | '6m' | '1y' | '2y' | '3y', req: Request, res: Response) {
|
||||
private async $getStatisticsByTime(time: '2h' | '24h' | '1w' | '1m' | '3m' | '6m' | '1y' | '2y' | '3y' | '4y', req: Request, res: Response) {
|
||||
res.header('Pragma', 'public');
|
||||
res.header('Cache-control', 'public');
|
||||
res.setHeader('Expires', new Date(Date.now() + 1000 * 300).toUTCString());
|
||||
@ -54,6 +55,9 @@ class StatisticsRoutes {
|
||||
case '3y':
|
||||
result = await statisticsApi.$list3Y();
|
||||
break;
|
||||
case '4y':
|
||||
result = await statisticsApi.$list4Y();
|
||||
break;
|
||||
default:
|
||||
result = await statisticsApi.$list2H();
|
||||
}
|
||||
|
||||
@ -748,6 +748,7 @@ class BlocksRepository {
|
||||
SELECT height
|
||||
FROM compact_cpfp_clusters
|
||||
WHERE height <= ? AND height >= ?
|
||||
GROUP BY height
|
||||
ORDER BY height DESC;
|
||||
`, [currentBlockHeight, minHeight]);
|
||||
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
"ADVANCED_GBT_AUDIT": __MEMPOOL_ADVANCED_GBT_AUDIT__,
|
||||
"ADVANCED_GBT_MEMPOOL": __MEMPOOL_ADVANCED_GBT_MEMPOOL__,
|
||||
"CPFP_INDEXING": __MEMPOOL_CPFP_INDEXING__,
|
||||
"MAX_BLOCKS_BULK_QUERY": __MEMPOOL__MAX_BLOCKS_BULK_QUERY__
|
||||
"MAX_BLOCKS_BULK_QUERY": __MEMPOOL_MAX_BLOCKS_BULK_QUERY__
|
||||
},
|
||||
"CORE_RPC": {
|
||||
"HOST": "__CORE_RPC_HOST__",
|
||||
@ -108,4 +108,4 @@
|
||||
"BISQ_URL": "__EXTERNAL_DATA_SERVER_BISQ_URL__",
|
||||
"BISQ_ONION": "__EXTERNAL_DATA_SERVER_BISQ_ONION__"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -54,31 +54,6 @@
|
||||
max-height: 270px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.5;
|
||||
|
||||
@ -54,31 +54,6 @@
|
||||
max-height: 270px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.5;
|
||||
|
||||
@ -54,31 +54,6 @@
|
||||
max-height: 270px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.5;
|
||||
|
||||
@ -54,31 +54,6 @@
|
||||
max-height: 270px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 1130px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 1130px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.disabled {
|
||||
pointer-events: none;
|
||||
opacity: 0.5;
|
||||
|
||||
@ -1,10 +1,9 @@
|
||||
<div *ngIf="stateService.env.MINING_DASHBOARD || stateService.env.LIGHTNING" class="mb-3 d-flex menu"
|
||||
style="padding: 0px 35px;">
|
||||
<div *ngIf="stateService.env.MINING_DASHBOARD || stateService.env.LIGHTNING" class="mb-3 d-flex menu">
|
||||
|
||||
<a routerLinkActive="active" class="btn btn-primary mr-1" [class]="padding"
|
||||
<a routerLinkActive="active" class="btn btn-primary" [class]="padding"
|
||||
[routerLink]="['/graphs/mempool' | relativeUrl]">Mempool</a>
|
||||
|
||||
<div ngbDropdown class="mr-1" [class]="padding" *ngIf="stateService.env.MINING_DASHBOARD">
|
||||
<div ngbDropdown [class]="padding" *ngIf="stateService.env.MINING_DASHBOARD">
|
||||
<button class="btn btn-primary w-100" id="dropdownBasic1" ngbDropdownToggle i18n="mining">Mining</button>
|
||||
<div ngbDropdownMenu aria-labelledby="dropdownBasic1">
|
||||
<a class="dropdown-item" routerLinkActive="active" [routerLink]="['/graphs/mining/pools' | relativeUrl]"
|
||||
|
||||
@ -1,6 +1,15 @@
|
||||
.menu {
|
||||
flex-grow: 1;
|
||||
padding: 0 35px;
|
||||
@media (min-width: 576px) {
|
||||
max-width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
& > * {
|
||||
margin: 0;
|
||||
margin-inline-end: 0.25rem;
|
||||
&.last-child {
|
||||
margin-inline-end: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -54,31 +54,6 @@
|
||||
height: 240px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pool-distribution {
|
||||
min-height: 56px;
|
||||
display: block;
|
||||
|
||||
@ -48,31 +48,6 @@
|
||||
max-height: 293px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.loadingGraphs {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
|
||||
@ -33,31 +33,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-padding {
|
||||
@media (max-width: 992px) {
|
||||
padding-bottom: 65px
|
||||
|
||||
@ -49,6 +49,9 @@
|
||||
<label class="btn btn-primary btn-sm" [class.active]="radioGroupForm.get('dateSpan').value === '3y'">
|
||||
<input type="radio" [value]="'3y'" [routerLink]="['/graphs' | relativeUrl]" fragment="3y" formControlName="dateSpan"> 3Y
|
||||
</label>
|
||||
<label class="btn btn-primary btn-sm" [class.active]="radioGroupForm.get('dateSpan').value === '4y'">
|
||||
<input type="radio" [value]="'4y'" [routerLink]="['/graphs' | relativeUrl]" fragment="4y" formControlName="dateSpan"> 4Y
|
||||
</label>
|
||||
</div>
|
||||
<div class="small-buttons">
|
||||
<div ngbDropdown #myDrop="ngbDropdown">
|
||||
|
||||
@ -70,7 +70,7 @@ export class StatisticsComponent implements OnInit {
|
||||
this.route
|
||||
.fragment
|
||||
.subscribe((fragment) => {
|
||||
if (['2h', '24h', '1w', '1m', '3m', '6m', '1y', '2y', '3y'].indexOf(fragment) > -1) {
|
||||
if (['2h', '24h', '1w', '1m', '3m', '6m', '1y', '2y', '3y', '4y'].indexOf(fragment) > -1) {
|
||||
this.radioGroupForm.controls.dateSpan.setValue(fragment, { emitEvent: false });
|
||||
}
|
||||
});
|
||||
@ -109,7 +109,10 @@ export class StatisticsComponent implements OnInit {
|
||||
if (this.radioGroupForm.controls.dateSpan.value === '2y') {
|
||||
return this.apiService.list2YStatistics$();
|
||||
}
|
||||
return this.apiService.list3YStatistics$();
|
||||
if (this.radioGroupForm.controls.dateSpan.value === '3y') {
|
||||
return this.apiService.list3YStatistics$();
|
||||
}
|
||||
return this.apiService.list4YStatistics$();
|
||||
})
|
||||
)
|
||||
.subscribe((mempoolStats: any) => {
|
||||
@ -181,7 +184,7 @@ export class StatisticsComponent implements OnInit {
|
||||
}
|
||||
|
||||
let capRatio = 10;
|
||||
if (['1m', '3m', '6m', '1y', '2y', '3y'].includes(this.graphWindowPreference)) {
|
||||
if (['1m', '3m', '6m', '1y', '2y', '3y', '4y'].includes(this.graphWindowPreference)) {
|
||||
capRatio = 4;
|
||||
}
|
||||
|
||||
|
||||
@ -25,6 +25,12 @@
|
||||
</defs>
|
||||
</svg>
|
||||
</ng-container>
|
||||
<ng-container *ngSwitchCase="'warning'">
|
||||
<svg [class]="class" [style]="style" [attr.width]="width" [attr.height]="height" [attr.viewBox]="viewBox" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M135.3 34.474c-15.62 27.306-54.206 95.63-85.21 150.534L9.075 257.583C5.382 264.08 6.76 269.217 7.908 271.7c2.326 5.028 7.29 7.537 11.155 8.215l.78.133 264.698.006-.554-.02c4.152.255 9.664-1.24 12.677-6.194 1.926-3.18 3.31-8.589-1.073-16.278L213.637 114.37l-45.351-79.205c-5.681-9.932-12.272-12.022-16.8-12.022-4.42 0-10.818 1.964-16.181 11.331h-.006zm-69.072 159.94c30.997-54.885 69.563-123.184 85.16-150.446l.186-.297c.2.303.393.582.618.981l45.363 79.22s72.377 126.47 78.569 137.283l-247.618-.007 37.719-66.734" style="fill:#ffc107;fill-opacity:1"/>
|
||||
<path d="M152.597 247.445c8.02 0 14.518-6.728 14.518-15.025 0-8.29-6.499-15.018-14.518-15.018-8.031 0-14.529 6.728-14.529 15.018 0 8.297 6.498 15.025 14.53 15.025m-.001-147.18c11.586 0 22.23 10.958 20.977 21.7l-9.922 75.564c-.966 6.601-4.95 11.433-11.055 11.433s-10.102-4.832-11.056-11.433l-9.927-75.564c-1.26-10.742 9.39-21.7 20.983-21.7" style="fill:#ffc107;fill-opacity:1"/>
|
||||
</svg>
|
||||
</ng-container>
|
||||
<ng-container *ngSwitchCase="'mempoolSpace'">
|
||||
<svg [class]="class" [style]="style" [attr.width]="width" [attr.height]="height" [attr.viewBox]="viewBox" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M 219.548 86.198 L 219.548 63.833 C 219.548 60.359 218.746 57.686 217.163 55.919 C 215.601 54.151 213.237 53.267 210.195 53.267 C 206.762 53.267 203.946 54.377 202.013 56.453 C 200.081 58.55 199.053 61.633 199.053 65.395 L 199.053 86.219 L 191.447 86.219 L 191.447 63.833 C 191.447 56.823 188.282 53.267 182.032 53.267 C 178.6 53.267 175.783 54.377 173.851 56.453 C 171.919 58.55 170.891 61.633 170.891 65.395 L 170.891 86.219 L 163.285 86.219 L 163.285 46.422 L 170.685 46.422 L 170.685 50.759 C 173.687 47.799 178.003 46.175 182.999 46.175 C 188.96 46.175 193.667 48.498 196.36 52.753 C 199.608 48.559 204.85 46.175 210.955 46.175 C 215.93 46.175 219.877 47.614 222.693 50.43 C 225.632 53.39 227.174 57.871 227.154 63.36 L 227.154 86.198 L 219.548 86.198 Z" fill="white"/>
|
||||
@ -104,4 +110,4 @@
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</ng-template>
|
||||
</ng-template>
|
||||
|
||||
@ -13,4 +13,5 @@ export class SvgImagesComponent {
|
||||
@Input() width: string;
|
||||
@Input() height: string;
|
||||
@Input() viewBox: string;
|
||||
@Input() fill: string;
|
||||
}
|
||||
|
||||
@ -210,6 +210,7 @@
|
||||
<div class="graph-container" #graphContainer>
|
||||
<tx-bowtie-graph
|
||||
[tx]="tx"
|
||||
[cached]="isCached"
|
||||
[width]="graphWidth"
|
||||
[height]="graphHeight"
|
||||
[lineLimit]="inOutLimit"
|
||||
@ -250,7 +251,7 @@
|
||||
</div>
|
||||
|
||||
|
||||
<app-transactions-list #txList [transactions]="[tx]" [errorUnblinded]="errorUnblinded" [inputIndex]="inputIndex" [outputIndex]="outputIndex" [transactionPage]="true"></app-transactions-list>
|
||||
<app-transactions-list #txList [transactions]="[tx]" [cached]="isCached" [errorUnblinded]="errorUnblinded" [inputIndex]="inputIndex" [outputIndex]="outputIndex" [transactionPage]="true"></app-transactions-list>
|
||||
|
||||
<div class="title text-left">
|
||||
<h2 i18n="transaction.details">Details</h2>
|
||||
|
||||
@ -57,6 +57,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
fetchCpfp$ = new Subject<string>();
|
||||
fetchRbfHistory$ = new Subject<string>();
|
||||
fetchCachedTx$ = new Subject<string>();
|
||||
isCached: boolean = false;
|
||||
now = new Date().getTime();
|
||||
timeAvg$: Observable<number>;
|
||||
liquidUnblinding = new LiquidUnblinding();
|
||||
@ -196,6 +197,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
}
|
||||
|
||||
this.tx = tx;
|
||||
this.isCached = true;
|
||||
if (tx.fee === undefined) {
|
||||
this.tx.fee = 0;
|
||||
}
|
||||
@ -289,6 +291,7 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
}
|
||||
|
||||
this.tx = tx;
|
||||
this.isCached = false;
|
||||
if (tx.fee === undefined) {
|
||||
this.tx.fee = 0;
|
||||
}
|
||||
@ -362,7 +365,6 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
this.waitingForTransaction = false;
|
||||
}
|
||||
this.rbfTransaction = rbfTransaction;
|
||||
this.cacheService.setTxCache([this.rbfTransaction]);
|
||||
this.replaced = true;
|
||||
if (rbfTransaction && !this.tx) {
|
||||
this.fetchCachedTx$.next(this.txId);
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { Component, OnInit, Input, ChangeDetectionStrategy, OnChanges, Output, EventEmitter, ChangeDetectorRef } from '@angular/core';
|
||||
import { StateService } from '../../services/state.service';
|
||||
import { CacheService } from '../../services/cache.service';
|
||||
import { Observable, ReplaySubject, BehaviorSubject, merge, Subscription } from 'rxjs';
|
||||
import { Observable, ReplaySubject, BehaviorSubject, merge, Subscription, of } from 'rxjs';
|
||||
import { Outspend, Transaction, Vin, Vout } from '../../interfaces/electrs.interface';
|
||||
import { ElectrsApiService } from '../../services/electrs-api.service';
|
||||
import { environment } from '../../../environments/environment';
|
||||
@ -23,6 +23,7 @@ export class TransactionsListComponent implements OnInit, OnChanges {
|
||||
showMoreIncrement = 1000;
|
||||
|
||||
@Input() transactions: Transaction[];
|
||||
@Input() cached: boolean = false;
|
||||
@Input() showConfirmations = false;
|
||||
@Input() transactionPage = false;
|
||||
@Input() errorUnblinded = false;
|
||||
@ -67,7 +68,13 @@ export class TransactionsListComponent implements OnInit, OnChanges {
|
||||
this.outspendsSubscription = merge(
|
||||
this.refreshOutspends$
|
||||
.pipe(
|
||||
switchMap((txIds) => this.apiService.getOutspendsBatched$(txIds)),
|
||||
switchMap((txIds) => {
|
||||
if (!this.cached) {
|
||||
return this.apiService.getOutspendsBatched$(txIds);
|
||||
} else {
|
||||
return of([]);
|
||||
}
|
||||
}),
|
||||
tap((outspends: Outspend[][]) => {
|
||||
if (!this.transactions) {
|
||||
return;
|
||||
@ -155,7 +162,7 @@ export class TransactionsListComponent implements OnInit, OnChanges {
|
||||
).subscribe();
|
||||
});
|
||||
const txIds = this.transactions.filter((tx) => !tx._outspends).map((tx) => tx.txid);
|
||||
if (txIds.length) {
|
||||
if (txIds.length && !this.cached) {
|
||||
this.refreshOutspends$.next(txIds);
|
||||
}
|
||||
if (this.stateService.env.LIGHTNING) {
|
||||
|
||||
@ -2,7 +2,7 @@ import { Component, OnInit, Input, OnChanges, HostListener, Inject, LOCALE_ID }
|
||||
import { StateService } from '../../services/state.service';
|
||||
import { Outspend, Transaction } from '../../interfaces/electrs.interface';
|
||||
import { Router } from '@angular/router';
|
||||
import { ReplaySubject, merge, Subscription } from 'rxjs';
|
||||
import { ReplaySubject, merge, Subscription, of } from 'rxjs';
|
||||
import { tap, switchMap } from 'rxjs/operators';
|
||||
import { ApiService } from '../../services/api.service';
|
||||
import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe';
|
||||
@ -40,6 +40,7 @@ interface Xput {
|
||||
export class TxBowtieGraphComponent implements OnInit, OnChanges {
|
||||
@Input() tx: Transaction;
|
||||
@Input() network: string;
|
||||
@Input() cached: boolean = false;
|
||||
@Input() width = 1200;
|
||||
@Input() height = 600;
|
||||
@Input() lineLimit = 250;
|
||||
@ -107,7 +108,13 @@ export class TxBowtieGraphComponent implements OnInit, OnChanges {
|
||||
this.outspendsSubscription = merge(
|
||||
this.refreshOutspends$
|
||||
.pipe(
|
||||
switchMap((txid) => this.apiService.getOutspendsBatched$([txid])),
|
||||
switchMap((txid) => {
|
||||
if (!this.cached) {
|
||||
return this.apiService.getOutspendsBatched$([txid]);
|
||||
} else {
|
||||
return of(null);
|
||||
}
|
||||
}),
|
||||
tap((outspends: Outspend[][]) => {
|
||||
if (!this.tx || !outspends || !outspends.length) {
|
||||
return;
|
||||
@ -132,7 +139,9 @@ export class TxBowtieGraphComponent implements OnInit, OnChanges {
|
||||
|
||||
ngOnChanges(): void {
|
||||
this.initGraph();
|
||||
this.refreshOutspends$.next(this.tx.txid);
|
||||
if (!this.cached) {
|
||||
this.refreshOutspends$.next(this.tx.txid);
|
||||
}
|
||||
}
|
||||
|
||||
initGraph(): void {
|
||||
|
||||
@ -10,7 +10,8 @@
|
||||
<div class="doc-content">
|
||||
|
||||
<div id="disclaimer">
|
||||
<table><tr><td><svg viewBox="0 0 304 304" xmlns="http://www.w3.org/2000/svg"><g fill-rule="evenodd" style="fill:#ffc107;fill-opacity:1"><path d="M135.3 34.474c-15.62 27.306-54.206 95.63-85.21 150.534L9.075 257.583C5.382 264.08 6.76 269.217 7.908 271.7c2.326 5.028 7.29 7.537 11.155 8.215l.78.133 264.698.006-.554-.02c4.152.255 9.664-1.24 12.677-6.194 1.926-3.18 3.31-8.589-1.073-16.278L213.637 114.37l-45.351-79.205c-5.681-9.932-12.272-12.022-16.8-12.022-4.42 0-10.818 1.964-16.181 11.331h-.006zm-69.072 159.94c30.997-54.885 69.563-123.184 85.16-150.446l.186-.297c.2.303.393.582.618.981l45.363 79.22s72.377 126.47 78.569 137.283l-247.618-.007 37.719-66.734" style="fill:#ffc107;fill-opacity:1"/><path d="M152.597 247.445c8.02 0 14.518-6.728 14.518-15.025 0-8.29-6.499-15.018-14.518-15.018-8.031 0-14.529 6.728-14.529 15.018 0 8.297 6.498 15.025 14.53 15.025m-.001-147.18c11.586 0 22.23 10.958 20.977 21.7l-9.922 75.564c-.966 6.601-4.95 11.433-11.055 11.433s-10.102-4.832-11.056-11.433l-9.927-75.564c-1.26-10.742 9.39-21.7 20.983-21.7" style="fill:#ffc107;fill-opacity:1"/></g></svg></td><td><p i18n="faq.big-disclaimer"><b>mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with retrieving funds, confirming your transaction quicker, etc.</p><p>For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).</p></td></tr></table>
|
||||
<table *ngIf="!mobileViewport"><tr><td><app-svg-images name="warning" class="disclaimer-warning" viewBox="0 0 304 304" fill="#ffc107" width="50" height="50"></app-svg-images></td><td><p i18n="faq.big-disclaimer"><b>mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with retrieving funds, confirming your transaction quicker, etc.</p><p>For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).</p></td></tr></table>
|
||||
<div *ngIf="mobileViewport"><app-svg-images name="warning" class="disclaimer-warning" viewBox="0 0 304 304" fill="#ffc107" width="50" height="50"></app-svg-images><p i18n="faq.big-disclaimer"><b>mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with retrieving funds, confirming your transaction quicker, etc.</p><p>For any such requests, you need to get in touch with the entity that helped make the transaction (wallet software, exchange company, etc).</p></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@ -274,10 +274,8 @@ h3 {
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
#disclaimer svg {
|
||||
width: 50px;
|
||||
height: auto;
|
||||
margin-right: 32px;
|
||||
.disclaimer-warning {
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
#disclaimer p:last-child {
|
||||
@ -294,6 +292,12 @@ h3 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.disclaimer-warning {
|
||||
display: block;
|
||||
margin: 2px auto 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.doc-content {
|
||||
width: 100%;
|
||||
float: unset;
|
||||
@ -332,6 +336,10 @@ h3 {
|
||||
.doc-welcome-note {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
#disclaimer table {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
|
||||
@ -29,6 +29,7 @@ export class ApiDocsComponent implements OnInit, AfterViewInit {
|
||||
screenWidth: number;
|
||||
officialMempoolInstance: boolean;
|
||||
auditEnabled: boolean;
|
||||
mobileViewport: boolean = false;
|
||||
|
||||
@ViewChildren(FaqTemplateDirective) faqTemplates: QueryList<FaqTemplateDirective>;
|
||||
dict = {};
|
||||
@ -43,6 +44,7 @@ export class ApiDocsComponent implements OnInit, AfterViewInit {
|
||||
this.faqTemplates.forEach((x) => this.dict[x.type] = x.template);
|
||||
}
|
||||
this.desktopDocsNavPosition = ( window.pageYOffset > 182 ) ? "fixed" : "relative";
|
||||
this.mobileViewport = window.innerWidth <= 992;
|
||||
}
|
||||
|
||||
ngAfterViewInit() {
|
||||
|
||||
@ -78,5 +78,5 @@ h3 {
|
||||
|
||||
.details-button {
|
||||
align-self: center;
|
||||
margin-left: auto;
|
||||
margin-inline-start: auto;
|
||||
}
|
||||
|
||||
@ -19,6 +19,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
:host-context(.rtl-layout) .formRadioGroup {
|
||||
direction: ltr;
|
||||
@media (min-width: 435px) {
|
||||
right: unset;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-group {
|
||||
@media (max-width: 435px) {
|
||||
flex-grow: 1;
|
||||
|
||||
@ -92,7 +92,7 @@
|
||||
</ng-template>
|
||||
<input type="text" class="form-control" aria-label="Text input with dropdown button"
|
||||
[value]="node.socketsObject[selectedSocketIndex].socket">
|
||||
<button class="btn btn-secondary ml-1" type="button" id="inputGroupFileAddon04" (mouseover)="qrCodeVisible[i] = 1"
|
||||
<button class="btn btn-secondary" type="button" id="inputGroupFileAddon04" (mouseover)="qrCodeVisible[i] = 1"
|
||||
(mouseout)="qrCodeVisible[i] = 0">
|
||||
<fa-icon [icon]="['fas', 'qrcode']" [fixedWidth]="true"></fa-icon>
|
||||
<div class="qr-wrapper" [hidden]="!qrCodeVisible[i]">
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-left: 15px;
|
||||
margin-inline-start: 15px;
|
||||
}
|
||||
|
||||
.qr-wrapper {
|
||||
@ -57,3 +57,17 @@ h1 {
|
||||
.description-text {
|
||||
white-space: break-spaces;
|
||||
}
|
||||
|
||||
.timestamp-first .input-group {
|
||||
input {
|
||||
margin-inline-end: .25rem;
|
||||
}
|
||||
}
|
||||
|
||||
:host-context(.rtl-layout) {
|
||||
.timestamp-first .input-group {
|
||||
button {
|
||||
margin-inline-end: .25rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -57,7 +57,7 @@
|
||||
</tr>
|
||||
<tr *ngIf="(avgChannelDistance$ | async) as avgDistance;">
|
||||
<td i18n="lightning.avg-distance" class="text-truncate">Avg channel distance</td>
|
||||
<td>{{ avgDistance | number : '1.0-0' }} <span class="symbol">km</span> <span class="separator">/</span> {{ kmToMiles(avgDistance) | number : '1.0-0' }} <span class="symbol">mi</span></td>
|
||||
<td class="direction-ltr">{{ avgDistance | number : '1.0-0' }} <span class="symbol">km</span> <span class="separator">/</span> {{ kmToMiles(avgDistance) | number : '1.0-0' }} <span class="symbol">mi</span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -53,31 +53,6 @@
|
||||
height: 145px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pool-distribution {
|
||||
min-height: 56px;
|
||||
display: block;
|
||||
|
||||
@ -34,31 +34,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-padding {
|
||||
@media (max-width: 992px) {
|
||||
padding-bottom: 65px
|
||||
|
||||
@ -53,31 +53,6 @@
|
||||
height: 145px;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pool-distribution {
|
||||
min-height: 56px;
|
||||
display: block;
|
||||
|
||||
@ -68,6 +68,10 @@ export class ApiService {
|
||||
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/statistics/3y');
|
||||
}
|
||||
|
||||
list4YStatistics$(): Observable<OptimizedMempoolStats[]> {
|
||||
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/statistics/4y');
|
||||
}
|
||||
|
||||
getTransactionTimes$(txIds: string[]): Observable<number[]> {
|
||||
let params = new HttpParams();
|
||||
txIds.forEach((txId: string) => {
|
||||
|
||||
@ -21,6 +21,7 @@ export const formatterXAxis = (
|
||||
return date.toLocaleTimeString(locale, { month: 'long', day: 'numeric', hour: 'numeric', minute: 'numeric' });
|
||||
case '2y':
|
||||
case '3y':
|
||||
case '4y':
|
||||
case 'all':
|
||||
return date.toLocaleDateString(locale, { year: 'numeric', month: 'long', day: 'numeric' });
|
||||
}
|
||||
@ -45,6 +46,7 @@ export const formatterXAxisLabel = (
|
||||
case '1y':
|
||||
case '2y':
|
||||
case '3y':
|
||||
case '4y':
|
||||
return null;
|
||||
}
|
||||
};
|
||||
@ -71,6 +73,7 @@ export const formatterXAxisTimeCategory = (
|
||||
return date.toLocaleDateString(locale, { year: 'numeric', month: 'short', day: 'numeric' });
|
||||
case '2y':
|
||||
case '3y':
|
||||
case '4y':
|
||||
case 'all':
|
||||
return date.toLocaleDateString(locale, { year: 'numeric', month: 'long' });
|
||||
}
|
||||
|
||||
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>الميم بول و مستكشف سلسلة الكتل خاص لمجتمع البتكوين ، يركز على سوق رسوم المعاملات للأنظمة متعددة الطبقات ، مستضاف ذاتيًا تمامًا دون الثقة بأي جهات خارجية.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>رعاة المشروع 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>رعاة من المجتمع ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>تكاملات (Integrations) مجتمعية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>التحالفات المجتمعية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>مترجمو المشروع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>المساهمون في المشروع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>أعضاء المشروع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>فريق صيانة المشروع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>حول</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,6 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>انتقل إلى "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4613,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4629,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5368,7 +5365,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5486,7 +5483,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5503,7 +5500,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5520,7 +5517,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5541,7 +5538,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5554,7 +5551,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5588,6 +5585,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5624,11 +5625,11 @@
|
||||
<target>قناة البرق</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5637,11 +5638,11 @@
|
||||
<target>آخر تحديث</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5657,11 +5658,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5670,7 +5671,7 @@
|
||||
<target>تاريخ الاغلاق</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5683,7 +5684,7 @@
|
||||
<target>مغلقة من</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5692,7 +5693,7 @@
|
||||
<target>عملية الفتح</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5701,7 +5702,7 @@
|
||||
<target>عملية الاغلاق</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5783,11 +5784,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6059,10 +6060,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6116,11 +6113,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6158,7 +6155,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6174,11 +6171,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6216,9 +6213,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6296,11 +6301,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6313,7 +6318,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6326,7 +6331,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6339,21 +6344,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>لم نعثر على نود للعنوان العام &quot' <x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>&quot'</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>متوسط حجم القناة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6362,7 +6358,7 @@
|
||||
<target>متوسط مسافة القناة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6371,7 +6367,7 @@
|
||||
<target>اللون</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6380,7 +6376,7 @@
|
||||
<target>مزود خدمة الانترنت</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6393,7 +6389,7 @@
|
||||
<target>حصرية على تور</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6402,7 +6398,7 @@
|
||||
<target>اشهار سيولة </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6411,7 +6407,7 @@
|
||||
<target>معدل رسوم العقد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6421,7 +6417,7 @@
|
||||
<target>أساس رسوم العقد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6430,7 +6426,7 @@
|
||||
<target>وزن التمويل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6439,7 +6435,7 @@
|
||||
<target>معدل رسوم القناة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6449,7 +6445,7 @@
|
||||
<target>أساس رسوم القناة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6458,7 +6454,7 @@
|
||||
<target>عقد سريع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6467,7 +6463,7 @@
|
||||
<target>TLV extension records</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6476,7 +6472,7 @@
|
||||
<target>قنوات مفتوحة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6485,7 +6481,7 @@
|
||||
<target>قنوات مغلقة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6555,9 +6551,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>متاح على الكليرنت فقط</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6567,9 +6562,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>متاح على الكليرنت والداركنت</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6579,9 +6573,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>متاح على الداركنت فقط</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6837,24 +6830,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>أعلى 100 نود حسب السيولة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>أعلى 100 نود حسب الاتصالية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>أقدم الأنواد</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Unser Mempool- und Blockchain-Explorer für die Bitcoin-Community, der sich auf den Markt für Transaktionsgebühren und das mehrschichtige Ökosystem konzentriert und vollständig selbst gehostet wird, ohne vertrauenswürdige Drittanbieter.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Unternehmenssponsoren</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Community-Sponsoren ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Community Integrationen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Community-Allianzen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Projektübersetzer</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Projektmitwirkende</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Projektmitglieder</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Projektbetreuer</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Über</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Gehe zu &quot;<x id="INTERPOLATION" equiv-text="{{ x }}"/>&quot;</target>
|
||||
<target>Gehe zu "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Lightning-Kanal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Letzte Aktualisierung</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Schließdatum</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Geschlossen von</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Öffnende Transaktion</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Schließende Transaktion</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Keinen Node gefunden für Public-Key &quot;<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>&quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Durchschnittliche Kanalgröße</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Durchschn. Kanalentfernung</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Farbe</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>ISP</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Ausschließlich auf Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Liquiditätswerbung</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Lease Gebührensatz</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Lease Basisgebühr</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Finanzierungsgewicht</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Kanal-Gebührenrate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Kanal-Basisgebühr</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Compact_lease</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>LV Erweiterungs-Datensätze</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Offene Kanäle</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Geschlossene Kanäle</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,9 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Nur im Klarnetz erreichbar</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<target>Clearnet und Darknet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6569,9 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Im Klarnetz und Darknet erreichbar</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<target>Nur Clearnet (IPv4, IPv6)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6581,9 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Nur im Darknet erreichbar</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<target>Nur Darknet (Tor, I2P, cjdns)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6839,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Top 100 Nodes nach Liquidität</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Top 100 Nodes nach Anbindung</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Älteste Nodes</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Mempool- ja lohkoketjuselaimemme Bitcoin yhteisölle, joka keskittyy siirtomaksumarkkinoihin ja monikerroksiseen ekosysteemiin, täysin itse ylläpidetty ilman luotettuja kolmansia osapuolia.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Yrityssponsorit 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Yhteisösponsorit ❤️ </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Yhteisön integraatiot </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Yhteisöliittoumat </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Projektin kääntäjät</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Projektin avustajat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Projektin jäsenet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Projektin ylläpitäjät </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Tietoja</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2539,6 +2539,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4786852746659896870" datatype="html">
|
||||
<source>Size per weight</source>
|
||||
<target>Koko painon mukaan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block-sizes-weights-graph/block-sizes-weights-graph.component.ts</context>
|
||||
<context context-type="linenumber">200,199</context>
|
||||
@ -2685,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2894,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2922,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -3830,6 +3827,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="c16d236667af327bd474b149cb909d1cd06fa50c" datatype="html">
|
||||
<source>Avg Health</source>
|
||||
<target>Keskimääräinen terveys</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
|
||||
<context context-type="linenumber">96,97</context>
|
||||
@ -4244,6 +4242,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="0673b255ba8db0bc5e2cccd5962d31dc88c24578" datatype="html">
|
||||
<source>Bitcoin Block Height</source>
|
||||
<target>Bitcoin-lohkon korkeus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -4252,6 +4251,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8b786a14d8c948e31bfb84369f123847a21dbf50" datatype="html">
|
||||
<source>Bitcoin Transaction</source>
|
||||
<target>Bitcoin siirtotapahtuma</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
@ -4260,6 +4260,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="aacf72635ebf6cfe00590e3a426ea6002c43a729" datatype="html">
|
||||
<source>Bitcoin Address</source>
|
||||
<target>Bitcoin osoite</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
@ -4268,6 +4269,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="97089c008af92d87389ff1ec5fb2cc96a6ecef0e" datatype="html">
|
||||
<source>Bitcoin Block</source>
|
||||
<target>Bitcoin lohko</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
@ -4276,6 +4278,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="e89c09d708a1da5f6a59ba6c38ba3db78031fe0e" datatype="html">
|
||||
<source>Bitcoin Addresses</source>
|
||||
<target>Bitcoin osoitteet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
@ -4284,6 +4287,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="67f25165b857428d046fe5eb67fc44c5c3d94e87" datatype="html">
|
||||
<source>Lightning Nodes</source>
|
||||
<target>Lightning osoitteet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
@ -4292,6 +4296,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="db5ca37068eaee3f8b909d3b8b476164527cd8c3" datatype="html">
|
||||
<source>Lightning Channels</source>
|
||||
<target>Lightning kanavat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -4300,6 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Siirry "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4604,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4620,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5217,6 +5223,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8f2791f5d9656271dd6c385f5ad572716e90f4a2" datatype="html">
|
||||
<source><x id="START_BOLD_TEXT" ctype="x-b" equiv-text="mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with"/>mempool.space merely provides data about the Bitcoin network.<x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/> It cannot help you with retrieving funds, confirming your transaction quicker, etc.</source>
|
||||
<target><x id="START_BOLD_TEXT" ctype="x-b" equiv-text="mempool.space merely provides data about the Bitcoin network.</b> It cannot help you with"/>mempool.space tarjoaa vain tietoja Bitcoin-verkosta. <x id="CLOSE_BOLD_TEXT" ctype="x-b" equiv-text="</b>"/> Se ei voi auttaa sinua varojen saamisessa, siirtotapahtuman vahvistamisessa nopeammin jne.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/api-docs/api-docs.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -5359,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5477,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5494,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5511,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5532,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5545,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5579,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5615,11 +5626,11 @@
|
||||
<target>Salamakanava</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5628,11 +5639,11 @@
|
||||
<target>Viimeisin päivitys</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5648,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5661,7 +5672,7 @@
|
||||
<target>Päättymispäivä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5674,7 +5685,7 @@
|
||||
<target>Sulkenut</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5683,7 +5694,7 @@
|
||||
<target>Avaava transaktio</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5692,7 +5703,7 @@
|
||||
<target>Sulkeva transaktio</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5706,6 +5717,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2408280550320842855" datatype="html">
|
||||
<source>Mutually closed</source>
|
||||
<target>Molemminpuolisesti suljettu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
@ -5713,6 +5725,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4610828009441770083" datatype="html">
|
||||
<source>Force closed</source>
|
||||
<target>Pakko suljettu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
@ -5720,6 +5733,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="96508700250272816" datatype="html">
|
||||
<source>Force closed with penalty</source>
|
||||
<target>Pakko suljettu rangaistuksella</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/closing-type/closing-type.component.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
@ -5772,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -5853,6 +5867,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="cfcc7201138b0ef9901e9604c35f550e91629295" datatype="html">
|
||||
<source>avg</source>
|
||||
<target>keskimääräinen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
|
||||
<context context-type="linenumber">3,5</context>
|
||||
@ -5861,6 +5876,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ba9117dcc11814c44437cf9d7561874ba8b98a2a" datatype="html">
|
||||
<source>med</source>
|
||||
<target>kohtalainen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
|
||||
<context context-type="linenumber">6,9</context>
|
||||
@ -6048,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6105,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6147,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6163,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6205,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6287,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6304,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6317,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6330,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Julkiselle avaimelle &quot;<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>&quot; ei löytynyt solmua</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Kanavan keskimääräinen koko</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6353,7 +6364,7 @@
|
||||
<target>Keskimääräinen kanavaetäisyys</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6362,7 +6373,7 @@
|
||||
<target>Väri</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6371,7 +6382,7 @@
|
||||
<target>Palveluntarjoaja</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6384,7 +6395,7 @@
|
||||
<target>Ainoastaan Tor-verkossa</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6393,7 +6404,7 @@
|
||||
<target>Likviditeetti ad</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6402,7 +6413,7 @@
|
||||
<target>Vuokra siirtomaksun taso</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6412,7 +6423,7 @@
|
||||
<target>Vuokra perus siirtokulu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6421,7 +6432,7 @@
|
||||
<target>Rahoituspaino</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6430,7 +6441,7 @@
|
||||
<target>Kanava siirtomaksu taso</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6440,7 +6451,7 @@
|
||||
<target>Kanava perus siirtomaksu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6449,7 +6460,7 @@
|
||||
<target>Kompakti vuokraus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6458,7 +6469,7 @@
|
||||
<target>TLV-laajennustiedot</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6467,7 +6478,7 @@
|
||||
<target>Avoimet kanavat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6476,7 +6487,7 @@
|
||||
<target>Suljetut kanavat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6546,9 +6557,9 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Tavoitettavissa vain Clearnetistä</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<target>Julkinenverkko ja Pimeäverkko </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6558,9 +6569,9 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Tavoitettavissa Clearnetissä ja Darknetissä</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<target>Vain Julkinenverkko (IPv4, IPV6)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6570,9 +6581,9 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Tavoitettavissa vain Darknetissä</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<target>Vain Pimeäverkko (Tor, I2p, cjdns)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6828,24 +6839,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Top 100 solmun likviditeettiluokitus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Top 100 solmun yhdistettävyysluokitus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Vanhimmat solmut</target>
|
||||
|
||||
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Notre explorateur mempool et blockchain pour la communauté Bitcoin, axé sur le marché des frais de transaction et l'écosystème multicouche, entièrement auto-hébergé sans aucun tiers de confiance.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Entreprises sponsors 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Sponsors de la communauté ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Intégrations communautaires</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Alliances communautaires</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Traducteurs</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Contributeurs au projet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Membres du projet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Mainteneurs de projet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>A propos</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Aller à &quot;<x id="INTERPOLATION" equiv-text="{{ x }}"/>&quot;</target>
|
||||
<target>Aller à "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Canal Lightning</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Dernière mise à jour</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Date de clôture</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Fermée par</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Transaction d'ouverture</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Transaction de clôture</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Aucun nœud trouvé pour la clé publique &quot; <x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/> &quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Taille moyenne du canal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Distance moyenne des canaux</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Couleur</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>FAI</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Exclusivement sur Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Annonce de liquidité</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Taux de frais de location</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Frais de base de location</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Poids du financement</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Taux de frais de canal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Frais de base du canal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Location compacte</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>Enregistrements d'extension TLV</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Canaux ouverts</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Canaux fermés</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,9 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Accessible uniquement sur Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<target>Clearnet et Darknet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6569,9 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Accessible sur Clearnet et Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<target>Clearnet seulement (IPv4, IPv6)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6581,9 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Accessible uniquement sur Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<target>Darknet seulement (Tor, I2P, cjdns)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6839,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Classement des 100 meilleurs nœuds par liquidité</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Classement des 100 meilleurs nœuds par connectivité</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Nœuds les plus anciens</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Vår mempool- og blokkkjede-utforsker for Bitcoin-samfunnet, med fokus på transaksjonsgebyrmarkedet og flerlagsøkosystemet, fullstendig self-hosted uten tredjeparter.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Bedriftssponsorer 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Samfunnssponsorer ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Sammfunnsintegrasjoner</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Samfunnsallianser</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Oversettere</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Bidragsytere til prosjektet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Prosjektmedlemmer</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Prosjektvedlikeholdere</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Om</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -3421,7 +3417,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ea8db27e6db64f8b940711948c001a1100e5fe9f" datatype="html">
|
||||
<source>Lightning Network Capacity</source>
|
||||
<target>Lightning-nettverkkapasitet</target>
|
||||
<target>Lightningnettverk-kapasitet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context>
|
||||
<context context-type="linenumber">36</context>
|
||||
@ -3489,7 +3485,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b482ceceb39c7a045cb2ab2c64f7091d21e63d44" datatype="html">
|
||||
<source>Lightning Nodes Channels World Map</source>
|
||||
<target>Lightning-noder kanaler Verdenskart</target>
|
||||
<target>Lightning-kanaler Verdenskart</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/graphs/graphs.component.html</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Gå til &quot; <x id="INTERPOLATION" equiv-text="{{ x }}"/> &quot;</target>
|
||||
<target>Gå til "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Lightningkanal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Siste oppdatering</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Sluttdato</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Avsluttet av</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,16 +5694,16 @@
|
||||
<target>Åpningstransaksjon</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="50411064ac48e15659d1985b414ae91af0c8cd36" datatype="html">
|
||||
<source>Closing transaction</source>
|
||||
<target>Avsluttningtransaksjon</target>
|
||||
<target>Avsluttningstransaksjon</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -5920,7 +5920,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="140fb39368f210ec945417f3eb23bf9564396e5c" datatype="html">
|
||||
<source>Avg Base Fee</source>
|
||||
<target>Gjennomsnittlig basisavgift</target>
|
||||
<target>Gj.sn. basisavgift</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
|
||||
<context context-type="linenumber">41,43</context>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6148,7 +6144,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ed31c09fd77c36238c13d83635f3fe5294c733d2" datatype="html">
|
||||
<source>Location</source>
|
||||
<target>plassering</target>
|
||||
<target>Plassering</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
|
||||
<context context-type="linenumber">74,77</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,30 +6350,21 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Ingen node funnet for offentlig nøkkel &quot; <x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/> &quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Gjennomsnittlig kanalstørrelse</target>
|
||||
<target>Gj.sn. kanalstørrelse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html">
|
||||
<source>Avg channel distance</source>
|
||||
<target>Gjennomsnittlig kanalavstand</target>
|
||||
<target>Gj.sn. kanalavstand</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Farge</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>ISP</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Eksklusivt på Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Likviditetsannonse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Leieavgiftssats</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Leiegrunnavgift</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Finansieringsvekt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Kanalavgiftssats</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Kanalbaseavgift</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Kompakt leieavtale</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>TLV-utvidelsesposter</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,16 +6478,16 @@
|
||||
<target>Åpne kanaler</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="a2dff531c3d7477178553f579e0ec7c3ac7a6f30" datatype="html">
|
||||
<source>Closed channels</source>
|
||||
<target>Stengte kanaler</target>
|
||||
<target>Avsluttede kanaler</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6527,7 +6522,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8199511328474154549" datatype="html">
|
||||
<source>Lightning Nodes Channels World Map</source>
|
||||
<target>Lightning nodekanaler verdenskart</target>
|
||||
<target>Lightning-kanaler verdenskart</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-channels-map/nodes-channels-map.component.ts</context>
|
||||
<context context-type="linenumber">69</context>
|
||||
@ -6562,9 +6557,9 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Kun tilgjengelig på Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<target>Clearnet og Darknet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6569,9 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Tilgjengelig på Clearnet og Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<target>Bare Clearnet (IPv4, IPv6)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6581,9 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Kun tilgjengelig på Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<target>Bare Darknet (Tor, I2P, cjdns)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6600,7 +6595,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="0bd8b27f60a1f098a53e06328426d818e3508ff9" datatype="html">
|
||||
<source>Share</source>
|
||||
<target>Dele</target>
|
||||
<target>Andel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.html</context>
|
||||
<context context-type="linenumber">29,31</context>
|
||||
@ -6672,7 +6667,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6b4442323c695a8211357c7e4486dd620c443822" datatype="html">
|
||||
<source>Clearnet Capacity</source>
|
||||
<target>Clearnet-kapasitet</target>
|
||||
<target>Clearnet kapasitet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
<context context-type="linenumber">6,8</context>
|
||||
@ -6844,24 +6839,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Topp 100 noder likviditetsrangering</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Topp 100 noder tilkoblingsrangering</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Eldste noder</target>
|
||||
|
||||
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Onze mempool- en blockchainverkenner voor de Bitcoingemeenschap, gericht op de transactiekostenmarkt en het meerlagige ecosysteem, volledig zelf-gehost zonder derde partijen.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Bedrijfssponsoren 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Community Sponsoren ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Community-integraties</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Community-allianties</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Projectvertalers</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Projectbijdragers</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Projectleden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Projectonderhouders</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Over</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Ga naar &quot;<x id="INTERPOLATION" equiv-text="{{ x }}"/>&quot;</target>
|
||||
<target>Ga naar "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Lightningkanaal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Laatste update</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Sluitingsdatum</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Gesloten door</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Openingstransactie</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Sluitingstransactie</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Geen node gevonden voor publieke sleutel &quot;<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>&quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Gemiddelde kanaalgrootte</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Gemiddelde kanaalafstand</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Kleur</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>ISP</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Exclusief op Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Liquiditeitsadvertentie</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Leasevergoedingstarief</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Leasebasisvergoeding</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Financieringsgewicht</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Kanaalvergoedingstarief</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Kanaalbasisvergoeding</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Compactlease</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>TLV-extensierecords</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Open kanalen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Gesloten kanalen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Alleen Bereikbaar op Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6568,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Bereikbaar op Clearnet en Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6579,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Alleen Bereikbaar op Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6836,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Top 100 nodes liquiditeitsrangschikking</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Top 100 nodes connectiviteitsrangschikking</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Oudste nodes</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Nosso explorador da blockchain e mempool para a comunidade Bitcoin, focando no mercado de taxas de transação e ecossistema multicamadas, completamente auto-hospedado sem confiar em terceiros.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Empresas Patrocinadoras 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Patrocinadores da comunidade ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Integrações da comunidade</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Alianças da comunidade</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Tradutores do Projeto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Contribuidores do projeto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Membros do Projeto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Mantenedores do projeto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Sobre</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Go to &citação; <x id="INTERPOLATION" equiv-text="{{ x }}"/>&citação;</target>
|
||||
<target>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Canal lightning</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Última atualização</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Data de fechamento</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Fechado por</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Transação de abertura</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Transação de fechamento</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Nenhum nó encontrado para a chave pública &quot;<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>&quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Tamanho médio de canal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Distância média entre canais</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Cor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>Provedor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Exclusivamente Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Anúncio de liquidez</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Taxa de aluguel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Taxa base de aluguel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Peso de financiamento</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Taxa do canal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Taxa base do canal</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Locação compacta</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>Registros de extensão de valor alocado total</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Canais abertos</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Canais fechados</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Alcançável apenas via Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6568,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Alcançável via Clearnet e Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6579,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Alcançável apenas via Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6836,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Ranking dos Top 100 nós por liquidez</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Ranking dos Top 100 nós por conectividade</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Nós mais antigos</target>
|
||||
|
||||
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Exploratorul nostru de mempool și blockchain pentru comunitatea Bitcoin, focusat pe piața comisioanelor de tranzacționat și pe ecosistemul multi-strat, auto-găzduit fără terțe părți.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Sponsori Enterprise 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Sponsori din Comunitate ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Integrări în comunitate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Alianțe din Comunitate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Traducători ai proiectului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Contribuitori ai proiectului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Membrii Proiectului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Întreținători ai proiectului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Despre</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Mergi la &quot;<x id="INTERPOLATION" equiv-text="{{ x }}"/>&quot;</target>
|
||||
<target>Mergi la "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4379,7 +4375,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="time-since" datatype="html">
|
||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> ago</source>
|
||||
<target>În urmă cu <x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||
<target>Acum <x id="DATE" equiv-text="dateStrings.i18nYear"/> </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Canal lightning</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Ultima actualizare</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Data limită</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Închis de</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Tranzacția inițială</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Tranzacția finală</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Nu a fost găsit niciun nod pentru cheia publică &quot; <x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/> &quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Dimensiunea medie a canalului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Distanța medie a canalului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Culoare</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>ISP</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Exclusiv pe Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Anunț de lichiditate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Rata comisionului de închiriere</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Comisionul de inchiriere de bază</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Greutatea finanțării</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Comisionul canalului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Comisionul de bază al canalului</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Închiriere compactă</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>Înregistrări extensiil TLV</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Canale deschise</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Canale închise</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Accesibil numai pe Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6568,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Accesibil pe Clearnet și Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6579,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Accesibil numai pe Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6694,7 +6686,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="462d2233ddacc9869eb28e09b3b12f1d85556937" datatype="html">
|
||||
<source>Unknown Capacity</source>
|
||||
<target>Capacitate necunoscută</target>
|
||||
<target>Capacitate ascunsă</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
@ -6844,24 +6836,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Top 100 de noduri de lichiditate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Top 100 de noduri de conectivitate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Cele mai vechi noduri</target>
|
||||
|
||||
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Мы сами хостим наш обозреватель мемпула и блокчейна для биткоин-сообщества, сфокусированный на рынке транзакционных комиссий и многоуровневой экосистеме и не прибегаем к услугам доверенных третьих сторон.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Корпоративные спонсоры 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Спонсоры из сообщества ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Интеграции c сообществом</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Обьединения Сообщества</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Переводы</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Участники проекта</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Участники проекта</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Разработчики проекта</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>О проекте</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Перейти к &quot; <x id="INTERPOLATION" equiv-text="{{ x }}"/> &quot;</target>
|
||||
<target>Перейти к "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Лайтнинг-канал</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Последнее обновление</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Дата закрытия</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Закрыто</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Транзакция открытия</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Транзакция закрытия</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -5867,7 +5867,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="cfcc7201138b0ef9901e9604c35f550e91629295" datatype="html">
|
||||
<source>avg</source>
|
||||
<target>среднее</target>
|
||||
<target>сред</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-statistics/channels-statistics.component.html</context>
|
||||
<context context-type="linenumber">3,5</context>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,30 +6350,21 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Не найден узел для открытого ключа &quot; <x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/> &quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Средний размер канала</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="008e9fb48f07f545af73b3f676dc60cc3a829765" datatype="html">
|
||||
<source>Avg channel distance</source>
|
||||
<target>Среднее расстояние канала</target>
|
||||
<target>Среднее расстояние между каналами</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Цвет</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>Интернет-провайдер</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Исключительно Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Объявление ликвидности</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Комиссия за аренду</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Базовая комиссия за аренду</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,16 +6432,16 @@
|
||||
<target>Вес финансирования</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="8af4768ed9112268945c697923ce017fbe23e1b7" datatype="html">
|
||||
<source>Channel fee rate</source>
|
||||
<target>Ставка комиссии канала</target>
|
||||
<target>Комиссионная ставка канала</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Базовая комиссия канала</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Компактная аренда</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>Записи расширения TLV</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Открытые каналы</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Закрытые каналы</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Доступно только в Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6568,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Доступно в Clearnet и Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6579,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Доступно только в Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6836,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Топ-100 узлов по ликвидности</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Топ-100 узлов по подключению</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Самые старые узлы</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Наш експлорер мемпулу та блоків для ком'юніті Bitcoin з фокусом на ринок транзакцій та багаторівневу екосистему, повністю самостійний без жодних інтеграцій з довіреними третіми сторонами.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Підприємства-спонсори 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Спонсори з спільноти ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Інтеграції спільноти</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Союзи спільноти</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Перекладачі проекту</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Учасники проекту</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Члени проекту</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Розробники проекту</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Про</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Перейти до &quot;<x id="INTERPOLATION" equiv-text="{{ x }}"/>&quot;</target>
|
||||
<target>Перейти до "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Lightning канал</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Востаннє оновлено</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Дата закриття</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Закрито</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Відкриваюча транзакція</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Закриваюча транзакція</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Не знайдено ноду для ключа &quot;<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>&quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Середній розмір каналу</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Середня відстань каналу</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Колір</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>ISP</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Ексклюзивно для Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Реклама ліквідності</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Ставка комісії оренди</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Базова комісія оренди</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Вага фінансування</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Ставка комісії каналу</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Базова комісія каналу</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Компактна оренда</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>Записи продовження TLV</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Відкриті канали</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Закриті канали</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Доступно тільки через Клірнет</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6568,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Доступно через Клірнет та Даркнет</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6579,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Доступно тільки через Даркнет</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6836,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Топ 100 нод за ліквідністю</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Топ 100 нод за кількістю з'єднань</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Найстаріші ноди</target>
|
||||
|
||||
@ -775,7 +775,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">385,389</context>
|
||||
<context context-type="linenumber">375,378</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mining-dashboard/mining-dashboard.component.html</context>
|
||||
@ -1452,7 +1452,7 @@
|
||||
<target>Mempool và blockchain explorer của chúng tôi dành cho cộng đồng Bitcoin, tập trung vào thị trường phí giao dịch và hệ sinh thái nhiều lớp, hoàn toàn tự lưu trữ mà không cần bất kỳ bên thứ ba nào.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">13,17</context>
|
||||
<context context-type="linenumber">13,16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
|
||||
@ -1460,7 +1460,7 @@
|
||||
<target>Nhà tài trợ doanh nghiệp 🚀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">29,32</context>
|
||||
<context context-type="linenumber">19,22</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
|
||||
</trans-unit>
|
||||
@ -1469,7 +1469,7 @@
|
||||
<target>Nhà tài trợ cộng đồng ❤️</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">177,180</context>
|
||||
<context context-type="linenumber">167,170</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsors.withHeart</note>
|
||||
</trans-unit>
|
||||
@ -1478,7 +1478,7 @@
|
||||
<target>Tích hợp cộng đồng</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
<context context-type="linenumber">181,183</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.community-integrations</note>
|
||||
</trans-unit>
|
||||
@ -1487,7 +1487,7 @@
|
||||
<target>Liên minh cộng đồng</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">285,287</context>
|
||||
<context context-type="linenumber">275,277</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.alliances</note>
|
||||
</trans-unit>
|
||||
@ -1496,7 +1496,7 @@
|
||||
<target>Dịch giả của Dự án</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">301,303</context>
|
||||
<context context-type="linenumber">291,293</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.translators</note>
|
||||
</trans-unit>
|
||||
@ -1505,7 +1505,7 @@
|
||||
<target>Người đóng góp dự án</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">315,317</context>
|
||||
<context context-type="linenumber">305,307</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.contributors</note>
|
||||
</trans-unit>
|
||||
@ -1514,7 +1514,7 @@
|
||||
<target>Thành viên Dự án</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">327,329</context>
|
||||
<context context-type="linenumber">317,319</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.project_members</note>
|
||||
</trans-unit>
|
||||
@ -1523,7 +1523,7 @@
|
||||
<target>Người bảo trì dự án</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">340,342</context>
|
||||
<context context-type="linenumber">330,332</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.maintainers</note>
|
||||
</trans-unit>
|
||||
@ -1532,7 +1532,7 @@
|
||||
<target>Về chúng tôi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/bisq-master-page/bisq-master-page.component.html</context>
|
||||
@ -1581,7 +1581,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
<context context-type="linenumber">18,21</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset-circulation/asset-circulation.component.html</context>
|
||||
@ -2686,11 +2686,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">52,55</context>
|
||||
<context context-type="linenumber">55,58</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">96,100</context>
|
||||
<context context-type="linenumber">99,103</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
@ -2895,15 +2895,15 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">86,88</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
<context context-type="linenumber">103,105</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">218,222</context>
|
||||
<context context-type="linenumber">221,225</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction Details</note>
|
||||
<note priority="1" from="meaning">transaction.details</note>
|
||||
@ -2923,10 +2923,6 @@
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.html</context>
|
||||
<context context-type="linenumber">70,75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">109,115</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.html</context>
|
||||
<context context-type="linenumber">66,69</context>
|
||||
@ -4309,7 +4305,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2abc4d0d3ae0b49fa9e94a2efb8c2e1a47e680f4" datatype="html">
|
||||
<source>Go to "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</source>
|
||||
<target>Tới &quot; <x id="INTERPOLATION" equiv-text="{{ x }}"/> &quot;</target>
|
||||
<target>Tới "<x id="INTERPOLATION" equiv-text="{{ x }}"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/search-form/search-results/search-results.component.html</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -4614,7 +4610,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">67,70</context>
|
||||
<context context-type="linenumber">70,73</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -4630,11 +4626,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,15</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Transaction first seen</note>
|
||||
<note priority="1" from="meaning">transaction.first-seen</note>
|
||||
@ -5370,7 +5366,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">180,182</context>
|
||||
<context context-type="linenumber">183,185</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.m-sats</note>
|
||||
</trans-unit>
|
||||
@ -5488,7 +5484,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5505,7 +5501,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5522,7 +5518,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
<context context-type="linenumber">15,16</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5543,7 +5539,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">29,30</context>
|
||||
<context context-type="linenumber">36,37</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.created</note>
|
||||
</trans-unit>
|
||||
@ -5556,7 +5552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">48,49</context>
|
||||
<context context-type="linenumber">55,56</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5590,6 +5586,10 @@
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp.component.html</context>
|
||||
<context context-type="linenumber">60,62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">13,14</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">202,201</context>
|
||||
@ -5626,11 +5626,11 @@
|
||||
<target>Kênh lightning</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">2,5</context>
|
||||
<context context-type="linenumber">4,7</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">117,119</context>
|
||||
<context context-type="linenumber">116,118</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.channel</note>
|
||||
</trans-unit>
|
||||
@ -5639,11 +5639,11 @@
|
||||
<target>Cập nhật gần nhất</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">33,34</context>
|
||||
<context context-type="linenumber">40,41</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">73,75</context>
|
||||
<context context-type="linenumber">76,78</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -5659,11 +5659,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
<context context-type="linenumber">16,17</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.last-update</note>
|
||||
</trans-unit>
|
||||
@ -5672,7 +5672,7 @@
|
||||
<target>Ngày đóng cửa</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">37,38</context>
|
||||
<context context-type="linenumber">44,45</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channels-list/channels-list.component.html</context>
|
||||
@ -5685,7 +5685,7 @@
|
||||
<target>Đóng bởi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">52,54</context>
|
||||
<context context-type="linenumber">59,61</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closed_by</note>
|
||||
</trans-unit>
|
||||
@ -5694,7 +5694,7 @@
|
||||
<target>Đang mở giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">84,85</context>
|
||||
<context context-type="linenumber">91,92</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.opening-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5703,7 +5703,7 @@
|
||||
<target>Đang đóng giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">100,102</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.closing-transaction</note>
|
||||
</trans-unit>
|
||||
@ -5786,11 +5786,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">10,12</context>
|
||||
<context context-type="linenumber">11,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.alias</note>
|
||||
</trans-unit>
|
||||
@ -6064,10 +6064,6 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.liquidity</note>
|
||||
@ -6121,11 +6117,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
<context context-type="linenumber">14,15</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
<context context-type="linenumber">12,13</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
@ -6163,7 +6159,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">47,49</context>
|
||||
<context context-type="linenumber">50,52</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.html</context>
|
||||
@ -6179,11 +6175,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">15,17</context>
|
||||
<context context-type="linenumber">17,20</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.location</note>
|
||||
</trans-unit>
|
||||
@ -6221,9 +6217,17 @@
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">4,9</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.html</context>
|
||||
@ -6303,11 +6307,11 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">2,4</context>
|
||||
<context context-type="linenumber">4,6</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">260,262</context>
|
||||
<context context-type="linenumber">263,265</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node</note>
|
||||
</trans-unit>
|
||||
@ -6320,7 +6324,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">27,30</context>
|
||||
<context context-type="linenumber">30,33</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-capacity</note>
|
||||
</trans-unit>
|
||||
@ -6333,7 +6337,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">34,38</context>
|
||||
<context context-type="linenumber">37,41</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels</note>
|
||||
</trans-unit>
|
||||
@ -6346,21 +6350,12 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">country</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="674378571ab7e72a386f27fd3281558bae821d9d" datatype="html">
|
||||
<source>No node found for public key "<x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/>"</source>
|
||||
<target>Không tìm thấy nút nào cho khóa công khai &quot; <x id="INTERPOLATION" equiv-text="{{ node.public_key | shortenString : 12}}"/> &quot;</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">17,19</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.node-not-found</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="43b48b9c15083a164b401bf3775a4b99f3917699" datatype="html">
|
||||
<source>Average channel size</source>
|
||||
<target>Kích thước kênh trung bình</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">40,43</context>
|
||||
<context context-type="linenumber">43,46</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.active-channels-avg</note>
|
||||
</trans-unit>
|
||||
@ -6369,7 +6364,7 @@
|
||||
<target>Khoảng cách kênh trung bình</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">56,57</context>
|
||||
<context context-type="linenumber">59,60</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.avg-distance</note>
|
||||
</trans-unit>
|
||||
@ -6378,7 +6373,7 @@
|
||||
<target>Màu sắc</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">79,81</context>
|
||||
<context context-type="linenumber">82,84</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.color</note>
|
||||
</trans-unit>
|
||||
@ -6387,7 +6382,7 @@
|
||||
<target>ISP</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">86,87</context>
|
||||
<context context-type="linenumber">89,90</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp-chart/nodes-per-isp-chart.component.html</context>
|
||||
@ -6400,7 +6395,7 @@
|
||||
<target>Độc quyền trên Tor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">93,95</context>
|
||||
<context context-type="linenumber">96,98</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">tor</note>
|
||||
</trans-unit>
|
||||
@ -6409,7 +6404,7 @@
|
||||
<target>Quảng cáo thanh khoản</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">138,141</context>
|
||||
<context context-type="linenumber">141,144</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.liquidity-ad</note>
|
||||
</trans-unit>
|
||||
@ -6418,7 +6413,7 @@
|
||||
<target>Giá thuê</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">144,147</context>
|
||||
<context context-type="linenumber">147,150</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad lease fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.lease-fee-rate</note>
|
||||
@ -6428,7 +6423,7 @@
|
||||
<target>Phí thuê cơ sở</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">152,154</context>
|
||||
<context context-type="linenumber">155,157</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.lease-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6437,7 +6432,7 @@
|
||||
<target>Trọng lượng nguồn quỹ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">158,159</context>
|
||||
<context context-type="linenumber">161,162</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.funding-weight</note>
|
||||
</trans-unit>
|
||||
@ -6446,7 +6441,7 @@
|
||||
<target>Phí kênh</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">168,171</context>
|
||||
<context context-type="linenumber">171,174</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">Liquidity ad channel fee rate</note>
|
||||
<note priority="1" from="meaning">liquidity-ad.channel-fee-rate</note>
|
||||
@ -6456,7 +6451,7 @@
|
||||
<target>Phí kênh cơ sở</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">176,178</context>
|
||||
<context context-type="linenumber">179,181</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.channel-base-fee</note>
|
||||
</trans-unit>
|
||||
@ -6465,7 +6460,7 @@
|
||||
<target>Thuê gói nhỏ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">188,190</context>
|
||||
<context context-type="linenumber">191,193</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">liquidity-ad.compact-lease</note>
|
||||
</trans-unit>
|
||||
@ -6474,7 +6469,7 @@
|
||||
<target>Hồ sơ gia hạn TLV</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">199,202</context>
|
||||
<context context-type="linenumber">202,205</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">node.tlv.records</note>
|
||||
</trans-unit>
|
||||
@ -6483,7 +6478,7 @@
|
||||
<target>Mở các kênh</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">240,243</context>
|
||||
<context context-type="linenumber">243,246</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6492,7 +6487,7 @@
|
||||
<target>Các kênh đã đóng</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">244,247</context>
|
||||
<context context-type="linenumber">247,250</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.open-channels</note>
|
||||
</trans-unit>
|
||||
@ -6562,9 +6557,8 @@
|
||||
<context context-type="linenumber">112,107</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1055322764280599360" datatype="html">
|
||||
<source>Reachable on Clearnet Only</source>
|
||||
<target>Chỉ có thể truy cập trên Clearnet</target>
|
||||
<trans-unit id="599038141003770125" datatype="html">
|
||||
<source>Clearnet and Darknet</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">164,161</context>
|
||||
@ -6574,9 +6568,8 @@
|
||||
<context context-type="linenumber">303,302</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2760682261176173881" datatype="html">
|
||||
<source>Reachable on Clearnet and Darknet</source>
|
||||
<target>Có thể truy cập trên Clearnet và Darknet</target>
|
||||
<trans-unit id="1282458597026430784" datatype="html">
|
||||
<source>Clearnet Only (IPv4, IPv6)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">185,182</context>
|
||||
@ -6586,9 +6579,8 @@
|
||||
<context context-type="linenumber">295,294</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1191036460161514668" datatype="html">
|
||||
<source>Reachable on Darknet Only</source>
|
||||
<target>Chỉ có thể truy cập trên Darknet</target>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-networks-chart/nodes-networks-chart.component.ts</context>
|
||||
<context context-type="linenumber">206,203</context>
|
||||
@ -6844,24 +6836,6 @@
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="71bb1ed9da9ebb92cf35925bc6fe0a8fbc325625" datatype="html">
|
||||
<source>Top 100 nodes liquidity ranking</source>
|
||||
<target>Xếp hạng thanh khoản 100 nút hàng đầu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-capacity/top-nodes-per-capacity.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-liquidity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="99786bd2106b708e4514d0121964affb19bee636" datatype="html">
|
||||
<source>Top 100 nodes connectivity ranking</source>
|
||||
<target>Xếp hạng kết nối 100 nút hàng đầu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/top-nodes-per-channels/top-nodes-per-channels.component.html</context>
|
||||
<context context-type="linenumber">3,7</context>
|
||||
</context-group>
|
||||
<note priority="1" from="description">lightning.top-100-connectivity</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="47a30fc5a836252f8fe03e2949756b150684d934" datatype="html">
|
||||
<source>Oldest nodes</source>
|
||||
<target>Các nút lâu đời nhất</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -746,7 +746,37 @@ th {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.full-container .card-header .formRadioGroup {
|
||||
margin-top: 6px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@media (min-width: 991px) {
|
||||
position: relative;
|
||||
top: -100px;
|
||||
}
|
||||
@media (min-width: 830px) and (max-width: 991px) {
|
||||
position: relative;
|
||||
top: 0px;
|
||||
}
|
||||
@media (min-width: 830px) {
|
||||
flex-direction: row;
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
}
|
||||
.btn-sm {
|
||||
font-size: 9px;
|
||||
@media (min-width: 830px) {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.direction-ltr {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.rtl-layout {
|
||||
text-align: start;
|
||||
|
||||
.navbar-brand {
|
||||
margin-right: 0px;
|
||||
@ -882,19 +912,25 @@ th {
|
||||
}
|
||||
}
|
||||
|
||||
.container-graph {
|
||||
.chart {
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
.formRadioGroup {
|
||||
@media (min-width: 830px) {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
.container-graph, .full-container, .toggle-holder {
|
||||
@extend .container-graph;
|
||||
.formRadioGroup {
|
||||
@extend .formRadioGroup;
|
||||
direction: ltr;
|
||||
}
|
||||
}
|
||||
|
||||
.full-container {
|
||||
@extend .full-container;
|
||||
.formRadioGroup {
|
||||
@extend .formRadioGroup;
|
||||
direction: ltr;
|
||||
.card-header, h1, h2, h3 {
|
||||
direction: rtl;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -20,6 +20,7 @@ do for url in / \
|
||||
'/api/v1/statistics/1y' \
|
||||
'/api/v1/statistics/2y' \
|
||||
'/api/v1/statistics/3y' \
|
||||
'/api/v1/statistics/4y' \
|
||||
'/api/v1/mining/pools/24h' \
|
||||
'/api/v1/mining/pools/3d' \
|
||||
'/api/v1/mining/pools/1w' \
|
||||
|
||||
@ -65,6 +65,9 @@ location ~ ^/([a-z][a-z])/(.+\..+\.(js|css)) {
|
||||
}
|
||||
# cache everything else for 5 minutes
|
||||
location ~ ^/([a-z][a-z])$ {
|
||||
if ($unfurlbot) {
|
||||
proxy_pass $mempoolSpaceUnfurler;
|
||||
}
|
||||
try_files $uri /$1/index.html /en-US/index.html =404;
|
||||
expires 5m;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user