Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc13e9f9f7 | ||
|
|
cc0d8cb2b9 | ||
|
|
d50e25bed7 | ||
|
|
7f8329aa4d | ||
|
|
6619f92502 | ||
|
|
edce0d118a | ||
|
|
26ba41cb91 | ||
|
|
475baf5634 | ||
|
|
6866b12e84 | ||
|
|
2743b35ea2 | ||
|
|
d39207e097 | ||
|
|
033d1451d0 | ||
|
|
befb192651 | ||
|
|
7489d3360a | ||
|
|
2641ae0c8e | ||
|
|
32290d1e0d | ||
|
|
584ef87fc8 | ||
|
|
63b52b9d9b | ||
|
|
5f6b7d94b1 | ||
|
|
95a1c002eb |
18
README.md
18
README.md
@@ -1,10 +1,22 @@
|
||||
# The Mempool Open Source Project
|
||||
|
||||
Mempool is the fully featured mempool visualizer and block explorer website and API service running on [mempool.space](https://mempool.space/). The instructions below are for most users at home running on low-powered Raspberry Pi devices, but if you want to run a production website on a powerful server, see the [production setup guide](https://github.com/mempool/mempool/tree/master/production)
|
||||
Mempool is the fully featured visualizer, explorer, and API service running on [mempool.space](https://mempool.space/), an open source project developed and operated for the benefit of the Bitcoin community, with a focus on the emerging transaction fee market to help our transition into a multi-layer ecosystem.
|
||||
|
||||

|
||||

|
||||
|
||||
# Installation
|
||||
## Installation Methods
|
||||
|
||||
Mempool can be self-hosted on a wide variety of your own hardware, ranging from a simple one-click installation on a Raspberry Pi distro, all the way to an advanced high availability cluster of powerful servers for a production instance. We support the following installation methods, ranked in order from simple to advanced:
|
||||
|
||||
1) One-click installation on: [Umbrel](https://github.com/getumbrel/umbrel), [RaspiBlitz](https://github.com/rootzoll/raspiblitz), [RoninDojo](https://code.samourai.io/ronindojo/RoninDojo), or [MyNode](https://github.com/mynodebtc/mynode).
|
||||
2) [Docker installation on Linux using docker-compose](https://github.com/mempool/mempool/tree/master/docker)
|
||||
3) [Manual installation on Linux or FreeBSD](https://github.com/mempool/mempool#manual-installation)
|
||||
4) [Production installation on a powerful FreeBSD server](https://github.com/mempool/mempool/tree/master/production)
|
||||
5) [High Availability cluster using powerful FreeBSD servers](https://github.com/mempool/mempool/tree/master/production#high-availability)
|
||||
|
||||
# Manual Installation
|
||||
|
||||
The following instructions are for a manual installation on Linux or FreeBSD. The file and directory paths may need to be changed to match your OS.
|
||||
|
||||
## Dependencies
|
||||
|
||||
|
||||
11
backend/.gitignore
vendored
11
backend/.gitignore
vendored
@@ -41,14 +41,3 @@ testem.log
|
||||
#System Files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
cache.json
|
||||
cache1.json
|
||||
cache2.json
|
||||
cache3.json
|
||||
cache4.json
|
||||
cache5.json
|
||||
cache6.json
|
||||
cache7.json
|
||||
cache8.json
|
||||
cache9.json
|
||||
|
||||
1
backend/cache/.gitignore
vendored
Normal file
1
backend/cache/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.json
|
||||
@@ -6,7 +6,8 @@
|
||||
"SPAWN_CLUSTER_PROCS": 0,
|
||||
"API_URL_PREFIX": "/api/v1/",
|
||||
"POLL_RATE_MS": 2000,
|
||||
"CACHE_DIR": "./"
|
||||
"CACHE_DIR": "./cache",
|
||||
"CLEAR_PROTECTION_MINUTES": 20
|
||||
},
|
||||
"CORE_RPC": {
|
||||
"HOST": "127.0.0.1",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mempool-backend",
|
||||
"version": "2.0.0",
|
||||
"version": "2.1.2",
|
||||
"description": "Bitcoin mempool visualizer and blockchain explorer backend",
|
||||
"license": "MIT",
|
||||
"homepage": "https://mempool.space",
|
||||
@@ -23,7 +23,8 @@
|
||||
"ng": "./node_modules/@angular/cli/bin/ng",
|
||||
"tsc": "./node_modules/typescript/bin/tsc",
|
||||
"build": "npm run tsc",
|
||||
"start": "node --max-old-space-size=4096 dist/index.js",
|
||||
"start": "node --max-old-space-size=2048 dist/index.js",
|
||||
"start-production": "node --max-old-space-size=4096 dist/index.js",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -5,11 +5,13 @@ import memPool from './mempool';
|
||||
import blocks from './blocks';
|
||||
import logger from '../logger';
|
||||
import config from '../config';
|
||||
import { TransactionExtended } from '../mempool.interfaces';
|
||||
|
||||
class DiskCache {
|
||||
private static FILE_NAME = config.MEMPOOL.CACHE_DIR + 'cache.json';
|
||||
private static FILE_NAMES = config.MEMPOOL.CACHE_DIR + 'cache{number}.json';
|
||||
private static CHUNK_SIZE = 10000;
|
||||
private static FILE_NAME = config.MEMPOOL.CACHE_DIR + '/cache.json';
|
||||
private static FILE_NAMES = config.MEMPOOL.CACHE_DIR + '/cache{number}.json';
|
||||
private static CHUNK_FILES = 25;
|
||||
|
||||
constructor() { }
|
||||
|
||||
async $saveCacheToDisk(): Promise<void> {
|
||||
@@ -18,19 +20,24 @@ class DiskCache {
|
||||
}
|
||||
try {
|
||||
logger.debug('Writing mempool and blocks data to disk cache (async)...');
|
||||
const mempoolChunk_1 = Object.fromEntries(Object.entries(memPool.getMempool()).slice(0, DiskCache.CHUNK_SIZE));
|
||||
|
||||
const mempool = memPool.getMempool();
|
||||
const mempoolArray: TransactionExtended[] = [];
|
||||
for (const tx in mempool) {
|
||||
mempoolArray.push(mempool[tx]);
|
||||
}
|
||||
|
||||
const chunkSize = Math.floor(mempoolArray.length / DiskCache.CHUNK_FILES);
|
||||
|
||||
await fsPromises.writeFile(DiskCache.FILE_NAME, JSON.stringify({
|
||||
blocks: blocks.getBlocks(),
|
||||
mempool: mempoolChunk_1
|
||||
mempool: {},
|
||||
mempoolArray: mempoolArray.splice(0, chunkSize),
|
||||
}), {flag: 'w'});
|
||||
for (let i = 1; i < 10; i++) {
|
||||
const mempoolChunk = Object.fromEntries(
|
||||
Object.entries(memPool.getMempool()).slice(
|
||||
DiskCache.CHUNK_SIZE * i, i === 9 ? undefined : DiskCache.CHUNK_SIZE * i + DiskCache.CHUNK_SIZE
|
||||
)
|
||||
);
|
||||
for (let i = 1; i < DiskCache.CHUNK_FILES; i++) {
|
||||
await fsPromises.writeFile(DiskCache.FILE_NAMES.replace('{number}', i.toString()), JSON.stringify({
|
||||
mempool: mempoolChunk
|
||||
mempool: {},
|
||||
mempoolArray: mempoolArray.splice(0, chunkSize),
|
||||
}), {flag: 'w'});
|
||||
}
|
||||
logger.debug('Mempool and blocks data saved to disk cache');
|
||||
@@ -49,13 +56,24 @@ class DiskCache {
|
||||
if (cacheData) {
|
||||
logger.info('Restoring mempool and blocks data from disk cache');
|
||||
data = JSON.parse(cacheData);
|
||||
if (data.mempoolArray) {
|
||||
for (const tx of data.mempoolArray) {
|
||||
data.mempool[tx.txid] = tx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (let i = 1; i < 10; i++) {
|
||||
for (let i = 1; i < DiskCache.CHUNK_FILES; i++) {
|
||||
const fileName = DiskCache.FILE_NAMES.replace('{number}', i.toString());
|
||||
if (fs.existsSync(fileName)) {
|
||||
const cacheData2 = JSON.parse(fs.readFileSync(fileName, 'utf8'));
|
||||
Object.assign(data.mempool, cacheData2.mempool);
|
||||
if (cacheData2.mempoolArray) {
|
||||
for (const tx of cacheData2.mempoolArray) {
|
||||
data.mempool[tx.txid] = tx;
|
||||
}
|
||||
} else {
|
||||
Object.assign(data.mempool, cacheData2.mempool);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -10,7 +10,6 @@ import loadingIndicators from './loading-indicators';
|
||||
|
||||
class Mempool {
|
||||
private static WEBSOCKET_REFRESH_RATE_MS = 10000;
|
||||
private static CLEAR_PROTECTION_MINUTES = 10;
|
||||
private inSync: boolean = false;
|
||||
private mempoolCache: { [txId: string]: TransactionExtended } = {};
|
||||
private mempoolInfo: IBitcoinApi.MempoolInfo = { loaded: false, size: 0, bytes: 0, usage: 0,
|
||||
@@ -134,7 +133,6 @@ class Mempool {
|
||||
|
||||
// Prevent mempool from clear on bitcoind restart by delaying the deletion
|
||||
if (this.mempoolProtection === 0
|
||||
&& config.MEMPOOL.BACKEND === 'esplora'
|
||||
&& currentMempoolSize > 20000
|
||||
&& transactions.length / currentMempoolSize <= 0.80
|
||||
) {
|
||||
@@ -144,7 +142,7 @@ class Mempool {
|
||||
setTimeout(() => {
|
||||
this.mempoolProtection = 2;
|
||||
logger.warn('Mempool clear protection resumed.');
|
||||
}, 1000 * 60 * Mempool.CLEAR_PROTECTION_MINUTES);
|
||||
}, 1000 * 60 * config.MEMPOOL.CLEAR_PROTECTION_MINUTES);
|
||||
}
|
||||
|
||||
let newMempool = {};
|
||||
|
||||
@@ -9,6 +9,7 @@ interface IConfig {
|
||||
API_URL_PREFIX: string;
|
||||
POLL_RATE_MS: number;
|
||||
CACHE_DIR: string;
|
||||
CLEAR_PROTECTION_MINUTES: number;
|
||||
};
|
||||
ESPLORA: {
|
||||
REST_API_URL: string;
|
||||
@@ -61,7 +62,8 @@ const defaults: IConfig = {
|
||||
'SPAWN_CLUSTER_PROCS': 0,
|
||||
'API_URL_PREFIX': '/api/v1/',
|
||||
'POLL_RATE_MS': 2000,
|
||||
'CACHE_DIR': './'
|
||||
'CACHE_DIR': './cache',
|
||||
'CLEAR_PROTECTION_MINUTES': 20,
|
||||
},
|
||||
'ESPLORA': {
|
||||
'REST_API_URL': 'http://127.0.0.1:3000',
|
||||
|
||||
@@ -8,7 +8,7 @@ In an empty dir create 2 sub-dirs
|
||||
mkdir -p data mysql/data mysql/db-scripts
|
||||
```
|
||||
|
||||
In the mysql/db-scripts sub-dir add the mariadb-structure.sql file from the mempool repo
|
||||
In the `mysql/db-scripts` sub-dir add the `mariadb-structure.sql` file from the mempool repo
|
||||
|
||||
Your dir should now look like that:
|
||||
|
||||
@@ -28,7 +28,7 @@ data db-scripts
|
||||
mariadb-structure.sql
|
||||
```
|
||||
|
||||
In the main dir add the following docker-compose.yml
|
||||
In the main dir add the following `docker-compose.yml`
|
||||
|
||||
```bash
|
||||
version: "3.7"
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
"BISQ_SEPARATE_BACKEND": false,
|
||||
"ITEMS_PER_PAGE": 10,
|
||||
"KEEP_BLOCKS_AMOUNT": 8,
|
||||
"SPONSORS_ENABLED": false,
|
||||
"NGINX_PROTOCOL": "http",
|
||||
"NGINX_HOSTNAME": "127.0.0.1",
|
||||
"NGINX_PORT": "80"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mempool-frontend",
|
||||
"version": "2.0.0",
|
||||
"version": "2.1.2",
|
||||
"description": "Bitcoin mempool visualizer and blockchain explorer backend",
|
||||
"license": "MIT",
|
||||
"homepage": "https://mempool.space",
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
<div class="container-xl">
|
||||
<div class="text-center">
|
||||
<br>
|
||||
<img src="./resources/mempool-logo-bigger.png" height="67.5" width="251">
|
||||
<img src="./resources/mempool-logo-bigger.png" height="62.5" width="250">
|
||||
<br>
|
||||
|
||||
<div class="text-small text-center offset-md-1">
|
||||
v2.1.1 ({{ gitCommit$ | async }})
|
||||
v2.1.2 ({{ gitCommit$ | async }})
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<h2 i18n="about.about-the-project">About the project</h2>
|
||||
<h2 i18n="about.about-the-project">The Mempool Open Source Project</h2>
|
||||
<div class="row row-cols-1">
|
||||
<div class="col col-md-6 mx-auto">
|
||||
<p i18n>The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers.</p>
|
||||
<p i18n>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without any ads, altcoins, or third-party trackers.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -141,9 +141,9 @@
|
||||
</div>
|
||||
|
||||
<div class="input-group input-group-sm mb-3 mt-3 info-group mx-auto">
|
||||
<input type="text" class="form-control" readonly value="0334ac407769a00334afac4231a6e4c0faa31328b67b42c0c59e722e083ed5e6cf@103.99.170.180:9735">
|
||||
<input type="text" class="form-control" readonly value="036f7fad4938521ddc6fc87ab7d6c6a091cef23cad87564a1f55adb806c017575e@103.99.170.198:9735">
|
||||
<div class="input-group-append">
|
||||
<button class="btn btn-outline-secondary" type="button"><app-clipboard [text]="'0334ac407769a00334afac4231a6e4c0faa31328b67b42c0c59e722e083ed5e6cf@103.99.170.180:9735'"></app-clipboard></button>
|
||||
<button class="btn btn-outline-secondary" type="button"><app-clipboard [text]="'036f7fad4938521ddc6fc87ab7d6c6a091cef23cad87564a1f55adb806c017575e@103.99.170.198:9735'"></app-clipboard></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -189,6 +189,12 @@
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a target="_blank" class="m-2 fw6 mb3 mt2 truncate black-80 f4 link" href="https://t.me/mempoolspace">
|
||||
<span class="dib v-mid">
|
||||
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="telegram-plane" class="svg-inline--fa fa-telegram-plane fa-w-14 fa-3x" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z"></path></svg>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a target="_blank" class="m-2 fw6 mb3 mt2 truncate black-80 f4 link" href="https://keybase.io/team/mempool">
|
||||
<span class="dib v-mid">
|
||||
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="keybase" class="svg-inline--fa fa-keybase fa-w-14 fa-3x" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z"></path></svg>
|
||||
|
||||
@@ -20,7 +20,7 @@ export class AboutComponent implements OnInit, OnDestroy {
|
||||
donationStatus = 1;
|
||||
sponsors$: Observable<any>;
|
||||
donationObj: any;
|
||||
sponsorsEnabled = this.stateService.env.SPONSORS_ENABLED;
|
||||
sponsorsEnabled = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
|
||||
sponsors = null;
|
||||
requestSubscription: Subscription | undefined;
|
||||
|
||||
|
||||
@@ -11,6 +11,10 @@
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.blockLink:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.mined-block {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
||||
<a class="navbar-brand" [routerLink]="['/' | relativeUrl]" style="position: relative;">
|
||||
<ng-container *ngIf="{ val: connectionState$ | async } as connectionState">
|
||||
<img src="./resources/mempool-logo.png" height="35" width="140" class="logo" [ngStyle]="{'opacity': connectionState.val === 2 ? 1 : 0.5 }">
|
||||
<img [src]="officialMempoolSpace ? './resources/mempool-space-logo.png' : './resources/mempool-logo.png'" height="35" width="140" class="logo" [ngStyle]="{'opacity': connectionState.val === 2 ? 1 : 0.5 }">
|
||||
<div class="connection-badge">
|
||||
<div class="badge badge-warning" *ngIf="connectionState.val === 0" i18n="master-page.offline">Offline</div>
|
||||
<div class="badge badge-warning" *ngIf="connectionState.val === 1" i18n="master-page.reconnecting">Reconnecting...</div>
|
||||
|
||||
@@ -13,6 +13,7 @@ export class MasterPageComponent implements OnInit {
|
||||
connectionState$: Observable<number>;
|
||||
navCollapsed = false;
|
||||
isMobile = window.innerWidth <= 767.98;
|
||||
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
|
||||
|
||||
constructor(
|
||||
private stateService: StateService,
|
||||
|
||||
@@ -116,3 +116,7 @@
|
||||
left: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.blockLink:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -20,9 +20,9 @@ export interface Env {
|
||||
LIQUID_ENABLED: boolean;
|
||||
BISQ_ENABLED: boolean;
|
||||
BISQ_SEPARATE_BACKEND: boolean;
|
||||
SPONSORS_ENABLED: boolean;
|
||||
ITEMS_PER_PAGE: number;
|
||||
KEEP_BLOCKS_AMOUNT: number;
|
||||
OFFICIAL_MEMPOOL_SPACE: boolean;
|
||||
NGINX_PROTOCOL?: string;
|
||||
NGINX_HOSTNAME?: string;
|
||||
NGINX_PORT?: string;
|
||||
@@ -33,9 +33,9 @@ const defaultEnv: Env = {
|
||||
'LIQUID_ENABLED': false,
|
||||
'BISQ_ENABLED': false,
|
||||
'BISQ_SEPARATE_BACKEND': false,
|
||||
'SPONSORS_ENABLED': false,
|
||||
'ITEMS_PER_PAGE': 10,
|
||||
'KEEP_BLOCKS_AMOUNT': 8,
|
||||
'OFFICIAL_MEMPOOL_SPACE': false,
|
||||
'NGINX_PROTOCOL': 'http',
|
||||
'NGINX_HOSTNAME': '127.0.0.1',
|
||||
'NGINX_PORT': '80',
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -413,7 +413,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="02c35681bc187cde4d0d3a98a3a1f2035dfe7398">
|
||||
<source>In ~<x equiv-text="{{ i }}" id="INTERPOLATION"/> minutes</source>
|
||||
<target>في ~ <x equiv-text="{{ i }}" id="INTERPOLATION"/> دقيقه</target>
|
||||
<target>في ~ <x equiv-text="{{ i }}" id="INTERPOLATION"/> دقيقة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">293</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>ن التسلسل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>البرنامج النصي (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>البرنامج النصي. (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>شوهد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>البرنامج النصي استرداد P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -547,7 +547,7 @@
|
||||
<source>P2WSH witness script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -555,7 +555,7 @@
|
||||
<source>Previous output script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -564,11 +564,11 @@
|
||||
<target>تحميل الكل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -576,7 +576,7 @@
|
||||
<source>Peg-out to <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -584,7 +584,7 @@
|
||||
<source>ScriptPubKey (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -593,7 +593,7 @@
|
||||
<source>ScriptPubKey (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -603,7 +603,7 @@
|
||||
<target>نوع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -620,7 +620,7 @@
|
||||
<target>البيانات</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -629,7 +629,7 @@
|
||||
<target>سات</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -639,7 +639,7 @@
|
||||
<target>خصوصي</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -647,7 +647,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -657,7 +657,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="block.component.browser-title">
|
||||
<source>Block <x equiv-text="block.height" id="BLOCK_HEIGHT"/>: <x equiv-text="block.id" id="BLOCK_ID"/></source>
|
||||
<target>الكتله <x equiv-text="block.height" id="BLOCK_HEIGHT"/>:<x equiv-text="block.id" id="BLOCK_ID"/></target>
|
||||
<target>الكتلة <x equiv-text="block.height" id="BLOCK_HEIGHT"/>:<x equiv-text="block.id" id="BLOCK_ID"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.ts</context>
|
||||
<context context-type="linenumber">105</context>
|
||||
@@ -674,7 +674,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="51e0346da0d58dd6ee252cdaae9ca2711b2f540a">
|
||||
<source>Block <x ctype="x-a" equiv-text="<a [routerLink]="['/block/' | relativeUrl, blockHash]">" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/></source>
|
||||
<target>كتله <x ctype="x-a" equiv-text="<a [routerLink]="['/block/' | relativeUrl, blockHash]">" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/></target>
|
||||
<target>كتلة <x ctype="x-a" equiv-text="<a [routerLink]="['/block/' | relativeUrl, blockHash]">" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="</a>" id="CLOSE_LINK"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
<context context-type="linenumber">4</context>
|
||||
@@ -900,12 +900,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>الرصيد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>مجموع الواردات</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -918,7 +931,7 @@
|
||||
<target>مجموع المرسل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -930,25 +943,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>الرصيد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> من <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> تحويله</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -957,7 +957,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> من <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> تحويلات</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -966,7 +966,7 @@
|
||||
<target>خطأ في تحميل بيانات العنوان.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -990,7 +990,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f4cba7faeb126346f09cc6af30124f9a343f7a28">
|
||||
<source>Blocks</source>
|
||||
<target>كتله</target>
|
||||
<target>كتل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/latest-blocks/latest-blocks.component.ts</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
@@ -1093,16 +1093,23 @@
|
||||
<target>متعدد التوقيع <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> من <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>الطبقه <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/>فصل</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1128,7 +1135,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1292,7 +1299,7 @@
|
||||
<target>شروط الخدمة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1368,15 +1375,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>إذا قمت بتحديد اسم مستخدم تويتر ، فيجب أن تكون صورة الملف الشخصي مرئية الآن على هذه الصفحة عند إعادة التحميل.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>جار تحميل الرسوم البيانية ...</target>
|
||||
@@ -1794,7 +1792,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="0ba9d74c1d31a9d98829892f40334a22624564b8">
|
||||
<source>Medium priority</source>
|
||||
<target>أولوية متوسطه</target>
|
||||
<target>أولوية متوسطة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
|
||||
<context context-type="linenumber">10</context>
|
||||
@@ -1807,7 +1805,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="f80dd1511a91af4e592a538f95fa29d24907176f">
|
||||
<source>High priority</source>
|
||||
<target>أولوية عاليه</target>
|
||||
<target>أولوية عالية</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/fees-box/fees-box.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
@@ -2664,7 +2662,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="time-since.minutes.ago">
|
||||
<source><x equiv-text="counter" id="INTERPOLATION"/> minutes ago</source>
|
||||
<target>منذ <x equiv-text="counter" id="INTERPOLATION"/> دقيقه</target>
|
||||
<target>منذ <x equiv-text="counter" id="INTERPOLATION"/> دقيقة</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/time-since/time-since.component.ts</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH redeem skript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH witness skript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Předchozí výstupní skript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Načíst vše</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out do <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Typ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Důvěrné</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Zůstatek</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Celkem přijato</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Celkem odesláno</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Zůstatek</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transakce</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transakcí</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Chyba při načítání údajů o adrese.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> z <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Vrstva<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Podmínky služby</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Pokud jste zadali jméno na Twitteru, profilová fotka by nyní měla být při opětovném načtení viditelná na této stránce.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Načítání grafů...</target>
|
||||
@@ -2538,6 +2536,7 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="85ce9e4f45873116b746899169cbc3445321d60c">
|
||||
<source>This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method</source>
|
||||
<target>Tato transakce NEPODPORUJE Replace-by-Fee (RBF) a nelze ji pomocí této metody navýšit o poplatek</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
|
||||
<context context-type="linenumber">9</context>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH redeem script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH witness script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Vorheriges Output Script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Alle nachladen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out zu <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/> <x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Typ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>Daten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Vertraulich</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Guthaben</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Insgesamt empfangen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Insgesamt gesendet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Guthaben</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target>Transaktion <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> von <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> von <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> Transaktionen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Fehler beim Laden der Adressdaten.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>Multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> von <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Layer <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Nutzungsbedingungen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Wenn Sie ein Twitter-Handle angegeben haben, sollte das Profilfoto jetzt beim erneuten Laden auf dieser Seite sichtbar sein.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Laden von Grafiken ...</target>
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -66,7 +66,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -87,7 +87,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -241,7 +241,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -467,7 +467,7 @@
|
||||
<source>nSequence</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -475,7 +475,7 @@
|
||||
<source>ScriptSig (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -484,7 +484,7 @@
|
||||
<source>ScriptSig (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -493,7 +493,7 @@
|
||||
<source>Witness</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -501,7 +501,7 @@
|
||||
<source>P2SH redeem script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -509,7 +509,7 @@
|
||||
<source>P2WSH witness script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -517,7 +517,7 @@
|
||||
<source>Previous output script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -525,11 +525,11 @@
|
||||
<source>Load all</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -537,7 +537,7 @@
|
||||
<source>Peg-out to <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -545,7 +545,7 @@
|
||||
<source>ScriptPubKey (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -554,7 +554,7 @@
|
||||
<source>ScriptPubKey (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -563,7 +563,7 @@
|
||||
<source>Type</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -579,7 +579,7 @@
|
||||
<source>data</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -587,7 +587,7 @@
|
||||
<source>sat</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -596,7 +596,7 @@
|
||||
<source>Confidential</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -604,7 +604,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -840,11 +840,23 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -856,7 +868,7 @@
|
||||
<source>Total sent</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -868,23 +880,11 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -892,7 +892,7 @@
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactions</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -900,7 +900,7 @@
|
||||
<source>Error loading address data.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1019,15 +1019,23 @@
|
||||
<source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1051,7 +1059,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1198,7 +1206,7 @@
|
||||
<source>Terms of Service</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1267,14 +1275,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<context-group purpose="location">
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSecuencia</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Testigo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>script de canje P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>script de testigo P2WSH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Script de salida previo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Cargar todas</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out a <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Tipo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>dato</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Confidencial</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Total recibido</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Total enviado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target>Transacción <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target> Transacción <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Errar cargando datos de dirección</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> de <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Peg-out de capa<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> </target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Términos de servicio</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Si ha especificado un usuario de Twitter, la foto de perfil ahora debe ser visible en esta página cuando recargue.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Cargando gráficos...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -86,14 +86,14 @@
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ef772ce5cf98a47b29175e3d46b8a9816c7990a2">
|
||||
<source>Unconfirmed</source>
|
||||
<target>تأیید نشده</target>
|
||||
<target>تأییدنشده</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
|
||||
<context context-type="linenumber">22</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>شاهد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>اسکریپت نقد کردن P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>اسکریپت شاهد P2WSH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>اسکریپت خروجی قبلی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>بازکردن همه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out به <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>نوع</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>ساتوشی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>محرمانه</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>موجودی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>مجموع دریافتها</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>مجموع ارسالها</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>موجودی</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> از <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> تراکنش</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> از <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> تراکنش</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>حطا در بازکردن دادههای آدرس.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,25 @@
|
||||
<target>چندامضایی <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> از <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/> </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Peg-out لایه <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/></target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<target>لایتنینگ <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<target>لیکوئید <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1142,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1306,7 @@
|
||||
<target>شرایط خدمات</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1382,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>اگر یک نامکاربری توئیتری مشخص کرده باشید، تصویر حساب شما بعد از بازنشانی به این صفحه اضافه خواهد شد.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>در حال بازکردن گرافها...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nJärjestys</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Todistaja</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH lunastusskripti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH todistajaskripti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Edellinen ulostuloskripti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Lataa kaikki</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Irrotetaan <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Tyyppi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Luottamuksellinen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Vastaanotettu yhteensä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Lähetetty yhteensä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> siirtotapahtuma</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> siirtotapahtumat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Virhe osoitetietojen lataamisessa.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,25 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> / <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Kerros <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Irroitus</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<target>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1142,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1306,7 @@
|
||||
<target>Käyttöehdot</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1382,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Jos määritit Twitter-tilin, profiilikuvan pitäisi olla nyt näkyvissä tällä sivulla, kun lataat uudelleen.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Ladataan kaavioita...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Témoin</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>Script de rachat P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>Script témoin PW2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Script de sortie précédent</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Charger tout</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out vers <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Type</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>Donnée</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>Sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Confidentiel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Solde</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Total reçu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Total envoyé</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Solde</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target>Transaction <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> sur <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target>Transactions <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> sur <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Erreur lors du chargement des données de l'adresse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> pour <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Couche<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Conditions d'utilisation</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Si vous avez indiqué un pseudo Twitter, la photo de profil devrait maintenant être visible sur cette page lorsque vous rechargez.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Chargement des graphs...</target>
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -68,7 +68,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -90,7 +90,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -255,7 +255,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -484,7 +484,7 @@
|
||||
<source>nSequence</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -492,7 +492,7 @@
|
||||
<source>ScriptSig (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -501,7 +501,7 @@
|
||||
<source>ScriptSig (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -510,7 +510,7 @@
|
||||
<source>Witness</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -518,7 +518,7 @@
|
||||
<source>P2SH redeem script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -526,7 +526,7 @@
|
||||
<source>P2WSH witness script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -534,7 +534,7 @@
|
||||
<source>Previous output script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -542,11 +542,11 @@
|
||||
<source>Load all</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -554,7 +554,7 @@
|
||||
<source>Peg-out to <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -562,7 +562,7 @@
|
||||
<source>ScriptPubKey (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -571,7 +571,7 @@
|
||||
<source>ScriptPubKey (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -580,7 +580,7 @@
|
||||
<source>Type</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -596,7 +596,7 @@
|
||||
<source>data</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -604,7 +604,7 @@
|
||||
<source>sat</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -613,7 +613,7 @@
|
||||
<source>Confidential</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -621,7 +621,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -857,11 +857,23 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -873,7 +885,7 @@
|
||||
<source>Total sent</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -885,23 +897,11 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -909,7 +909,7 @@
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactions</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -917,7 +917,7 @@
|
||||
<source>Error loading address data.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1036,15 +1036,23 @@
|
||||
<source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1068,7 +1076,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1215,7 +1223,7 @@
|
||||
<source>Terms of Service</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1284,14 +1292,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<context-group purpose="location">
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSzekvencia</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>SzkriptSzig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>SzkriptSzig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Szemtanú</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH kiváltási szkript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH szemtanú szkript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Előző kimeneti szkript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Minden betöltése</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Kivétel a <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/>-ra </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>SzkriptPublikusKulcs (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>SzkriptPublikusKulcs (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Típus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>adat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Bizalmas</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Egyenleg</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Összesen fogadott</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Összesen küldött</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Egyenleg</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> a <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>-ből/ból tranzakció</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> a <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>-ből/ból tranzakció</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Hiba történt a cím információ lekérdezésekor.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,25 @@
|
||||
<target><x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> - <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/> multiszignatúra</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Első réteg <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> kikötés</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<target>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1142,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1306,7 @@
|
||||
<target>Általános Szolgáltatási Feltételek</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1382,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Ha egy Twitter nevet is adtál, akkor a profil fotód most már látható lessz a website-on mikor újra betöltöd. (Nyomd meg az Ctrl+F5-öt.)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Grafikon betöltése...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Testimone</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>Script di riscatto P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>Script testimone P2WSH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Script output precedente</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Carica tutto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out verso <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Tipo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>dati</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Confidenziale</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Totale ricevuto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Totale inviato</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> su <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transazione</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> su <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transazioni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Errore nel caricamento dei dati dell'indirizzo.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> su <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Layer <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Condizioni d'uso</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Se hai specificato un handle di Twitter, la tua foto profilo dovrebbe essere visibile su questa pagina non appena la ricarichi.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Caricamento grafici...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>ウィットネス</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH引き換えスクリプト</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSHウィットネススクリプト</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>前の出力スクリプト</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>すべてをロード</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target><x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/>へのペグアウト</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>タイプ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>データ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>サトシ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>機密</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>残高</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>受領合計</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>送金合計</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>残高</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> トランザクション</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> トランザクション</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>アドレスデータを読み込み中にエラーが発生しました。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target><x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> / <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/> マルチシグ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>レイヤー<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/>ペグアウト</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>利用規約</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Twitterハンドルを指定した場合、リロード時にプロフィール写真がこのページに表示されます。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>グラフを読み込み中...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -499,7 +499,7 @@
|
||||
<source>nSequence</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -507,7 +507,7 @@
|
||||
<source>ScriptSig (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -516,7 +516,7 @@
|
||||
<source>ScriptSig (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -525,7 +525,7 @@
|
||||
<source>Witness</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -533,7 +533,7 @@
|
||||
<source>P2SH redeem script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -541,7 +541,7 @@
|
||||
<source>P2WSH witness script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -549,7 +549,7 @@
|
||||
<source>Previous output script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -558,11 +558,11 @@
|
||||
<target>ყველა ჩატვირთვა</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -570,7 +570,7 @@
|
||||
<source>Peg-out to <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -578,7 +578,7 @@
|
||||
<source>ScriptPubKey (ASM)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -587,7 +587,7 @@
|
||||
<source>ScriptPubKey (HEX)</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -597,7 +597,7 @@
|
||||
<target>ტიპი</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -614,7 +614,7 @@
|
||||
<target>მონაცემები</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -623,7 +623,7 @@
|
||||
<target>სატ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -633,7 +633,7 @@
|
||||
<target>კონფიდენციალური</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -641,7 +641,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -894,12 +894,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Ბალანსი</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>სულ მიღებული</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -912,7 +925,7 @@
|
||||
<target>სულ გაგზავნილი</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -924,25 +937,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Ბალანსი</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> ის <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> ტრანსაქცია</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -951,7 +951,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> ის <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> ტრანსაქცია</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -960,7 +960,7 @@
|
||||
<target>შეცდომა მისამართის მონაცემების მოძებვნისას.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1087,15 +1087,23 @@
|
||||
<target>მულტისიგ <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> ის <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1121,7 +1129,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1285,7 +1293,7 @@
|
||||
<target>Მომსახურების პირობები</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1361,15 +1369,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>თუ Twitter- ის სახელი მიუთითეთ, გადატვირთვისას ამ გვერდზე უნდა ჩანდეს პროფილის ფოტო.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>დაელოდეთ გრაფიკებს...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>증인 (디지털 서명)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH 사용 스크립트</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH 증인 스크립트</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>이전 아웃풋 스크립트</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>모두 불러오기</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target><x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/>로 페그 아웃 됨</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>종류</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>데이터</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>사토시</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>기밀</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -904,12 +904,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>잔액</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>총 받은 양</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -922,7 +935,7 @@
|
||||
<target>총 보낸 양</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -934,24 +947,11 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>잔액</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -959,7 +959,7 @@
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactions</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -968,7 +968,7 @@
|
||||
<target>주소 데이터 불러오기 실패</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1094,16 +1094,23 @@
|
||||
<source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>레이어 <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> 페그 아웃</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1129,7 +1136,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1293,7 +1300,7 @@
|
||||
<target>이용약관</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1369,15 +1376,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>트위터 아이디를 입력하셨다면 트위터 프로필 사진이 이 페이지에 표시됩니다. 보시려면 새로 고침을 해 보세요.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>그래프 로딩중...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig(ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig(HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH redeem script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH witness script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Forrige output script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Last alt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-ut til <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/> <x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Type</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Konfidensielt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Balanse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Totalt mottatt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Totalt sendt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Balanse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaksjon</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaksjoner</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Lasting av adressedata feilet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> av <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Lag <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-ut</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Bruksvilkår</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Hvis du spesifiserte en Twitter handle, så skal profilbilde ditt nå vises på denne siden når du laster siden på nytt.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Laster grafer...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Getuige-data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH claim-script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH claim-script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Vorig output-script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Laad alles</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out naar <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Type</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Vertrouwelijk</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Balans</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Totaal ontvangen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Totaal verstuurd</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Balans</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> van <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactie</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> van <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transacties</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Fout bij het laden van adresdata.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> van <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Laag <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Servicevoorwaarden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Als je een Twittergebruikersnaam hebt ingevuld dan zou de profielfoto nu op deze pagina zichtbaar zijn als je herlaadt.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Grafiek laden...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Świadek</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -538,7 +538,7 @@
|
||||
<source>P2SH redeem script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -546,7 +546,7 @@
|
||||
<source>P2WSH witness script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -555,7 +555,7 @@
|
||||
<target>Poprzedni skrypt wyjściowy</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -564,11 +564,11 @@
|
||||
<target>Załaduj wszystko</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -576,7 +576,7 @@
|
||||
<source>Peg-out to <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -585,7 +585,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -595,7 +595,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -605,7 +605,7 @@
|
||||
<target>Typ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -622,7 +622,7 @@
|
||||
<target>dane</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -631,7 +631,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -641,7 +641,7 @@
|
||||
<target>Poufne</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -649,7 +649,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -901,12 +901,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Otrzymano łącznie</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -919,7 +932,7 @@
|
||||
<target>Wysłano łącznie</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -931,25 +944,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transakcji</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -958,7 +958,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transakcji</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -967,7 +967,7 @@
|
||||
<target>Błąd podczas ładowania adresu.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1094,15 +1094,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> z <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1128,7 +1136,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1291,7 +1299,7 @@
|
||||
<target>Warunki korzystania z usługi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1366,14 +1374,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Ładowanie wykresów...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Testemunho</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH script de resgate</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH script de testemunho</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Script de saída anterior</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Carregar tudo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Atrelado para <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Tipo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>dados</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Confidencial</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Total recebido</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Total enviado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Saldo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transação</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transações</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Erro ao carregar os dados do endereço.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> de <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Camada<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Atrelado</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Termos de Serviço</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target> Se você especificou um identificador do Twitter, a foto do perfil agora deve estar visível nesta página quando você recarregar.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Carregando gráficos...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH redeem skripta</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH witness skripta</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Skripta prejšnjega izhoda</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Prikaži vse</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out v <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Tip</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>podatki</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Zaupno</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Stanje</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Skupaj prejeto</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Skupaj poslano</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Stanje</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> od <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transakcija</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> od <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transakcij</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Napaka pri nalaganju podatkov naslova.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,25 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> od <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<target>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1142,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1306,7 @@
|
||||
<target>Pogoji storitve</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1382,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Če ste navedli Twitter uporabniško ime, bi morala biti fotografija profila zdaj vidna na tej strani ob ponovnem nalaganju.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Nalaganje grafov...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH redeem script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH witness script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Föregående outputscript</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Ladda alla</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Peg-out till <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Typ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Konfidentiell</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Balans</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Totalt mottaget</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Totalt skickat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Balans</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaktion</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaktioner</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Kunde inte ladda addressdata.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> av <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Lager<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Användarvillkor</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Om du har angett en Twitter-handle ska profilbilden nu synas på den här sidan när du laddar om.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Laddar grafen...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Tanık</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH alım scripti </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH tanık scripti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Önceki çıkış scripti</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Hepsini yükle </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target><x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/> <x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/>'a çıkış</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Tip</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>Data</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Gizli</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Cari toplam</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Toplam alınan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Toplam gönderilen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Cari toplam</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> bölü <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> işlem</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Adres datası yüklenirken hata oluştu.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target> Çoklu imzanın <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> bölü <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Katman<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Hizmet Koşulları</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Bir Twitter kullanıcı adı belirlediyseniz, sayfayı yeniden yüklediğinizde profil resminizin görünür hale gelecektir.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Grafikler yükleniyor...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -501,7 +501,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -520,7 +520,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -530,7 +530,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -539,7 +539,7 @@
|
||||
<target>P2SH redeem скрипт</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -548,7 +548,7 @@
|
||||
<target>P2WSH witness скрипт</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -557,7 +557,7 @@
|
||||
<target>Скрипт попереднього виходу</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -566,11 +566,11 @@
|
||||
<target>Завантажити всі</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -579,7 +579,7 @@
|
||||
<target>Розкріплення до <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -598,7 +598,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -608,7 +608,7 @@
|
||||
<target>Тип</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -625,7 +625,7 @@
|
||||
<target>дані</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -634,7 +634,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -644,7 +644,7 @@
|
||||
<target>Конфіденційна</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -652,7 +652,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -905,12 +905,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Баланс</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Всього отримано</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -923,7 +936,7 @@
|
||||
<target>Всього надіслано</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -935,25 +948,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Баланс</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> з <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> транзакції</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -962,7 +962,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> з <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> транзакцій</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -971,7 +971,7 @@
|
||||
<target>Не вдалося завантажити дані про адресу.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1098,16 +1098,23 @@
|
||||
<target>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> з <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Розкріплення до шару <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/></target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1133,7 +1140,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1297,7 +1304,7 @@
|
||||
<target>Умови використання</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1373,15 +1380,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Якщо ви вкажете ваш юзернейм з Twitter, фото профілю буде відображатись після перезавантаження сторінки.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Завантаження графіків...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -500,7 +500,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -509,7 +509,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -519,7 +519,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -529,7 +529,7 @@
|
||||
<target>Chứng kiến</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -538,7 +538,7 @@
|
||||
<target>Mã thu hồi P2SH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -547,7 +547,7 @@
|
||||
<target>Mã chứng kiến P2WSH</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -556,7 +556,7 @@
|
||||
<target>Mã đầu ra trước đó</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -565,11 +565,11 @@
|
||||
<target>Tải tất cả</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -578,7 +578,7 @@
|
||||
<target>Peg-out <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/> <x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -587,7 +587,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -597,7 +597,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -607,7 +607,7 @@
|
||||
<target>Kiểu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -624,7 +624,7 @@
|
||||
<target>dữ liệu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -633,7 +633,7 @@
|
||||
<target>sat</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -643,7 +643,7 @@
|
||||
<target>Bảo mật</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -651,7 +651,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -904,12 +904,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Số dư</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>Tổng nhận</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -922,7 +935,7 @@
|
||||
<target>Tổng gửi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -934,25 +947,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>Số dư</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> trong <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -961,7 +961,7 @@
|
||||
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> trong <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> giao dịch</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -970,7 +970,7 @@
|
||||
<target>Lỗi khi tải dữ liệu địa chỉ.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1097,16 +1097,23 @@
|
||||
<target>đa chữ kí <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> trong <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>Lớp <x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1132,7 +1139,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1296,7 +1303,7 @@
|
||||
<target>Điều khoản Dịch vụ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1372,15 +1379,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<target>Nếu bạn đã chỉ định đường dẫn Twitter, ảnh hồ sơ bây giờ sẽ hiển thị trên trang này khi bạn tải lại.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>Đang tải đồ thị ...</target>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
<context context-type="linenumber">208</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -71,7 +71,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transfers/bisq-transfers.component.html</context>
|
||||
@@ -93,7 +93,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">209</context>
|
||||
<context context-type="linenumber">212</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">Transaction unconfirmed state</note>
|
||||
<note from="meaning" priority="1">transaction.unconfirmed</note>
|
||||
@@ -258,7 +258,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
|
||||
@@ -500,7 +500,7 @@
|
||||
<target>nSequence</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">92</context>
|
||||
<context context-type="linenumber">95</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -509,7 +509,7 @@
|
||||
<target>ScriptSig (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
<context context-type="linenumber">74</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.asm</note>
|
||||
@@ -519,7 +519,7 @@
|
||||
<target>ScriptSig (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
<context context-type="linenumber">78</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptSig (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptsig.hex</note>
|
||||
@@ -529,7 +529,7 @@
|
||||
<target>Witness</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">80</context>
|
||||
<context context-type="linenumber">83</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -538,7 +538,7 @@
|
||||
<target>P2SH redeem script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">84</context>
|
||||
<context context-type="linenumber">87</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -547,7 +547,7 @@
|
||||
<target>P2WSH witness script</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">88</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -555,7 +555,7 @@
|
||||
<source>Previous output script</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">96</context>
|
||||
<context context-type="linenumber">99</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -564,11 +564,11 @@
|
||||
<target>加载全部</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">106</context>
|
||||
<context context-type="linenumber">109</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">188</context>
|
||||
<context context-type="linenumber">191</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -576,7 +576,7 @@
|
||||
<source>Peg-out to <x ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">" id="START_TAG_NG_CONTAINER"/><x ctype="x-ng_container" equiv-text="</ng-container>" id="CLOSE_TAG_NG_CONTAINER"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">125</context>
|
||||
<context context-type="linenumber">128</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -585,7 +585,7 @@
|
||||
<target>ScriptPubKey (ASM)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
<context context-type="linenumber">173</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (ASM)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -595,7 +595,7 @@
|
||||
<target>ScriptPubKey (HEX)</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">174</context>
|
||||
<context context-type="linenumber">177</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">ScriptPubKey (HEX)</note>
|
||||
<note from="meaning" priority="1">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -605,7 +605,7 @@
|
||||
<target>类型</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">166</context>
|
||||
<context context-type="linenumber">169</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
|
||||
@@ -622,7 +622,7 @@
|
||||
<target>数据</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">178</context>
|
||||
<context context-type="linenumber">181</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -631,7 +631,7 @@
|
||||
<target>聪</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">198</context>
|
||||
<context context-type="linenumber">201</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">sat</note>
|
||||
<note from="meaning" priority="1">shared.sat</note>
|
||||
@@ -641,7 +641,7 @@
|
||||
<target>机密</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
|
||||
<context context-type="linenumber">214</context>
|
||||
<context context-type="linenumber">217</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/amount/amount.component.html</context>
|
||||
@@ -649,7 +649,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">132</context>
|
||||
<context context-type="linenumber">134</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
|
||||
@@ -902,12 +902,25 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>余额</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="a9b87c3aa4731edee661c8287ef3aab71799c0b8">
|
||||
<source>Total received</source>
|
||||
<target>总接收量</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">20</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -920,7 +933,7 @@
|
||||
<target>总发送量</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">24</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
@@ -932,25 +945,12 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="7e69426bd97a606d8ae6026762858e6e7c86a1fd">
|
||||
<source>Balance</source>
|
||||
<target>余额</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/bisq/bisq-address/bisq-address.component.html</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
|
||||
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
|
||||
<target>前<x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>个交易 / 共<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>个交易</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -959,7 +959,7 @@
|
||||
<target>前<x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>个交易 / 共<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>个交易</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
<context context-type="linenumber">51</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -968,7 +968,7 @@
|
||||
<target>在加载地址数据时出错</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
|
||||
<context context-type="linenumber">113</context>
|
||||
<context context-type="linenumber">115</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1095,16 +1095,23 @@
|
||||
<target><x equiv-text="{{ multisigM }}" id="INTERPOLATION"/>-<x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/>多重签名</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">1</context>
|
||||
<context context-type="linenumber">5</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="aae004b987aaf258dea1829618651427b68283db">
|
||||
<source>Layer<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/> Peg-out</source>
|
||||
<target>第<x equiv-text="{{ network === 'liquid' ? '3' : '2' }}" id="INTERPOLATION"/>层 Peg-out</target>
|
||||
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
|
||||
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">2</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
|
||||
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1130,7 +1137,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.ts</context>
|
||||
<context context-type="linenumber">37</context>
|
||||
<context context-type="linenumber">38</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1294,7 +1301,7 @@
|
||||
<target>服务条款</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">206</context>
|
||||
<context context-type="linenumber">205</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
|
||||
@@ -1370,14 +1377,6 @@
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="981a90db6601297002689e5fae09d38b9e374b05">
|
||||
<source>If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
|
||||
<context context-type="linenumber">176</context>
|
||||
</context-group>
|
||||
<note from="description" priority="1">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit datatype="html" id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb">
|
||||
<source>Loading graphs...</source>
|
||||
<target>图表加载中...</target>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 12 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 17 KiB |
@@ -5,7 +5,6 @@
|
||||
"BISQ_SEPARATE_BACKEND": true,
|
||||
"ITEMS_PER_PAGE": 25,
|
||||
"KEEP_BLOCKS_AMOUNT": 8,
|
||||
"SPONSORS_ENABLED": false,
|
||||
"NGINX_PROTOCOL": "http",
|
||||
"NGINX_HOSTNAME": "127.0.0.1",
|
||||
"NGINX_PORT": "80"
|
||||
|
||||
@@ -4,8 +4,5 @@ source "$NVM_DIR/nvm.sh"
|
||||
for site in mainnet liquid testnet bisq
|
||||
do
|
||||
cd "${HOME}/${site}/backend/"
|
||||
screen -dmS "${site}" sh -c 'while true;do npm run start;sleep 1;done'
|
||||
screen -dmS "${site}" sh -c 'while true;do npm run start-production;sleep 1;done'
|
||||
done
|
||||
|
||||
#cd "${HOME}/webhook/"
|
||||
#screen -dmS webhook ./start
|
||||
|
||||
Reference in New Issue
Block a user