Merge branch 'master' into orangesurf/privacy-policy
This commit is contained in:
commit
234b2cc231
@ -9,6 +9,7 @@ import { StatusViewComponent } from './components/status-view/status-view.compon
|
||||
import { AddressGroupComponent } from './components/address-group/address-group.component';
|
||||
import { TrackerComponent } from './components/tracker/tracker.component';
|
||||
import { AccelerateCheckout } from './components/accelerate-checkout/accelerate-checkout.component';
|
||||
import { TrackerGuard } from './route-guards';
|
||||
|
||||
const browserWindow = window || {};
|
||||
// @ts-ignore
|
||||
@ -140,16 +141,17 @@ let routes: Routes = [
|
||||
loadChildren: () => import('./bitcoin-graphs.module').then(m => m.BitcoinGraphsModule),
|
||||
data: { preload: true },
|
||||
},
|
||||
{
|
||||
path: 'tx',
|
||||
canMatch: [TrackerGuard],
|
||||
runGuardsAndResolvers: 'always',
|
||||
loadChildren: () => import('./components/tracker/tracker.module').then(m => m.TrackerModule),
|
||||
},
|
||||
{
|
||||
path: '',
|
||||
loadChildren: () => import('./master-page.module').then(m => m.MasterPageModule),
|
||||
data: { preload: true },
|
||||
},
|
||||
{
|
||||
path: 'tracker',
|
||||
data: { networkSpecific: true },
|
||||
loadChildren: () => import('./components/tracker/tracker.module').then(m => m.TrackerModule),
|
||||
},
|
||||
{
|
||||
path: 'wallet',
|
||||
children: [],
|
||||
@ -213,10 +215,6 @@ let routes: Routes = [
|
||||
loadChildren: () => import('./bitcoin-graphs.module').then(m => m.BitcoinGraphsModule),
|
||||
data: { preload: true },
|
||||
},
|
||||
{
|
||||
path: '**',
|
||||
redirectTo: ''
|
||||
},
|
||||
];
|
||||
|
||||
if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
|
||||
@ -301,11 +299,14 @@ if (browserWindowEnv && browserWindowEnv.BASE_MODULE === 'liquid') {
|
||||
loadChildren: () => import('./liquid/liquid-graphs.module').then(m => m.LiquidGraphsModule),
|
||||
data: { preload: true },
|
||||
},
|
||||
{
|
||||
];
|
||||
}
|
||||
|
||||
if (!window['isMempoolSpaceBuild']) {
|
||||
routes.push({
|
||||
path: '**',
|
||||
redirectTo: ''
|
||||
},
|
||||
];
|
||||
});
|
||||
}
|
||||
|
||||
@NgModule({
|
||||
|
@ -50,7 +50,7 @@
|
||||
<ng-container *ngFor="let pool of accelerationInfo.pools">
|
||||
<img *ngIf="accelerationInfo.poolsData[pool]"
|
||||
class="pool-logo"
|
||||
[class.highlight]="pool === accelerationInfo?.minedByPoolUniqueId"
|
||||
[style.opacity]="accelerationInfo?.minedByPoolUniqueId && pool !== accelerationInfo?.minedByPoolUniqueId ? '0.3' : '1'"
|
||||
[src]="'/resources/mining-pools/' + accelerationInfo.poolsData[pool].slug + '.svg'"
|
||||
onError="this.src = '/resources/mining-pools/default.svg'"
|
||||
[alt]="'Logo of ' + pool.name + ' mining pool'">
|
||||
|
@ -32,21 +32,4 @@
|
||||
top: -1px;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
filter: drop-shadow(0 0 5px #905cf4);
|
||||
animation: pulse 1s infinite;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
@ -185,7 +185,11 @@
|
||||
}
|
||||
</div>
|
||||
|
||||
<div class="footer-link" [routerLink]="['/tx' | relativeUrl, tx?.txid]">
|
||||
<div class="footer-link"
|
||||
[routerLink]="['/tx' | relativeUrl, tx?.txid]"
|
||||
[queryParams]="{ mode: 'details' }"
|
||||
queryParamsHandling="merge"
|
||||
>
|
||||
<span><ng-container i18n="accelerator.show-more-details">See more details</ng-container> <fa-icon [icon]="['fas', 'arrow-alt-circle-right']"></fa-icon></span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -31,6 +31,8 @@ import { TrackerStage } from './tracker-bar.component';
|
||||
import { MiningService, MiningStats } from '../../services/mining.service';
|
||||
import { ETA, EtaService } from '../../services/eta.service';
|
||||
import { getTransactionFlags, getUnacceleratedFeeRate } from '../../shared/transaction.utils';
|
||||
import { RelativeUrlPipe } from '../../shared/pipes/relative-url/relative-url.pipe';
|
||||
|
||||
|
||||
interface Pool {
|
||||
id: number;
|
||||
@ -140,6 +142,7 @@ export class TrackerComponent implements OnInit, OnDestroy {
|
||||
private priceService: PriceService,
|
||||
private enterpriseService: EnterpriseService,
|
||||
private miningService: MiningService,
|
||||
private router: Router,
|
||||
private cd: ChangeDetectorRef,
|
||||
private zone: NgZone,
|
||||
@Inject(ZONE_SERVICE) private zoneService: any,
|
||||
|
@ -62,6 +62,8 @@
|
||||
</div>
|
||||
}
|
||||
|
||||
<span id="accelerate"></span>
|
||||
|
||||
<ng-template [ngIf]="!isLoadingTx && !error">
|
||||
|
||||
<!-- CPFP Details -->
|
||||
|
@ -518,6 +518,13 @@ export class TransactionComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
});
|
||||
}
|
||||
}
|
||||
if (window.innerWidth <= 767.98) {
|
||||
this.router.navigate([this.relativeUrlPipe.transform('/tx'), this.txId], {
|
||||
queryParamsHandling: 'merge',
|
||||
preserveFragment: true,
|
||||
queryParams: { mode: 'details' },
|
||||
});
|
||||
}
|
||||
this.seoService.setTitle(
|
||||
$localize`:@@bisq.transaction.browser-title:Transaction: ${this.txId}:INTERPOLATION:`
|
||||
);
|
||||
|
22
frontend/src/app/route-guards.ts
Normal file
22
frontend/src/app/route-guards.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Injectable, inject } from '@angular/core';
|
||||
import { CanMatchFn, Route, Router, UrlSegment } from '@angular/router';
|
||||
import { NavigationService } from './services/navigation.service';
|
||||
|
||||
@Injectable({
|
||||
providedIn: 'root'
|
||||
})
|
||||
class GuardService {
|
||||
constructor(
|
||||
private router: Router,
|
||||
private navigationService: NavigationService,
|
||||
) {}
|
||||
|
||||
trackerGuard(route: Route, segments: UrlSegment[]): boolean {
|
||||
const preferredRoute = this.router.getCurrentNavigation()?.extractedUrl.queryParams?.mode;
|
||||
return preferredRoute !== 'details' && this.navigationService.isInitialLoad() && window.innerWidth <= 767.98;
|
||||
}
|
||||
}
|
||||
|
||||
export const TrackerGuard: CanMatchFn = (route: Route, segments: UrlSegment[]): boolean => {
|
||||
return inject(GuardService).trackerGuard(route, segments);
|
||||
};
|
@ -27,6 +27,7 @@ export class NavigationService {
|
||||
}
|
||||
};
|
||||
networks = Object.keys(this.networkModules);
|
||||
initialLoad = true;
|
||||
|
||||
constructor(
|
||||
private stateService: StateService,
|
||||
@ -40,6 +41,10 @@ export class NavigationService {
|
||||
if (this.enforceSubnetRestrictions(state)) {
|
||||
this.updateSubnetPaths(state);
|
||||
}
|
||||
if (this.initialLoad) {
|
||||
this.initialLoad = false;
|
||||
}
|
||||
this.updateSubnetPaths(state);
|
||||
});
|
||||
}
|
||||
|
||||
@ -98,4 +103,8 @@ export class NavigationService {
|
||||
});
|
||||
this.subnetPaths.next(subnetPaths);
|
||||
}
|
||||
|
||||
isInitialLoad(): boolean {
|
||||
return this.initialLoad;
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4317,6 +4317,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8a9b3afe9486474f0d7767605fe99af99c8ea430" datatype="html">
|
||||
<source>Full RBF</source>
|
||||
<target>Full RBF</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.html</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
@ -5372,6 +5373,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a5d0bd2f3fedabd093937eb13a9edb9bcd00b919" datatype="html">
|
||||
<source>Change output</source>
|
||||
<target>خروجی باقیمانده</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -5571,6 +5573,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="bda0c55e9a859780b954c2718f66496d8ea13b63" datatype="html">
|
||||
<source>As of block</source>
|
||||
<target>از بلاک</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -6557,6 +6560,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.bitcoin.graphs.mempool" datatype="html">
|
||||
<source>See mempool size (in MvB) and transactions per second (in vB/s) visualized over time.</source>
|
||||
<target>دیدن اندازه ممپول (به MvB) و تراکنش بر ثانیه (به vB بر ثانیه) تصویرسازیشده در طول زمان.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/statistics/statistics.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
@ -6564,6 +6568,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.tv" datatype="html">
|
||||
<source>See Bitcoin blocks and mempool congestion in real-time in a simplified format perfect for a TV.</source>
|
||||
<target>دیدن وضعیت تراکم بلاکها و ممپول بیتکوین به صورت زنده و در یک فرم سادهٔ بهینهشده برای نمایش در تلویزیون.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/television/television.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
@ -6598,6 +6603,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="48e4b0c012de5020053ecb26e9ac0d35a1f60688" datatype="html">
|
||||
<source>Comma-separated list of raw transactions</source>
|
||||
<target>فهرست تراکنشهای خام جداشده با درنگنما</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/test-transactions/test-transactions.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -6606,6 +6612,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ea22e5fb229522f3faa5e87dbf0c5f56ddc234fb" datatype="html">
|
||||
<source>Maximum fee rate (sat/vB)</source>
|
||||
<target>حداکثر نرخ کارمزد (sat بر vB)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/test-transactions/test-transactions.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
@ -7611,7 +7618,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="f6f7403b9d7495e7282520b50133c3c3843a6b62" datatype="html">
|
||||
<source>1 block later</source>
|
||||
<target>1 بلاک دیرتر</target>
|
||||
<target>1 بلاک بعد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
|
||||
<context context-type="linenumber">127</context>
|
||||
@ -7647,7 +7654,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="21ea333dd6a24e18e5af771634afbaeeeb369a8d" datatype="html">
|
||||
<source>blocks later</source>
|
||||
<target>بلاک دیرتر</target>
|
||||
<target>بلاک بعد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component.html</context>
|
||||
<context context-type="linenumber">150</context>
|
||||
@ -8001,6 +8008,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.docs.websocket-bitcoin" datatype="html">
|
||||
<source>Documentation for the mempool.space WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more.</source>
|
||||
<target>مستندات خدمات WebSocket API برای mempool.space: دریافت اطلاعات زنده بلاکها، ممپولها، تراکنشها، آدرسها و غیره.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/docs/docs.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
@ -8008,6 +8016,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.title.docs.electrum" datatype="html">
|
||||
<source>Electrum RPC</source>
|
||||
<target>Electrum RPC</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/docs/docs.component.ts</context>
|
||||
<context context-type="linenumber">67</context>
|
||||
@ -8015,6 +8024,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.docs.electrumrpc" datatype="html">
|
||||
<source>Documentation for our Electrum RPC interface: get instant, convenient, and reliable access to an Esplora instance.</source>
|
||||
<target>مستندات رابط Electrum RPC ما: دریافت دسترسی آسان، راحت و سریع به یک Esplora</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/docs/docs.component.ts</context>
|
||||
<context context-type="linenumber">68</context>
|
||||
@ -8331,6 +8341,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.channel" datatype="html">
|
||||
<source>Overview for Lightning channel <x id="PH" equiv-text="params.get('short_id')"/>. See channel capacity, the Lightning nodes involved, related on-chain transactions, and more.</source>
|
||||
<target>کانال لایتنینگ <x id="PH" equiv-text="params.get('short_id')"/> در یک نگاه. دیدن ظرفیت کانال، گرههای لایتنینگ درگیر، تراکنشهای در زنجیره مرتبط، اطلاعات بیشتر.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/channel/channel-preview.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
@ -8829,6 +8840,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ec42ed2d917189340598d7993c29b30c7fd32af4" datatype="html">
|
||||
<source>Connect</source>
|
||||
<target>اتصال</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/group/group.component.html</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
@ -8879,6 +8891,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="34e302a08660d9860dda71e3f350351d34bda498" datatype="html">
|
||||
<source>Penalties</source>
|
||||
<target>جریمهها</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/justice-list/justice-list.component.html</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@ -8956,6 +8969,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.dashboard" datatype="html">
|
||||
<source>Get stats on the Lightning network (aggregate capacity, connectivity, etc), Lightning nodes (channels, liquidity, etc) and Lightning channels (status, fees, etc).</source>
|
||||
<target>دریافت آمارهای شبکهٔ لایتنینگ (ظرفیت تجمیعی، وضعیت اتصال و غیره)، گرههای لایتنینگ (کانالها، نقدینگیها و غیره) و کانالهای لایتنینگ (وضعیت، کارمزدها و غیره).</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/lightning-dashboard/lightning-dashboard.component.ts</context>
|
||||
<context context-type="linenumber">34</context>
|
||||
@ -9065,6 +9079,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.node" datatype="html">
|
||||
<source>Overview for the Lightning network node named <x id="PH" equiv-text="node.alias"/>. See channels, capacity, location, fee stats, and more.</source>
|
||||
<target>گره شبکهٔ لایتنینگ به نام <x id="PH" equiv-text="node.alias"/> در یک نگاه. دیدن کانالها، ظرفیت، موقعیت مکانی، وضعیت کارمزد و اطلاعات بیشتر.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node-preview.component.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -9125,6 +9140,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a737eb6814b234b0fd00e81b645b95a396711f15" datatype="html">
|
||||
<source>Decoded</source>
|
||||
<target>رمزگشاییشده</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/node/node.component.html</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
@ -9263,6 +9279,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.node-map" datatype="html">
|
||||
<source>See the channels of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details.</source>
|
||||
<target>دیدن کانالهای گرههای غیر Tor شبکهٔ لایتنینگ، تصویرسازی شده روی نقشهٔ جهان. روی گرهها نگهدارید/بزنید تا نام و جزئیات آنها را ببینید.</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">74</context>
|
||||
@ -9287,6 +9304,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.node-channel-map" datatype="html">
|
||||
<source>See the locations of non-Tor Lightning network nodes visualized on a world map. Hover/tap on points on the map for node names and details.</source>
|
||||
<target>دیدن موقعیتهای مکانی گرههای غیر Tor شبکهٔ لایتنینگ تصویرسازی شده بر روی نقشهٔ جهان. روی گرهها نگهدارید/بزنید تا نام و جرئیات آنها را ببینید.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-map/nodes-map.component.ts</context>
|
||||
<context context-type="linenumber">52</context>
|
||||
@ -9294,6 +9312,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.nodes-network" datatype="html">
|
||||
<source>See the number of Lightning network nodes visualized over time by network: clearnet only (IPv4, IPv6), darknet (Tor, I2p, cjdns), and both.</source>
|
||||
<target>دیدن تعداد گرههای شبکهٔ لایتنینگ تصویرسازیشده در طول زمان بر اساس شبکه: فقط شبکه آشکار (IPv4, IPv6)، شبکهٔ پنهان (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">74</context>
|
||||
@ -9337,7 +9356,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2165336009914523952" datatype="html">
|
||||
<source>Darknet Only (Tor, I2P, cjdns)</source>
|
||||
<target>فقط شبکه پنهان (Tor, I2P, cjdns)</target>
|
||||
<target>فقط شبکهٔ پنهان (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">218</context>
|
||||
@ -9362,6 +9381,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.nodes-country-overview" datatype="html">
|
||||
<source>See a geographical breakdown of the Lightning network: how many Lightning nodes are hosted in countries around the world, aggregate BTC capacity for each country, and more.</source>
|
||||
<target>دیدن شبکهٔ لاتینینگ به تفکیک موقعیت جغرافیایی: چه تعداد گره لایتنینگ در کشورهای مختلف جهان میزبانی شدهاند، ظرفیت تحمیعی BTC برای هر کشور و اطلاعات بیشتر.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country-chart/nodes-per-country-chart.component.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
@ -9432,6 +9452,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.nodes-country" datatype="html">
|
||||
<source>Explore all the Lightning nodes hosted in <x id="PH" equiv-text="response.country.en"/> and see an overview of each node's capacity, number of open channels, and more.</source>
|
||||
<target>در تمام گرههای لایتنینگ میزبانیشده در <x id="PH" equiv-text="response.country.en"/> کاوش کنید و در یک نگاه اطلاعاتی مانند ظرفیت و تعداد کانالهای باز هر گره را ببینید.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-country/nodes-per-country.component.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
@ -9577,6 +9598,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.nodes-isp" datatype="html">
|
||||
<source>Browse all Bitcoin Lightning nodes using the <x id="PH" equiv-text="response.isp"/> [AS<x id="PH_1" equiv-text="this.route.snapshot.params.isp"/>] ISP and see aggregate stats like total number of nodes, total capacity, and more for the ISP.</source>
|
||||
<target>تمام گرههای لایتنینگ بیتکوین که از تأمین کنندهٔ اینترنت <x id="PH" equiv-text="response.isp"/> [<x id="PH_1" equiv-text="this.route.snapshot.params.isp"/> AS] استفاده میکنند را مرور کنید و امارهای تجمیعی مانند تعداد کل گرهها، مجموع ظرفیت آن را ببینید.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-per-isp/nodes-per-isp-preview.component.ts</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
@ -9632,6 +9654,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.ranking.oldest" datatype="html">
|
||||
<source>See the oldest nodes on the Lightning network along with their capacity, number of channels, location, etc.</source>
|
||||
<target>دیدن قدیمیترین گرهها در شبکهٔ لایتنینگ به همراه ظرفیت آنها، تعداد کانالها، موقعیت مکانی و غیره.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-ranking/oldest-nodes/oldest-nodes.component.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
@ -9639,6 +9662,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.ranking.liquidity" datatype="html">
|
||||
<source>See Lightning nodes with the most BTC liquidity deployed along with high-level stats like number of open channels, location, node age, and more.</source>
|
||||
<target>دیدن گرههای لایتنینگ با بیشترین میزان نقدینگی BTC به همراه آمارهای کلی مانند تعداد کانالهای باز، موقعیت مکانی، عمر گره و آمارهای دیگر.</target>
|
||||
<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">35</context>
|
||||
|
@ -5258,6 +5258,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b4f212e7d0333eb600f835e4664846f9a1a58424" datatype="html">
|
||||
<source>Non-Dust Expired</source>
|
||||
<target>Non-Dust vanhentunut</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -5266,6 +5267,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="506d3b3e461d170c39745288b9ea96b9ac9b7f78" datatype="html">
|
||||
<source>Total amount of BTC held in non-dust Federation UTXOs that have expired timelocks</source>
|
||||
<target>BTC:n kokonaismäärä non-dust Federation UTXO:ssa, jonka aikalukitukset ovat vanhentuneet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
@ -5383,6 +5385,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1c6520aeea2eb946269acab0a2863162b8311e7d" datatype="html">
|
||||
<source>Dust</source>
|
||||
<target>Dust</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
@ -5391,6 +5394,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a5d0bd2f3fedabd093937eb13a9edb9bcd00b919" datatype="html">
|
||||
<source>Change output</source>
|
||||
<target>Vaihtoraha</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -5463,6 +5467,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="3669efae1ff592688b4df067abf0a272e90af226" datatype="html">
|
||||
<source>Fund / Redemption Tx</source>
|
||||
<target>Rahoitus / Lunastus siirtotapahtuma</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html</context>
|
||||
<context context-type="linenumber">15</context>
|
||||
@ -5480,6 +5485,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2e37a2401f3cb55f2b0c108f77c28bb9738f09e0" datatype="html">
|
||||
<source>Peg out in progress...</source>
|
||||
<target>Irrotus käynnissä...</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html</context>
|
||||
<context context-type="linenumber">70</context>
|
||||
@ -5488,6 +5494,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="92b8788842b6cced2a7dad59e5fa1803daff1ca2" datatype="html">
|
||||
<source>24h Peg-In Volume</source>
|
||||
<target>24h kiinnitys määrä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
@ -5496,6 +5503,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="44cfc2e57619bf9beab1ef5b4bedfa52246f5e27" datatype="html">
|
||||
<source>Peg-Ins</source>
|
||||
<target>Kiinnitykset</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -5504,6 +5512,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="544fb5f2a64924b4b9d7d2bc25b8925492bd6d64" datatype="html">
|
||||
<source>24h Peg-Out Volume</source>
|
||||
<target>24h irrotus määrä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">18</context>
|
||||
@ -5512,6 +5521,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="3e7a5b4cf20d583207c96127eb0f0d1b91358544" datatype="html">
|
||||
<source>Peg-Outs</source>
|
||||
<target>Irrotukset</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
@ -5520,6 +5530,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="380175a30ef4d977ec376044b17cf505d0e8ede0" datatype="html">
|
||||
<source>Unpeg</source>
|
||||
<target>Irrota</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -5537,6 +5548,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="34e09704961f3373354d01328a1bb907ffbe44a6" datatype="html">
|
||||
<source>Unpeg Event</source>
|
||||
<target>Irrota tapahtuma</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -5545,6 +5557,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a4c3af092f04fb531a39f0a85e2f7b13ef6e9512" datatype="html">
|
||||
<source>Avg Peg Ratio</source>
|
||||
<target>Keskim. kiinnityssuhde</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
@ -5553,6 +5566,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6ffd2b9ed79c063071099b61933a45f68f7ff5a2" datatype="html">
|
||||
<source>Emergency Keys</source>
|
||||
<target>Hätäavaimet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
@ -5587,6 +5601,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="bda0c55e9a859780b954c2718f66496d8ea13b63" datatype="html">
|
||||
<source>As of block</source>
|
||||
<target>Lohkon mukaan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-supply-stats/reserves-supply-stats.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -6122,6 +6137,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="c34fb298028c4e1089bdfc36c8324086fe8c0527" datatype="html">
|
||||
<source>Out-of-band Fees (1w)</source>
|
||||
<target>Kaistan ulkopuoliset siirtomaksut (1 vk)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||
<context context-type="linenumber">143</context>
|
||||
@ -6626,6 +6642,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ea22e5fb229522f3faa5e87dbf0c5f56ddc234fb" datatype="html">
|
||||
<source>Maximum fee rate (sat/vB)</source>
|
||||
<target>Siirtomaksun enimmäishinta (sat/vB)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/test-transactions/test-transactions.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
@ -7835,6 +7852,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="bbdf5ec7a729b8323727675b26e4dffccaaf60f0" datatype="html">
|
||||
<source>Federation Timelock-Expired UTXOs</source>
|
||||
<target>Federation aikalukko-vanhentuneet UTXO:t</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
@ -7847,6 +7865,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="061051c88f1c686bcf3b40a81c8e824ef2ca7ae0" datatype="html">
|
||||
<source>L-BTC Supply Against BTC Holdings</source>
|
||||
<target>L-BTC-tarjonta BTC Holdingsia vastaan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
<context context-type="linenumber">184</context>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4532,7 +4532,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1bb6965f8e1bbe40c076528ffd841da86f57f119" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||
<target>Blocchi<x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocchi<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
|
@ -409,6 +409,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.about" datatype="html">
|
||||
<source>Learn more about The Mempool Open Source Project®: enterprise sponsors, individual sponsors, integrations, who contributes, FOSS licensing, and more.</source>
|
||||
<target>The Mempool Open Source Project® hakkında daha fazla bilgi edin: kurumsal, bireysel sponsorları gör, entegrasyonları, koda katkı sağlayanları incele ve FOSS -açık kaynak- lisansı ile daha fazlasını öğren. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
@ -425,6 +426,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="49b619d43af81067bfcbf7ba4036876a620e9bd8" datatype="html">
|
||||
<source>We were not able to accelerate this transaction. Please try again later.</source>
|
||||
<target>Bu işlemi hızlandıramıyoruz. Daha sonra tekrar deneyiniz.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
@ -455,6 +457,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="bee6b649ee82d9a7cde233070b665eec7c531b1d" datatype="html">
|
||||
<source>Plus <x id="INTERPOLATION" equiv-text="{{ estimate.txSummary.ancestorCount - 1 }}"/> unconfirmed ancestor(s)</source>
|
||||
<target>Artı <x id="INTERPOLATION" equiv-text="{{ estimate.txSummary.ancestorCount - 1 }}"/> onaylanmamış üst işlem(ler)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
@ -489,6 +492,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="df89e157bacb4ab32e6ec725bf1eb176dc15201e" datatype="html">
|
||||
<source>Size in vbytes of this transaction (including unconfirmed ancestors)</source>
|
||||
<target>Bu işlemin vbyte boyutu (onaylanmamış üst işlemler dahil)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
@ -497,6 +501,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="adbeb446bf941afda4d4a923b5e4ce0cf4a1c1b8" datatype="html">
|
||||
<source>In-band fees</source>
|
||||
<target>Bant içi ücretler</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -622,6 +627,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="fad137784196a8fdc10588e27ed5d8ae95fe4e79" datatype="html">
|
||||
<source>Fees already paid by this transaction (including unconfirmed ancestors)</source>
|
||||
<target>Bu işlem için ödenmiş ücretler (onaylanmamış üst işlemler dahil)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">62</context>
|
||||
@ -843,6 +849,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b0cd496dc7758e691f57213379a47f0a043010ac" datatype="html">
|
||||
<source>Reducing expected confirmation time to <x id="START_TAG_APP_TIME" ctype="x-app_time" equiv-text="<app-time kind="within" [time]="etaInfo.acceleratedETA" [fastRender]="false" [fixedRender]="true">"/><x id="CLOSE_TAG_APP_TIME" ctype="x-app_time" equiv-text="</ng-contain"/></source>
|
||||
<target>Beklenen onaylama zamanı <x id="START_TAG_APP_TIME" ctype="x-app_time" equiv-text="<app-time kind="within" [time]="etaInfo.acceleratedETA" [fastRender]="false" [fixedRender]="true">"/><x id="CLOSE_TAG_APP_TIME" ctype="x-app_time" equiv-text="</ng-contain"/> azaltılıyor.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">351,352</context>
|
||||
@ -851,6 +858,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b62e50ad8bdbb107a2ec978648faf36e9f91c3c1" datatype="html">
|
||||
<source>Payment to mempool.space for acceleration of txid <x id="START_LINK" ctype="x-a" equiv-text="<a [routerLink]="'/tx/' + tx.txid" target="_blank">"/><x id="INTERPOLATION" equiv-text="tr(0, 10) }}"/>..<x id="INTERPOLATION_1" equiv-text="{{ tx.txid.substr(-10) }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</p> </d"/></source>
|
||||
<target>İşlem idleri <x id="START_LINK" ctype="x-a" equiv-text="<a [routerLink]="'/tx/' + tx.txid" target="_blank">"/><x id="INTERPOLATION" equiv-text="tr(0, 10) }}"/>..<x id="INTERPOLATION_1" equiv-text="{{ tx.txid.substr(-10) }}"/><x id="CLOSE_LINK" ctype="x-a" equiv-text="</p> </d"/> olan işlemler için mempool.space yapılan hızlandırma ücreti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">362,363</context>
|
||||
@ -2526,6 +2534,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.liquid.assets" datatype="html">
|
||||
<source>Explore all the assets issued on the Liquid network like L-BTC, L-CAD, USDT, and more.</source>
|
||||
<target>Liquid ağındaki L-BTC, L-Cad, USDT gibi diğer bütün varlıkları görüntüle.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/assets/assets-nav/assets-nav.component.ts</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
@ -2734,6 +2743,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="41545303ec98792b738d6237adbd1f3b54a22196" datatype="html">
|
||||
<source>Block Fees Vs Subsidy</source>
|
||||
<target>Blok ücretleri Vs Blok ödülleri</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
@ -2750,6 +2760,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.bitcoin.graphs.block-fees-subsidy" datatype="html">
|
||||
<source>See the mining fees earned per Bitcoin block compared to the Bitcoin block subsidy, visualized in BTC and USD over time.</source>
|
||||
<target>Bitcoin madencilik ücretlerini ve madencilik blok ücretlerinin BTC ve USD olarak zaman içindeki değişimini gör.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block-fees-subsidy-graph/block-fees-subsidy-graph.component.ts</context>
|
||||
<context context-type="linenumber">79</context>
|
||||
@ -2773,6 +2784,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="98ec8c22c6a0e036b9af829b20e84afc56a79af8" datatype="html">
|
||||
<source>select filter categories to highlight matching transactions</source>
|
||||
<target>Eşleşen işlemleri göstermek için kategori filtrelerini seç</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block-filters/block-filters.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
@ -2828,6 +2840,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="360b9f5c32209001518dbd1dc512f25291473b79" datatype="html">
|
||||
<source>Tint</source>
|
||||
<target>Renk tonu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block-filters/block-filters.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
@ -4506,6 +4519,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1bb6965f8e1bbe40c076528ffd841da86f57f119" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-"/> <x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/>blocks<x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/></source>
|
||||
<target><x id="INTERPOLATION" equiv-text="<span class="shared-block">blocks</span></ng-template> <ng-"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="<span class="shared-block">"/> bloğun <x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="</span>"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty-mining/difficulty-mining.component.html</context>
|
||||
<context context-type="linenumber">10,11</context>
|
||||
@ -5229,6 +5243,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b4f212e7d0333eb600f835e4664846f9a1a58424" datatype="html">
|
||||
<source>Non-Dust Expired</source>
|
||||
<target>Dust-dışı süre aşımına uğrayanlar</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/expired-utxos-stats/expired-utxos-stats.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -5363,6 +5378,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a5d0bd2f3fedabd093937eb13a9edb9bcd00b919" datatype="html">
|
||||
<source>Change output</source>
|
||||
<target>Çıktı fazlası </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -5414,6 +5430,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a8b0889ea1b41888f1e247f2731cc9322198ca04" datatype="html">
|
||||
<source>Recent Peg-In / Out's</source>
|
||||
<target>Yakın zamandaki Peg-girişleri/ Çıkışları</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@ -5451,6 +5468,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2e37a2401f3cb55f2b0c108f77c28bb9738f09e0" datatype="html">
|
||||
<source>Peg out in progress...</source>
|
||||
<target>Peg çıkışı işleniyor...</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html</context>
|
||||
<context context-type="linenumber">70</context>
|
||||
@ -5459,6 +5477,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="92b8788842b6cced2a7dad59e5fa1803daff1ca2" datatype="html">
|
||||
<source>24h Peg-In Volume</source>
|
||||
<target>24 saatlik Peg-giriş hacmi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
@ -5467,6 +5486,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="44cfc2e57619bf9beab1ef5b4bedfa52246f5e27" datatype="html">
|
||||
<source>Peg-Ins</source>
|
||||
<target>Peg-girişleri</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -5475,6 +5495,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="544fb5f2a64924b4b9d7d2bc25b8925492bd6d64" datatype="html">
|
||||
<source>24h Peg-Out Volume</source>
|
||||
<target>24 saatlik Peg-çıkış hacmi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">18</context>
|
||||
@ -5483,6 +5504,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="3e7a5b4cf20d583207c96127eb0f0d1b91358544" datatype="html">
|
||||
<source>Peg-Outs</source>
|
||||
<target>Peg-çıkışları</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-stats/recent-pegs-stats.component.html</context>
|
||||
<context context-type="linenumber">19</context>
|
||||
@ -5491,6 +5513,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="380175a30ef4d977ec376044b17cf505d0e8ede0" datatype="html">
|
||||
<source>Unpeg</source>
|
||||
<target>Unpeg</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -5507,6 +5530,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="34e09704961f3373354d01328a1bb907ffbe44a6" datatype="html">
|
||||
<source>Unpeg Event</source>
|
||||
<target>Unpeg olayı</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -5515,6 +5539,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a4c3af092f04fb531a39f0a85e2f7b13ef6e9512" datatype="html">
|
||||
<source>Avg Peg Ratio</source>
|
||||
<target>Ortalama Peg rasyosu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/reserves-ratio-stats/reserves-ratio-stats.component.html</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
@ -6091,6 +6116,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="c34fb298028c4e1089bdfc36c8324086fe8c0527" datatype="html">
|
||||
<source>Out-of-band Fees (1w)</source>
|
||||
<target>Bant-dışı ücretler (1h)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||
<context context-type="linenumber">143</context>
|
||||
@ -6121,6 +6147,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="09c61c6c6f04877fbce3db88fa0f20cd046ed9b1" datatype="html">
|
||||
<source>Error loading pool data.</source>
|
||||
<target>Havuz datası yüklenirken hata oluştu.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||
<context context-type="linenumber">467</context>
|
||||
@ -6416,6 +6443,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="fe5317c6c60dd7e0e86f04d22f566f67cf04d404" datatype="html">
|
||||
<source>Mining Pools</source>
|
||||
<target>Madencilik havuzları</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">47</context>
|
||||
@ -6571,6 +6599,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="fec63564786cefc0ca1c650527fdfd859aff4b76" datatype="html">
|
||||
<source>Raw hex</source>
|
||||
<target>Çıplak hex</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/test-transactions/test-transactions.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
@ -7383,6 +7412,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="500acb5f67d1f175e1d5dd666c7b15c66611e411" datatype="html">
|
||||
<source>This transaction may have been added out-of-band</source>
|
||||
<target>Bu işlem bant-dışı işlemlere eklenmiş olabillir.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">527</context>
|
||||
@ -7391,6 +7421,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="0badd8c91194cb72dd79e12955d4ed4b43a7cf41" datatype="html">
|
||||
<source>This transaction may have been prioritized out-of-band</source>
|
||||
<target>Bu işlem bant-dışı olarak önceliklendirilmiş olabilir</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">530</context>
|
||||
@ -7399,6 +7430,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="7ef1a8a56ad5696e527a8da06a13661f883ad6b2" datatype="html">
|
||||
<source>This transaction conflicted with another version in our mempool</source>
|
||||
<target>Bu işlem mempooldaki başka bir işlem ile çakışıyor olarak gözükmekte.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">533</context>
|
||||
@ -7949,6 +7981,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.docs.rest-liquid" datatype="html">
|
||||
<source>Documentation for the liquid.network REST API service: get info on addresses, transactions, assets, blocks, and more.</source>
|
||||
<target>liquid.network REST API servisi dökümantasyonu: adresler ile ilgili bilgi al, işlemler, varlıklar, bloklar ve daha fazlası. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/docs/docs.component.ts</context>
|
||||
<context context-type="linenumber">53</context>
|
||||
@ -7956,6 +7989,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.docs.rest-bitcoin" datatype="html">
|
||||
<source>Documentation for the mempool.space REST API service: get info on addresses, transactions, blocks, fees, mining, the Lightning network, and more.</source>
|
||||
<target>mempool.space REST API servisi dökümantasyonu: adresler ile ilgili bilgi al, işlemler, bloklar, ücretler, madencilik, Lightning ağı ve daha fazlası. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/docs/docs.component.ts</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -7971,6 +8005,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.docs.websocket-liquid" datatype="html">
|
||||
<source>Documentation for the liquid.network WebSocket API service: get real-time info on blocks, mempools, transactions, addresses, and more.</source>
|
||||
<target>liquid.network WEBSOKET API servisi dökümantasyonu: adresler ile ilgili anlık bilgi al, işlemler, varlıklar, bloklar ve daha fazlası. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/docs/docs/docs.component.ts</context>
|
||||
<context context-type="linenumber">61</context>
|
||||
@ -9650,6 +9685,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.rankings-dashboard" datatype="html">
|
||||
<source>See the top Lightning network nodes ranked by liquidity, connectivity, and age.</source>
|
||||
<target>Lightning ağındaki düğümleri likidite, bağlantı sayısı ve yaşa göre sırala.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/nodes-rankings-dashboard/nodes-rankings-dashboard.component.ts</context>
|
||||
<context context-type="linenumber">23</context>
|
||||
@ -9657,6 +9693,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.lightning.stats-chart" datatype="html">
|
||||
<source>See the capacity of the Lightning network visualized over time in terms of the number of open channels and total bitcoin capacity.</source>
|
||||
<target>Lightning ağındaki açık kanal sayısının ve bitcoin kapasitesini zaman içindeki değişimi göreselleştir.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/lightning/statistics-chart/lightning-statistics-chart.component.ts</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
@ -9691,6 +9728,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="40966c5744cc46092c2ae9dee1957e15c1faef4d" datatype="html">
|
||||
<source>bare multisig</source>
|
||||
<target>Çıplak çoklu imza</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/components/address-type/address-type.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
@ -10013,6 +10051,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="52a5264f8dcf69b24e496d0a37fbcdd688c54353" datatype="html">
|
||||
<source>Testnet3 is deprecated, and will soon be replaced by <x id="START_LINK" ctype="x-a" equiv-text="<a href="/testnet4">"/>Testnet4<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/></source>
|
||||
<target>Testnet3 artık kullanılamıyor yakında <x id="START_LINK" ctype="x-a" equiv-text="<a href="/testnet4">"/> Testnet4 <x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> ile değiştirilecek </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/components/testnet-alert/testnet-alert.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
@ -10054,6 +10093,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6290595884142884507" datatype="html">
|
||||
<source>Heuristics</source>
|
||||
<target>Keşifsel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/filters.utils.ts</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
@ -10189,6 +10229,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="address-label.multisig" datatype="html">
|
||||
<source>Multisig <x id="multisigM" equiv-text="m"/> of <x id="multisigN" equiv-text="n"/></source>
|
||||
<target>Çoklu imza <x id="multisigM" equiv-text="m"/>/<x id="multisigN" equiv-text="n"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/script.utils.ts</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
|
@ -59,6 +59,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ngb.progressbar.value" datatype="html">
|
||||
<source><x id="INTERPOLATION"/></source>
|
||||
<target><x id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">node_modules/src/ngb-config.ts</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -823,6 +824,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="fd1ab7f68416a5ce64f04f588c8b808d7bba9624" datatype="html">
|
||||
<source>For an additional</source>
|
||||
<target>Để có thêm</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/accelerate-checkout/accelerate-checkout.component.html</context>
|
||||
<context context-type="linenumber">345</context>
|
||||
@ -1825,6 +1827,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="5538e35f9f610af0d1c70fcc7919a93191a810ca" datatype="html">
|
||||
<source> of block</source>
|
||||
<target>của khối</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/acceleration/pending-stats/pending-stats.component.html</context>
|
||||
<context context-type="linenumber">23</context>
|
||||
@ -2399,6 +2402,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="f315148e376b86b7c61be25ac372fcbd5cc49175" datatype="html">
|
||||
<source>No featured assets</source>
|
||||
<target>Không có tài sản nổi bật</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/assets/assets-featured/assets-featured.component.html</context>
|
||||
<context context-type="linenumber">3</context>
|
||||
@ -3460,6 +3464,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="27387c2af5dcaf343a548feba821515f5dc00faa" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="transaction</ng-template> <ng-template #transactionsPlural let-i i18n="shared.transacti"/> transaction</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="transaction</ng-template> <ng-template #transactionsPlural let-i i18n="shared.transacti"/> giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block-transactions.component.html</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@ -3480,6 +3485,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="14779b0ce4cbc4d975a35a8fe074426228a324f3" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="transactions</ng-template> </h2> <ngb-pagination class="pagination-container float-ri"/> transactions</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="transactions</ng-template> </h2> <ngb-pagination class="pagination-container float-ri"/> giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block-transactions.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
@ -4116,6 +4122,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b7dde2cf8ec2fcd328295c9c7fcc944c4d3720b6" datatype="html">
|
||||
<source>Memory Usage</source>
|
||||
<target>Mức sử dụng Bộ nhớ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/clock/clock.component.html</context>
|
||||
<context context-type="linenumber">65</context>
|
||||
@ -4168,6 +4175,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="9dfdbeb922d811d7b7b3fecd48360a059e52aaba" datatype="html">
|
||||
<source>Incoming Transactions</source>
|
||||
<target>Giao dịch đến</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -4224,6 +4232,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="23c872b0336e20284724607f2887da39bd8142c3" datatype="html">
|
||||
<source>Previous fee</source>
|
||||
<target>Phí trước</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.html</context>
|
||||
<context context-type="linenumber">107</context>
|
||||
@ -4236,6 +4245,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="df33bef035883b7afeb388977087f99ab5a54409" datatype="html">
|
||||
<source>New fee</source>
|
||||
<target>Phí mới</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.html</context>
|
||||
<context context-type="linenumber">108</context>
|
||||
@ -4298,6 +4308,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="93ce500c36b94b52219495ae1491efc2fca40cb6" datatype="html">
|
||||
<source>Recent Blocks</source>
|
||||
<target>Các khối gần đây</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.html</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
@ -4318,6 +4329,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="aa6ce7e6e6fe5cd080713965451f25bca15a2a25" datatype="html">
|
||||
<source>Recent Transactions</source>
|
||||
<target>Các giao dịch gần đây</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.html</context>
|
||||
<context context-type="linenumber">190</context>
|
||||
@ -4384,6 +4396,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="146442697456175258" datatype="html">
|
||||
<source>Data</source>
|
||||
<target>Dữ liệu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/custom-dashboard/custom-dashboard.component.ts</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
@ -4560,6 +4573,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4f7e823fd45c6def13a3f15f678888c7fe254fa5" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block mined</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối đã đào</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">53</context>
|
||||
@ -4568,6 +4582,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="229dfb17b342aa8b9a1db27557069445ea1a7051" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks remaining</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối còn lại</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">54</context>
|
||||
@ -4576,6 +4591,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="13ff0d092caf85cd23815f0235e316dc3a6d1bbe" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block remaining</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối còn lại</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
@ -4584,6 +4600,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4f78348af343fb64016891d67b53bdab473f9dbf" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks ahead</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối phía trước</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">56</context>
|
||||
@ -4592,6 +4609,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="15c5f3475966bf3be381378b046a65849f0f6bb6" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block ahead</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối phía trước</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">57</context>
|
||||
@ -4600,6 +4618,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="697b8cb1caaf1729809bc5c065d4dd873810550a" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> blocks behind</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối phía sau</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">58</context>
|
||||
@ -4608,6 +4627,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="32137887e3f5a25b3a016eb03357f4e363fccb0b" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> block behind</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> khối phía sau</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty-tooltip.component.html</context>
|
||||
<context context-type="linenumber">59</context>
|
||||
@ -4616,6 +4636,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="2d1bb593bedb956071b14cbb5cdd5e3150f0e575" datatype="html">
|
||||
<source>Halving Countdown</source>
|
||||
<target>Đếm ngược Halving</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
@ -4624,6 +4645,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8183ac396ad16924ae859b712bdc16b16a76ab87" datatype="html">
|
||||
<source>difficulty</source>
|
||||
<target>độ khó</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||
<context context-type="linenumber">7</context>
|
||||
@ -4632,6 +4654,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="b9161223dda21fe34200a720dcb36830ca568104" datatype="html">
|
||||
<source>halving</source>
|
||||
<target>halving</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/difficulty/difficulty.component.html</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
@ -5218,6 +5241,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="aaf6d7c1f6bc35ffe3e131be28b444f6f8bd76b4" datatype="html">
|
||||
<source>addresses</source>
|
||||
<target>địa chỉ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-addresses-stats/federation-addresses-stats.component.html</context>
|
||||
<context context-type="linenumber">8</context>
|
||||
@ -5251,6 +5275,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="f093a73f10804563b96cab97e4e0516ce684e036" datatype="html">
|
||||
<source>Expires in</source>
|
||||
<target>Hết hạn trong</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">13</context>
|
||||
@ -5259,6 +5284,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="7f37d56e12d893cd46fc8ccba015d51f32d83131" datatype="html">
|
||||
<source>Expired since</source>
|
||||
<target>Hết hạn từ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">14</context>
|
||||
@ -5283,6 +5309,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1a8246eba9a999ee881248c4767d63b875ef07fe" datatype="html">
|
||||
<source>blocks</source>
|
||||
<target>khối</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
@ -5352,6 +5379,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="4dbfcaee1d2f0308bd20b3b6b6655ba1e04330dc" datatype="html">
|
||||
<source>BTC Address</source>
|
||||
<target>Địa chỉ BTC</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
@ -5540,6 +5568,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8177873832400820695" datatype="html">
|
||||
<source>Count</source>
|
||||
<target>Đếm</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/mempool-graph/mempool-graph.component.ts</context>
|
||||
<context context-type="linenumber">329</context>
|
||||
@ -5567,6 +5596,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ba4f24bf9bf3dc4db3d6bc1b8b63339295f0b806" datatype="html">
|
||||
<source>Sign In</source>
|
||||
<target>Đăng nhập</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/menu/menu.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
@ -5766,6 +5796,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="5d680aaa8e24bb235cf4fbeff3df0bfc8e2f564e" datatype="html">
|
||||
<source>Empty Blocks</source>
|
||||
<target>Các khối Trống</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.html</context>
|
||||
<context context-type="linenumber">98</context>
|
||||
@ -5818,6 +5849,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="3666195172774554282" datatype="html">
|
||||
<source>Other (<x id="PH" equiv-text="percentage"/>)</source>
|
||||
<target>Khác (<x id="PH" equiv-text="percentage"/>)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool-ranking/pool-ranking.component.ts</context>
|
||||
<context context-type="linenumber">186</context>
|
||||
@ -5953,6 +5985,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="3dc78651b2810cbb6e830fe7e57499d8cf6a8e4d" datatype="html">
|
||||
<source>Blocks (24h)</source>
|
||||
<target>Khối (24h)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
@ -5994,6 +6027,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="bb524ddbf557b5f14c391e4de3a1e6d28230d319" datatype="html">
|
||||
<source>1m</source>
|
||||
<target>1 phút</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
@ -6015,6 +6049,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="09c61c6c6f04877fbce3db88fa0f20cd046ed9b1" datatype="html">
|
||||
<source>Error loading pool data.</source>
|
||||
<target>Lỗi tải dữ liệu pool.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.html</context>
|
||||
<context context-type="linenumber">467</context>
|
||||
@ -6023,6 +6058,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="7989855514418840406" datatype="html">
|
||||
<source>Not enough data yet</source>
|
||||
<target>Chưa đủ dữ liệu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/pool/pool.component.ts</context>
|
||||
<context context-type="linenumber">142</context>
|
||||
@ -6073,6 +6109,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.title.push-tx" datatype="html">
|
||||
<source>Broadcast Transaction</source>
|
||||
<target>Phát Giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/push-transaction/push-transaction.component.ts</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
@ -6099,6 +6136,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="c88914ee712e3ab5ad5f88de8a6ed12050919ccb" datatype="html">
|
||||
<source>There are no replacements in the mempool yet!</source>
|
||||
<target>Chưa có sự thay thế nào trong mempool!</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/rbf-list/rbf-list.component.html</context>
|
||||
<context context-type="linenumber">34</context>
|
||||
@ -6135,6 +6173,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ea7c261363dc5f6134b7bacba2a1ef97f4ff7859" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ x }}"/> remaining</source>
|
||||
<target>Còn lại <x id="INTERPOLATION" equiv-text="{{ x }}"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/rbf-timeline/rbf-timeline.component.html</context>
|
||||
<context context-type="linenumber">86</context>
|
||||
@ -6254,6 +6293,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="920339d7b35b44632c8ec42aa2bd2cf5929e7619" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Block Height</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Chiều cao Khối</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>
|
||||
@ -6262,6 +6302,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="c6a48e5ee096fba914fb4927d16a5d2e0941e0fe" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Transaction</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Giao dịch</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>
|
||||
@ -6270,6 +6311,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1f8b2a9743e513d1e645f6986bae2130e914c34b" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Address</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Địa chỉ</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>
|
||||
@ -6282,6 +6324,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ba18d02396f5998bb46cd5d771de107bfab6e177" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Block</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Khối</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">33</context>
|
||||
@ -6290,6 +6333,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1221b439226cb36736030a9398c7c3a07d61bdb4" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Addresses</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ networkName }}"/> Địa chỉ</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">39</context>
|
||||
@ -6298,6 +6342,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="fe5317c6c60dd7e0e86f04d22f566f67cf04d404" datatype="html">
|
||||
<source>Mining Pools</source>
|
||||
<target>Pool đào</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">47</context>
|
||||
@ -6324,6 +6369,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="fabeb487dec2ef8dc70cdaee28eacf9d76e78352" datatype="html">
|
||||
<source>Other Network Address</source>
|
||||
<target>Địa chỉ Mạng Khác</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">72</context>
|
||||
@ -6432,6 +6478,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="f74d6f23e06c5a75d95a994017c00191c162ba9f" datatype="html">
|
||||
<source>Test Transactions</source>
|
||||
<target>Giao dịch Thử nghiệm</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/test-transactions/test-transactions.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
@ -6481,6 +6528,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="975c3b9c864754453576ced3f18d75ed39638c70" datatype="html">
|
||||
<source>Rejection reason</source>
|
||||
<target>Lý do từ chối</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/test-transactions/test-transactions.component.html</context>
|
||||
<context context-type="linenumber">26</context>
|
||||
@ -6489,6 +6537,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="date-base.immediately" datatype="html">
|
||||
<source>Immediately</source>
|
||||
<target>Ngay lập tức</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||
<context context-type="linenumber">107</context>
|
||||
@ -6632,6 +6681,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="time-within" datatype="html">
|
||||
<source>within ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></source>
|
||||
<target>trong vòng ~<x id="DATE" equiv-text="dateStrings.i18nYear"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||
<context context-type="linenumber">211</context>
|
||||
@ -6751,6 +6801,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="time-before" datatype="html">
|
||||
<source><x id="DATE" equiv-text="dateStrings.i18nYear"/> before</source>
|
||||
<target><x id="DATE" equiv-text="dateStrings.i18nYear"/> trước</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time/time.component.ts</context>
|
||||
<context context-type="linenumber">257</context>
|
||||
@ -6810,6 +6861,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="cef1d79eace5eb4d2243fad36730e3e65c757bee" datatype="html">
|
||||
<source>Sent</source>
|
||||
<target>Đã gửi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker-bar.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
@ -6818,6 +6870,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="6092bb2a5d8d9aca468a0007bc1af1c21e8f454c" datatype="html">
|
||||
<source>Soon</source>
|
||||
<target>Sớm</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker-bar.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
@ -6867,6 +6920,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a42474c92670ab75cb387cf44c03b0a4ce0a641a" datatype="html">
|
||||
<source>Confirmed at</source>
|
||||
<target>Xác nhận tại</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
@ -6875,6 +6929,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="55b16cd277b9b5de63abe14b475737c753a37b97" datatype="html">
|
||||
<source>Block height</source>
|
||||
<target>Chiều cao khối</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
@ -6883,6 +6938,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="03e7c662ce1c813603ff17d0906e15d256a35a70" datatype="html">
|
||||
<source>Your transaction has been accelerated</source>
|
||||
<target>Giao dịch của bạn đã được tăng tốc</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">143</context>
|
||||
@ -6891,6 +6947,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="52a68ca949dfcdeaaea81bec4d597256b8ad42b5" datatype="html">
|
||||
<source>Waiting for your transaction to appear in the mempool</source>
|
||||
<target>Đang chờ giao dịch của bạn xuất hiện trong mempool</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">150</context>
|
||||
@ -6899,6 +6956,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="5ad21d21f3e26ddfe0abeed499db5d5c0bd0e325" datatype="html">
|
||||
<source>Your transaction is in the mempool, but it will not be confirmed for some time.</source>
|
||||
<target>Giao dịch của bạn đã nằm trong mempool, nhưng sẽ chưa được xác nhận trong một lúc.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
@ -6907,6 +6965,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="809118722b27889f5424609d1779f356bcef2cc2" datatype="html">
|
||||
<source>Your transaction is near the top of the mempool, and is expected to confirm soon.</source>
|
||||
<target>Giao dịch của bạn ở gần đầu mempool và dự kiến sẽ sớm được xác nhận.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">162</context>
|
||||
@ -6915,6 +6974,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="ee76deb7716e90b79e557394b1d256079b7ec24e" datatype="html">
|
||||
<source>Your transaction is expected to confirm in the next block</source>
|
||||
<target>Giao dịch của bạn dự kiến sẽ được xác nhận trong khối tiếp theo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
@ -6932,6 +6992,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8cfdee58beb2e3306741988c554d1f2562c42b30" datatype="html">
|
||||
<source>Your transaction has been replaced by a newer version!</source>
|
||||
<target>Giao dịch của bạn đã được thay thế bằng phiên bản mới hơn!</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.html</context>
|
||||
<context context-type="linenumber">180</context>
|
||||
@ -6965,6 +7026,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="meta.description.bitcoin.transaction" datatype="html">
|
||||
<source>Get real-time status, addresses, fees, script info, and more for <x id="PH" equiv-text="network"/><x id="PH_1" equiv-text="seoDescription"/> transaction with txid <x id="PH_2" equiv-text="this.txId"/>.</source>
|
||||
<target>Nhận trạng thái, địa chỉ, phí, thông tin mã kịch bản theo thời gian thực, vân vân, cho giao dịch <x id="PH" equiv-text="network"/><x id="PH_1" equiv-text="seoDescription"/> với txid <x id="PH_2" equiv-text="this.txId"/>.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tracker/tracker.component.ts</context>
|
||||
<context context-type="linenumber">410</context>
|
||||
@ -7114,6 +7176,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a8a4dd861f790141e19f773153cf42b5d0b0e6b6" datatype="html">
|
||||
<source>Adjusted vsize</source>
|
||||
<target>Vsize đã điều chỉnh</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">247</context>
|
||||
@ -9556,6 +9619,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="8e623d3cfecb7c560c114390db53c1f430ffd0de" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> confirmation</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> xác nhận</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/components/confirmations/confirmations.component.html</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@ -9565,6 +9629,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="bc5b0a2631f0b7bc71aaec6aa6f01af21f9a80d4" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ i }}"/> confirmations</source>
|
||||
<target><x id="INTERPOLATION" equiv-text="{{ i }}"/> xác nhận</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/components/confirmations/confirmations.component.html</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
@ -9574,6 +9639,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="a001c3d27d5fe4a7a362a6089b5b5020ef8c1c95" datatype="html">
|
||||
<source>Replaced</source>
|
||||
<target>Đã thay thế</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/components/confirmations/confirmations.component.html</context>
|
||||
<context context-type="linenumber">12</context>
|
||||
@ -9618,6 +9684,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit id="1773b1dad3e4b72bca77621985366b9e6a92ae28" datatype="html">
|
||||
<source>Explore</source>
|
||||
<target>Khám phá</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/components/global-footer/global-footer.component.html</context>
|
||||
<context context-type="linenumber">59</context>
|
||||
|
@ -2,9 +2,6 @@
|
||||
# routing #
|
||||
###########
|
||||
|
||||
location /api/v1/accelerations {
|
||||
try_files /dev/null @mempool-api-v1-services-cache-short;
|
||||
}
|
||||
location /api/v1/assets {
|
||||
try_files /dev/null @mempool-api-v1-services-cache-short;
|
||||
}
|
||||
|
@ -32,6 +32,9 @@ location /api/v1/mining {
|
||||
location /api/v1/fees/recommended {
|
||||
try_files /dev/null @mempool-api-v1-cache-hot;
|
||||
}
|
||||
location /api/v1/accelerations {
|
||||
try_files /dev/null @mempool-api-v1-cache-hot;
|
||||
}
|
||||
|
||||
# it's ok to cache blockchain data "forever", so we do 30d
|
||||
location /api/v1/block/ {
|
||||
|
Loading…
x
Reference in New Issue
Block a user