Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc13e9f9f7 | ||
|
|
cc0d8cb2b9 | ||
|
|
d50e25bed7 | ||
|
|
7f8329aa4d | ||
|
|
6619f92502 | ||
|
|
edce0d118a | ||
|
|
26ba41cb91 | ||
|
|
475baf5634 | ||
|
|
6866b12e84 | ||
|
|
2743b35ea2 | ||
|
|
d39207e097 | ||
|
|
033d1451d0 | ||
|
|
befb192651 | ||
|
|
7489d3360a | ||
|
|
2641ae0c8e | ||
|
|
32290d1e0d | ||
|
|
584ef87fc8 | ||
|
|
63b52b9d9b | ||
|
|
5f6b7d94b1 | ||
|
|
95a1c002eb | ||
|
|
52a1425498 | ||
|
|
51816e9938 | ||
|
|
2085833720 | ||
|
|
20ff62779d | ||
|
|
181cb8e03f | ||
|
|
cef6bc8345 | ||
|
|
a67d82ea94 | ||
|
|
89efd410fb | ||
|
|
eb0c20dd92 | ||
|
|
c733497e52 | ||
|
|
378a56b2c7 | ||
|
|
8e42d573ee | ||
|
|
a7adf3a345 | ||
|
|
ccdf41c5b6 |
2
.github/FUNDING.yml
vendored
@@ -1,6 +1,6 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
github: ['mempool'] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
|
||||
3
.github/workflows/on-tag.yml
vendored
@@ -34,6 +34,9 @@ jobs:
|
||||
- name: Checkout project
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Init repo for Dockerization
|
||||
run: docker/init.sh "$TAG"
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
id: qemu
|
||||
|
||||
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
@@ -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
@@ -0,0 +1 @@
|
||||
*.json
|
||||
@@ -1 +0,0 @@
|
||||
9d02ab1eb5ffb60d38128df903e47e11b95f13d5
|
||||
@@ -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",
|
||||
@@ -48,12 +49,5 @@
|
||||
"BISQ_MARKETS": {
|
||||
"ENABLED": false,
|
||||
"DATA_PATH": "/bisq/statsnode-data/btc_mainnet/db"
|
||||
},
|
||||
"SPONSORS": {
|
||||
"ENABLED": false,
|
||||
"BTCPAY_URL": "",
|
||||
"BTCPAY_AUTH": "",
|
||||
"BTCPAY_WEBHOOK_URL": "",
|
||||
"TWITTER_BEARER_AUTH": ""
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,198 +0,0 @@
|
||||
import config from '../config';
|
||||
import axios from 'axios';
|
||||
import { DB } from '../database';
|
||||
import logger from '../logger';
|
||||
|
||||
class Donations {
|
||||
private notifyDonationStatusCallback: ((invoiceId: string) => void) | undefined;
|
||||
private options = {
|
||||
baseURL: config.SPONSORS.BTCPAY_URL,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': config.SPONSORS.BTCPAY_AUTH,
|
||||
},
|
||||
timeout: 10000,
|
||||
};
|
||||
|
||||
sponsorsCache: any[] = [];
|
||||
|
||||
constructor() {}
|
||||
|
||||
public async $updateCache() {
|
||||
try {
|
||||
this.sponsorsCache = await this.$getDonationsFromDatabase('handle, image');
|
||||
} catch (e) {
|
||||
logger.warn('Setting sponsorsCache failed ' + e.message || e);
|
||||
}
|
||||
}
|
||||
|
||||
setNotfyDonationStatusCallback(fn: any): void {
|
||||
this.notifyDonationStatusCallback = fn;
|
||||
}
|
||||
|
||||
async $createRequest(amount: number, orderId: string): Promise<any> {
|
||||
logger.notice('New invoice request. Handle: ' + orderId + ' Amount: ' + amount + ' BTC');
|
||||
|
||||
const postData = {
|
||||
'price': amount,
|
||||
'orderId': orderId,
|
||||
'currency': 'BTC',
|
||||
'itemDesc': 'Sponsor mempool.space',
|
||||
'notificationUrl': config.SPONSORS.BTCPAY_WEBHOOK_URL,
|
||||
'redirectURL': 'https://mempool.space/about',
|
||||
};
|
||||
const response = await axios.post('/invoices', postData, this.options);
|
||||
return {
|
||||
id: response.data.data.id,
|
||||
amount: parseFloat(response.data.data.btcPrice),
|
||||
addresses: response.data.data.addresses,
|
||||
};
|
||||
}
|
||||
|
||||
async $handleWebhookRequest(data: any): Promise<void> {
|
||||
if (!data || !data.id) {
|
||||
return;
|
||||
}
|
||||
const response = await this.$getStatus(data.id);
|
||||
logger.notice(`Received BTCPayServer webhook. Invoice ID: ${data.id} Status: ${response.status} BTC Paid: ${response.btcPaid}`);
|
||||
if (response.status !== 'complete' && response.status !== 'confirmed' && response.status !== 'paid') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.notifyDonationStatusCallback) {
|
||||
this.notifyDonationStatusCallback(data.id);
|
||||
}
|
||||
|
||||
if (parseFloat(response.btcPaid) < 0.01) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (response.orderId !== '') {
|
||||
try {
|
||||
const userData = await this.$getTwitterUserData(response.orderId);
|
||||
const imageUrl = userData.profile_image_url.replace('normal', '200x200');
|
||||
const imageBlob = await this.$downloadProfileImageBlob(imageUrl);
|
||||
|
||||
logger.debug('Creating database entry for donation with invoice id: ' + response.id);
|
||||
await this.$addDonationToDatabase(response.btcPaid, userData.screen_name, userData.id, response.id, imageUrl, imageBlob);
|
||||
this.$updateCache();
|
||||
} catch (e) {
|
||||
logger.err(`Error fetching twitter data for handle ${response.orderId}: ${e.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
getSponsorImage(id: string): any | undefined {
|
||||
const sponsor = this.sponsorsCache.find((s) => s.handle === id);
|
||||
if (sponsor) {
|
||||
return sponsor.image;
|
||||
}
|
||||
}
|
||||
|
||||
async $getDonationsFromDatabase(fields: string): Promise<any[]> {
|
||||
try {
|
||||
const connection = await DB.pool.getConnection();
|
||||
const query = `SELECT ${fields} FROM donations ORDER BY id DESC`;
|
||||
const [rows] = await connection.query<any>(query);
|
||||
connection.release();
|
||||
return rows;
|
||||
} catch (e) {
|
||||
logger.err('$getDonationsFromDatabase() error: ' + e.message || e);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
private async $getOldDonations(): Promise<any[]> {
|
||||
try {
|
||||
const connection = await DB.pool.getConnection();
|
||||
const query = `SELECT * FROM donations WHERE twitter_id IS NULL AND handle != ''`;
|
||||
const [rows] = await connection.query<any>(query);
|
||||
connection.release();
|
||||
return rows;
|
||||
} catch (e) {
|
||||
logger.err('$getLegacyDonations() error' + e.message || e);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
private async $getStatus(id: string): Promise<any> {
|
||||
logger.debug('Fetching status for invoice: ' + id);
|
||||
const response = await axios.get('/invoices/' + id, this.options);
|
||||
logger.debug('Invoice status received: ' + JSON.stringify(response.data));
|
||||
return response.data.data;
|
||||
}
|
||||
|
||||
private async $addDonationToDatabase(btcPaid: number, handle: string, twitter_id: number | null,
|
||||
orderId: string, imageUrl: string, image: string): Promise<void> {
|
||||
try {
|
||||
const connection = await DB.pool.getConnection();
|
||||
const query = `INSERT IGNORE INTO donations(added, amount, handle, twitter_id, order_id, imageUrl, image) VALUES (NOW(), ?, ?, ?, ?, ?, FROM_BASE64(?))`;
|
||||
const params: (string | number | null)[] = [
|
||||
btcPaid,
|
||||
handle,
|
||||
twitter_id,
|
||||
orderId,
|
||||
imageUrl,
|
||||
image,
|
||||
];
|
||||
const [result]: any = await connection.query(query, params);
|
||||
connection.release();
|
||||
} catch (e) {
|
||||
logger.err('$addDonationToDatabase() error' + e.message || e);
|
||||
}
|
||||
}
|
||||
|
||||
private async $updateDonation(id: number, handle: string, twitterId: number, imageUrl: string, image: string): Promise<void> {
|
||||
try {
|
||||
const connection = await DB.pool.getConnection();
|
||||
const query = `UPDATE donations SET handle = ?, twitter_id = ?, imageUrl = ?, image = FROM_BASE64(?) WHERE id = ?`;
|
||||
const params: (string | number)[] = [
|
||||
handle,
|
||||
twitterId,
|
||||
imageUrl,
|
||||
image,
|
||||
id,
|
||||
];
|
||||
const [result]: any = await connection.query(query, params);
|
||||
connection.release();
|
||||
} catch (e) {
|
||||
logger.err('$updateDonation() error' + e.message || e);
|
||||
}
|
||||
}
|
||||
|
||||
private async $getTwitterUserData(handle: string): Promise<any> {
|
||||
logger.debug('Fetching Twitter API data...');
|
||||
const res = await axios.get(`https://api.twitter.com/1.1/users/show.json?screen_name=${handle}`, {
|
||||
headers: {
|
||||
Authorization: 'Bearer ' + config.SPONSORS.TWITTER_BEARER_AUTH
|
||||
},
|
||||
timeout: 10000,
|
||||
});
|
||||
logger.debug('Twitter user data fetched:' + JSON.stringify(res.data));
|
||||
return res.data;
|
||||
}
|
||||
|
||||
private async $downloadProfileImageBlob(url: string): Promise<string> {
|
||||
logger.debug('Fetching image blob...');
|
||||
const res = await axios.get(url, { responseType: 'arraybuffer', timeout: 10000 });
|
||||
logger.debug('Image downloaded.');
|
||||
return Buffer.from(res.data, 'utf8').toString('base64');
|
||||
}
|
||||
|
||||
private async refreshSponsors(): Promise<void> {
|
||||
const oldDonations = await this.$getOldDonations();
|
||||
oldDonations.forEach(async (donation: any) => {
|
||||
logger.debug('Migrating donation for handle: ' + donation.handle);
|
||||
try {
|
||||
const twitterData = await this.$getTwitterUserData(donation.handle);
|
||||
const imageUrl = twitterData.profile_image_url.replace('normal', '200x200');
|
||||
const imageBlob = await this.$downloadProfileImageBlob(imageUrl);
|
||||
await this.$updateDonation(donation.id, twitterData.screen_name, twitterData.id, imageUrl, imageBlob);
|
||||
} catch (e) {
|
||||
logger.err('Failed to migrate donation for handle: ' + donation.handle + '. ' + (e.message || e));
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default new Donations();
|
||||
@@ -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;
|
||||
@@ -51,13 +52,6 @@ interface IConfig {
|
||||
ENABLED: boolean;
|
||||
DATA_PATH: string;
|
||||
};
|
||||
SPONSORS: {
|
||||
ENABLED: boolean;
|
||||
BTCPAY_URL: string;
|
||||
BTCPAY_AUTH: string;
|
||||
BTCPAY_WEBHOOK_URL: string;
|
||||
TWITTER_BEARER_AUTH: string;
|
||||
};
|
||||
}
|
||||
|
||||
const defaults: IConfig = {
|
||||
@@ -68,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',
|
||||
@@ -111,13 +106,6 @@ const defaults: IConfig = {
|
||||
'ENABLED': false,
|
||||
'DATA_PATH': '/bisq/statsnode-data/btc_mainnet/db'
|
||||
},
|
||||
'SPONSORS': {
|
||||
'ENABLED': false,
|
||||
'BTCPAY_URL': '',
|
||||
'BTCPAY_AUTH': '',
|
||||
'BTCPAY_WEBHOOK_URL': '',
|
||||
'TWITTER_BEARER_AUTH': ''
|
||||
}
|
||||
};
|
||||
|
||||
class Config implements IConfig {
|
||||
@@ -130,7 +118,6 @@ class Config implements IConfig {
|
||||
STATISTICS: IConfig['STATISTICS'];
|
||||
BISQ_BLOCKS: IConfig['BISQ_BLOCKS'];
|
||||
BISQ_MARKETS: IConfig['BISQ_MARKETS'];
|
||||
SPONSORS: IConfig['SPONSORS'];
|
||||
|
||||
constructor() {
|
||||
const configs = this.merge(configFile, defaults);
|
||||
@@ -143,7 +130,6 @@ class Config implements IConfig {
|
||||
this.STATISTICS = configs.STATISTICS;
|
||||
this.BISQ_BLOCKS = configs.BISQ_BLOCKS;
|
||||
this.BISQ_MARKETS = configs.BISQ_MARKETS;
|
||||
this.SPONSORS = configs.SPONSORS;
|
||||
}
|
||||
|
||||
merge = (...objects: object[]): IConfig => {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { Express, Request, Response, NextFunction } from 'express';
|
||||
import * as express from 'express';
|
||||
import * as http from 'http';
|
||||
import * as https from 'https';
|
||||
import * as WebSocket from 'ws';
|
||||
import * as cluster from 'cluster';
|
||||
import axios from 'axios';
|
||||
@@ -17,7 +16,6 @@ import websocketHandler from './api/websocket-handler';
|
||||
import fiatConversion from './api/fiat-conversion';
|
||||
import bisq from './api/bisq/bisq';
|
||||
import bisqMarkets from './api/bisq/markets';
|
||||
import donations from './api/donations';
|
||||
import logger from './logger';
|
||||
import backendInfo from './api/backend-info';
|
||||
import loadingIndicators from './api/loading-indicators';
|
||||
@@ -25,7 +23,7 @@ import mempool from './api/mempool';
|
||||
|
||||
class Server {
|
||||
private wss: WebSocket.Server | undefined;
|
||||
private server: https.Server | http.Server | undefined;
|
||||
private server: http.Server | undefined;
|
||||
private app: Express;
|
||||
private currentBackendRetryInterval = 5;
|
||||
|
||||
@@ -87,10 +85,6 @@ class Server {
|
||||
|
||||
fiatConversion.startService();
|
||||
|
||||
if (config.SPONSORS.ENABLED) {
|
||||
donations.$updateCache();
|
||||
}
|
||||
|
||||
this.setUpHttpApiRoutes();
|
||||
this.setUpWebsocketHandling();
|
||||
this.runMainUpdateLoop();
|
||||
@@ -144,7 +138,6 @@ class Server {
|
||||
statistics.setNewStatisticsEntryCallback(websocketHandler.handleNewStatistic.bind(websocketHandler));
|
||||
blocks.setNewBlockCallback(websocketHandler.handleNewBlock.bind(websocketHandler));
|
||||
memPool.setMempoolChangedCallback(websocketHandler.handleMempoolChange.bind(websocketHandler));
|
||||
donations.setNotfyDonationStatusCallback(websocketHandler.handleNewDonation.bind(websocketHandler));
|
||||
fiatConversion.setProgressChangedCallback(websocketHandler.handleNewConversionRates.bind(websocketHandler));
|
||||
loadingIndicators.setProgressChangedCallback(websocketHandler.handleLoadingChanged.bind(websocketHandler));
|
||||
}
|
||||
@@ -156,6 +149,24 @@ class Server {
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'fees/mempool-blocks', routes.getMempoolBlocks)
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'backend-info', routes.getBackendInfo)
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'init-data', routes.getInitData)
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'donations', async (req, res) => {
|
||||
try {
|
||||
const response = await axios.get('https://mempool.space/api/v1/donations', { responseType: 'stream', timeout: 10000 });
|
||||
response.data.pipe(res);
|
||||
} catch (e) {
|
||||
res.status(500).end();
|
||||
}
|
||||
})
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'donations/images/:id', async (req, res) => {
|
||||
try {
|
||||
const response = await axios.get('https://mempool.space/api/v1/donations/images/' + req.params.id, {
|
||||
responseType: 'stream', timeout: 10000
|
||||
});
|
||||
response.data.pipe(res);
|
||||
} catch (e) {
|
||||
res.status(500).end();
|
||||
}
|
||||
})
|
||||
;
|
||||
|
||||
if (config.STATISTICS.ENABLED && config.DATABASE.ENABLED) {
|
||||
@@ -195,35 +206,6 @@ class Server {
|
||||
;
|
||||
}
|
||||
|
||||
if (config.SPONSORS.ENABLED) {
|
||||
this.app
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'donations', routes.getDonations.bind(routes))
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'donations/images/:id', routes.getSponsorImage.bind(routes))
|
||||
.post(config.MEMPOOL.API_URL_PREFIX + 'donations', routes.createDonationRequest.bind(routes))
|
||||
.post(config.MEMPOOL.API_URL_PREFIX + 'donations-webhook', routes.donationWebhook.bind(routes))
|
||||
;
|
||||
} else {
|
||||
this.app
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'donations', async (req, res) => {
|
||||
try {
|
||||
const response = await axios.get('https://mempool.space/api/v1/donations', { responseType: 'stream', timeout: 10000 });
|
||||
response.data.pipe(res);
|
||||
} catch (e) {
|
||||
res.status(500).end();
|
||||
}
|
||||
})
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'donations/images/:id', async (req, res) => {
|
||||
try {
|
||||
const response = await axios.get('https://mempool.space/api/v1/donations/images/' + req.params.id, {
|
||||
responseType: 'stream', timeout: 10000
|
||||
});
|
||||
response.data.pipe(res);
|
||||
} catch (e) {
|
||||
res.status(500).end();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (config.MEMPOOL.BACKEND !== 'esplora') {
|
||||
this.app
|
||||
.get(config.MEMPOOL.API_URL_PREFIX + 'mempool', routes.getMempool)
|
||||
|
||||
@@ -8,10 +8,9 @@ import mempool from './api/mempool';
|
||||
import bisq from './api/bisq/bisq';
|
||||
import websocketHandler from './api/websocket-handler';
|
||||
import bisqMarket from './api/bisq/markets-api';
|
||||
import { OptimizedStatistic, RequiredSpec, TransactionExtended } from './mempool.interfaces';
|
||||
import { RequiredSpec, TransactionExtended } from './mempool.interfaces';
|
||||
import { MarketsApiError } from './api/bisq/interfaces';
|
||||
import { IEsploraApi } from './api/bitcoin/esplora-api.interface';
|
||||
import donations from './api/donations';
|
||||
import logger from './logger';
|
||||
import bitcoinApi from './api/bitcoin/bitcoin-api-factory';
|
||||
import transactionUtils from './api/transaction-utils';
|
||||
@@ -99,79 +98,6 @@ class Routes {
|
||||
res.json(backendInfo.getBackendInfo());
|
||||
}
|
||||
|
||||
public async createDonationRequest(req: Request, res: Response) {
|
||||
const constraints: RequiredSpec = {
|
||||
'amount': {
|
||||
required: true,
|
||||
types: ['@float']
|
||||
},
|
||||
'orderId': {
|
||||
required: true,
|
||||
types: ['@string']
|
||||
}
|
||||
};
|
||||
|
||||
const p = this.parseRequestParameters(req.body, constraints);
|
||||
if (p.error) {
|
||||
res.status(400).send(p.error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (p.orderId !== '' && !/^(@|)[a-zA-Z0-9_]{1,15}$/.test(p.orderId)) {
|
||||
res.status(400).send('Invalid Twitter handle');
|
||||
return;
|
||||
}
|
||||
|
||||
if (p.amount < 0.001) {
|
||||
res.status(400).send('Amount needs to be at least 0.001');
|
||||
return;
|
||||
}
|
||||
|
||||
if (p.amount > 1000) {
|
||||
res.status(400).send('Amount too large');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const result = await donations.$createRequest(p.amount, p.orderId);
|
||||
res.json(result);
|
||||
} catch (e) {
|
||||
res.status(500).send(e.message);
|
||||
}
|
||||
}
|
||||
|
||||
public async getDonations(req: Request, res: Response) {
|
||||
try {
|
||||
const result = await donations.$getDonationsFromDatabase('handle, imageUrl');
|
||||
res.json(result);
|
||||
} catch (e) {
|
||||
res.status(500).send(e.message);
|
||||
}
|
||||
}
|
||||
|
||||
public async getSponsorImage(req: Request, res: Response) {
|
||||
try {
|
||||
const result = await donations.getSponsorImage(req.params.id);
|
||||
if (result) {
|
||||
res.set('Content-Type', 'image/jpeg');
|
||||
res.send(result);
|
||||
} else {
|
||||
res.status(404).end();
|
||||
}
|
||||
} catch (e) {
|
||||
res.status(500).send(e.message);
|
||||
}
|
||||
}
|
||||
|
||||
public async donationWebhook(req: Request, res: Response) {
|
||||
try {
|
||||
donations.$handleWebhookRequest(req.body);
|
||||
res.end();
|
||||
} catch (e) {
|
||||
res.status(500).send(e);
|
||||
}
|
||||
}
|
||||
|
||||
public getBisqStats(req: Request, res: Response) {
|
||||
const result = bisq.getStats();
|
||||
res.json(result);
|
||||
|
||||
99
docker/README.md
Normal file
@@ -0,0 +1,99 @@
|
||||
# Docker
|
||||
|
||||
## Initialization
|
||||
|
||||
In an empty dir create 2 sub-dirs
|
||||
|
||||
```bash
|
||||
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
|
||||
|
||||
Your dir should now look like that:
|
||||
|
||||
```bash
|
||||
$ls -R
|
||||
.:
|
||||
data mysql
|
||||
|
||||
./data:
|
||||
|
||||
./mysql:
|
||||
data db-scripts
|
||||
|
||||
./mysql/data:
|
||||
|
||||
./mysql/db-scripts:
|
||||
mariadb-structure.sql
|
||||
```
|
||||
|
||||
In the main dir add the following `docker-compose.yml`
|
||||
|
||||
```bash
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
web:
|
||||
image: mempool/frontend:latest
|
||||
user: "1000:1000"
|
||||
restart: on-failure
|
||||
stop_grace_period: 1m
|
||||
command: "./wait-for db:3306 --timeout=720 -- nginx -g 'daemon off;'"
|
||||
ports:
|
||||
- 80:8080
|
||||
environment:
|
||||
FRONTEND_HTTP_PORT: "8080"
|
||||
BACKEND_MAINNET_HTTP_HOST: "api"
|
||||
api:
|
||||
image: mempool/backend:latest
|
||||
user: "1000:1000"
|
||||
restart: on-failure
|
||||
stop_grace_period: 1m
|
||||
command: "./wait-for-it.sh db:3306 --timeout=720 --strict -- ./start.sh"
|
||||
volumes:
|
||||
- ./data:/backend/cache
|
||||
environment:
|
||||
RPC_HOST: "127.0.0.1"
|
||||
RPC_PORT: "8332"
|
||||
RPC_USER: "mempool"
|
||||
RPC_PASS: "mempool"
|
||||
ELECTRS_HOST: "127.0.0.1"
|
||||
ELECTRS_PORT: "50002"
|
||||
MYSQL_HOST: "db"
|
||||
MYSQL_PORT: "3306"
|
||||
MYSQL_DATABASE: "mempool"
|
||||
MYSQL_USER: "mempool"
|
||||
MYSQL_PASS: "mempool"
|
||||
BACKEND_MAINNET_HTTP_PORT: "8999"
|
||||
CACHE_DIR: "/backend/cache/"
|
||||
db:
|
||||
image: mariadb:10.5.8
|
||||
user: "1000:1000"
|
||||
restart: on-failure
|
||||
stop_grace_period: 1m
|
||||
volumes:
|
||||
- ./mysql/data:/var/lib/mysql
|
||||
- ./mysql/db-scripts:/docker-entrypoint-initdb.d
|
||||
environment:
|
||||
MYSQL_DATABASE: "mempool"
|
||||
MYSQL_USER: "mempool"
|
||||
MYSQL_PASSWORD: "mempool"
|
||||
MYSQL_ROOT_PASSWORD: "admin"
|
||||
|
||||
```
|
||||
|
||||
You can update all the environment variables inside the API container, especially the RPC and ELECTRS ones
|
||||
|
||||
## Run it
|
||||
|
||||
To run our docker-compose use the following cmd:
|
||||
|
||||
```bash
|
||||
docker-compose up
|
||||
```
|
||||
|
||||
If everything went okay you should see the beautiful mempool :grin:
|
||||
|
||||
If you get stuck on "loading blocks", this means the websocket can't connect.
|
||||
Check your nginx proxy setup, firewalls, etc. and open an issue if you need help.
|
||||
@@ -3,17 +3,12 @@ FROM node:12-buster-slim AS builder
|
||||
WORKDIR /build
|
||||
COPY . .
|
||||
|
||||
RUN sed -i "s!../.git/refs/heads/master!master!g" ./src/api/backend-info.ts
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y build-essential python3 pkg-config
|
||||
RUN npm ci --production
|
||||
RUN npm i typescript
|
||||
RUN npm run build
|
||||
|
||||
RUN mv ./docker/* .
|
||||
RUN mv ./mempool-config-docker.json ./mempool-config.json
|
||||
|
||||
FROM node:12-buster-slim
|
||||
|
||||
WORKDIR /backend
|
||||
@@ -27,9 +27,9 @@
|
||||
"ENABLED": true,
|
||||
"HOST": "__MYSQL_HOST__",
|
||||
"PORT": __MYSQL_PORT__,
|
||||
"DATABASE": "mempool",
|
||||
"USERNAME": "mempool",
|
||||
"PASSWORD": "mempool"
|
||||
"DATABASE": "__MYSQL_DATABASE__",
|
||||
"USERNAME": "__MYSQL_USERNAME__",
|
||||
"PASSWORD": "__MYSQL_PASSWORD__"
|
||||
},
|
||||
"STATISTICS": {
|
||||
"ENABLED": true,
|
||||
@@ -14,6 +14,9 @@ __ELECTRS_MAINNET_HTTP_PORT__=${ELECTRS_PORT:=50002}
|
||||
# MYSQL
|
||||
__MYSQL_HOST__=${MYSQL_HOST:=127.0.0.1}
|
||||
__MYSQL_PORT__=${MYSQL_PORT:=3306}
|
||||
__MYSQL_DATABASE__=${MYSQL_DATABASE:=mempool}
|
||||
__MYSQL_USERNAME__=${MYSQL_USER:=mempool}
|
||||
__MYSQL_PASSWORD__=${MYSQL_PASS:=mempool}
|
||||
|
||||
mkdir -p "${__MEMPOOL_BACKEND_MAINNET_CACHE_DIR__}"
|
||||
|
||||
@@ -25,6 +28,9 @@ sed -i "s/__ELECTRS_MAINNET_HTTP_HOST__/${__ELECTRS_MAINNET_HTTP_HOST__}/g" memp
|
||||
sed -i "s/__ELECTRS_MAINNET_HTTP_PORT__/${__ELECTRS_MAINNET_HTTP_PORT__}/g" mempool-config.json
|
||||
sed -i "s/__MYSQL_HOST__/${__MYSQL_HOST__}/g" mempool-config.json
|
||||
sed -i "s/__MYSQL_PORT__/${__MYSQL_PORT__}/g" mempool-config.json
|
||||
sed -i "s/__MYSQL_DATABASE__/${__MYSQL_DATABASE__}/g" mempool-config.json
|
||||
sed -i "s/__MYSQL_USERNAME__/${__MYSQL_USERNAME__}/g" mempool-config.json
|
||||
sed -i "s/__MYSQL_PASSWORD__/${__MYSQL_PASSWORD__}/g" mempool-config.json
|
||||
sed -i "s!__MEMPOOL_BACKEND_MAINNET_CACHE_DIR__!${__MEMPOOL_BACKEND_MAINNET_CACHE_DIR__}!g" mempool-config.json
|
||||
sed -i "s/__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/${__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__}/g" mempool-config.json
|
||||
|
||||
@@ -7,8 +7,6 @@ RUN apt-get install -y build-essential rsync
|
||||
RUN npm i
|
||||
RUN npm run build
|
||||
|
||||
RUN mv ./docker/* .
|
||||
|
||||
FROM nginx:1.17.8-alpine
|
||||
|
||||
WORKDIR /patch
|
||||
@@ -25,13 +23,12 @@ RUN chmod +x /patch/wait-for
|
||||
RUN chown -R 1000:1000 /patch && chmod -R 755 /patch && \
|
||||
chown -R 1000:1000 /var/cache/nginx && \
|
||||
chown -R 1000:1000 /var/log/nginx && \
|
||||
chown -R 1000:1000 /etc/nginx/nginx.conf && \
|
||||
chown -R 1000:1000 /etc/nginx/conf.d
|
||||
RUN touch /var/run/nginx.pid && \
|
||||
chown -R 1000:1000 /var/run/nginx.pid
|
||||
|
||||
USER 1000
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
ENTRYPOINT ["/patch/entrypoint.sh"]
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
@@ -1,8 +1,13 @@
|
||||
#!/bin/sh
|
||||
__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__=${BACKEND_MAINNET_HTTP_HOST:=127.0.0.1}
|
||||
__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__=${BACKEND_MAINNET_HTTP_PORT:=8999}
|
||||
__MEMPOOL_FRONTEND_HTTP_PORT__=${FRONTEND_HTTP_PORT:=8080}
|
||||
|
||||
sed -i "s/__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__/${__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__}/g" /etc/nginx/conf.d/nginx-mempool.conf
|
||||
sed -i "s/__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/${__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__}/g" /etc/nginx/conf.d/nginx-mempool.conf
|
||||
|
||||
cp /etc/nginx/nginx.conf /patch/nginx.conf
|
||||
sed -i "s/__MEMPOOL_FRONTEND_HTTP_PORT__/${__MEMPOOL_FRONTEND_HTTP_PORT__}/g" /patch/nginx.conf
|
||||
cat /patch/nginx.conf > /etc/nginx/nginx.conf
|
||||
|
||||
exec "$@"
|
||||
18
docker/init.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
#backend
|
||||
gitMaster="\.\.\/\.git\/refs\/heads\/master"
|
||||
git ls-remote https://github.com/mempool/mempool.git $1 | awk '{ print $1}' > ./backend/master
|
||||
cp ./docker/backend/* ./backend/
|
||||
sed -i "s/${gitMaster}/master/g" ./backend/src/api/backend-info.ts
|
||||
|
||||
#frontend
|
||||
localhostIP="127.0.0.1"
|
||||
cp ./docker/frontend/* ./frontend
|
||||
cp ./nginx.conf ./frontend/
|
||||
cp ./nginx-mempool.conf ./frontend/
|
||||
sed -i "s/${localhostIP}:80/0.0.0.0:__MEMPOOL_FRONTEND_HTTP_PORT__/g" ./frontend/nginx.conf
|
||||
sed -i "s/${localhostIP}/0.0.0.0/g" ./frontend/nginx.conf
|
||||
sed -i "s/user nobody;//g" ./frontend/nginx.conf
|
||||
sed -i "s!/etc/nginx/nginx-mempool.conf!/etc/nginx/conf.d/nginx-mempool.conf!g" ./frontend/nginx.conf
|
||||
sed -i "s/${localhostIP}:8999/__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__:__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/g" ./frontend/nginx-mempool.conf
|
||||
@@ -1,62 +0,0 @@
|
||||
access_log /var/log/nginx/access_mempool.log;
|
||||
error_log /var/log/nginx/error_mempool.log;
|
||||
|
||||
root /var/www/mempool/browser;
|
||||
|
||||
index index.html;
|
||||
|
||||
# fallback for all URLs i.e. /address/foo /tx/foo /block/000
|
||||
location / {
|
||||
try_files /$lang/$uri /$lang/$uri/ $uri $uri/ /en-US/$uri @index-redirect;
|
||||
}
|
||||
location @index-redirect {
|
||||
add_header vary accept-language;
|
||||
rewrite (.*) /$lang/index.html;
|
||||
}
|
||||
|
||||
# location block using regex are matched in order
|
||||
|
||||
# used to rewrite resources from /<lang>/ to /en-US/
|
||||
location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|ka|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/resources/ {
|
||||
rewrite ^/[a-zA-Z-]*/resources/(.*) /en-US/resources/$1;
|
||||
}
|
||||
# used for cookie override
|
||||
location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|ka|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/ {
|
||||
try_files $uri $uri/ /$1/index.html =404;
|
||||
}
|
||||
|
||||
# static API docs
|
||||
location = /api {
|
||||
try_files $uri $uri/ /en-US/index.html =404;
|
||||
}
|
||||
location = /api/ {
|
||||
try_files $uri $uri/ /en-US/index.html =404;
|
||||
}
|
||||
|
||||
# mainnet API
|
||||
location /api/v1/donations {
|
||||
proxy_pass https://mempool.space;
|
||||
}
|
||||
location /api/v1/donations/images {
|
||||
proxy_pass https://mempool.space;
|
||||
}
|
||||
location /api/v1/ws {
|
||||
proxy_pass http://__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__:__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
}
|
||||
location /api/v1 {
|
||||
proxy_pass http://__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__:__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/api/v1;
|
||||
}
|
||||
location /api/ {
|
||||
proxy_pass http://__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__:__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/api/v1/;
|
||||
}
|
||||
|
||||
# mainnet API
|
||||
location /ws {
|
||||
proxy_pass http://__MEMPOOL_BACKEND_MAINNET_HTTP_HOST__:__MEMPOOL_BACKEND_MAINNET_HTTP_PORT__/;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
}
|
||||
@@ -1,128 +0,0 @@
|
||||
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
worker_processes auto;
|
||||
worker_rlimit_nofile 100000;
|
||||
|
||||
events {
|
||||
worker_connections 9000;
|
||||
multi_accept on;
|
||||
}
|
||||
|
||||
http {
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
|
||||
server_tokens off;
|
||||
server_name_in_redirect off;
|
||||
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log;
|
||||
|
||||
# reset timed out connections freeing ram
|
||||
reset_timedout_connection on;
|
||||
# maximum time between packets the client can pause when sending nginx any data
|
||||
client_body_timeout 10s;
|
||||
# maximum time the client has to send the entire header to nginx
|
||||
client_header_timeout 10s;
|
||||
# timeout which a single keep-alive client connection will stay open
|
||||
keepalive_timeout 69s;
|
||||
# maximum time between packets nginx is allowed to pause when sending the client data
|
||||
send_timeout 10s;
|
||||
|
||||
# number of requests per connection, does not affect SPDY
|
||||
keepalive_requests 100;
|
||||
|
||||
# enable gzip compression
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_comp_level 6;
|
||||
gzip_min_length 1000;
|
||||
gzip_proxied expired no-cache no-store private auth;
|
||||
# text/html is always compressed by gzip module
|
||||
gzip_types application/javascript application/json application/ld+json application/manifest+json application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard;
|
||||
|
||||
# limit request body size
|
||||
client_max_body_size 10m;
|
||||
|
||||
# proxy cache
|
||||
proxy_cache off;
|
||||
proxy_cache_path /var/cache/nginx keys_zone=cache:20m levels=1:2 inactive=600s max_size=500m;
|
||||
types_hash_max_size 2048;
|
||||
|
||||
# exempt localhost from rate limit
|
||||
geo $limited_ip {
|
||||
default 1;
|
||||
0.0.0.0 0;
|
||||
}
|
||||
map $limited_ip $limited_ip_key {
|
||||
1 $binary_remote_addr;
|
||||
0 '';
|
||||
}
|
||||
|
||||
# rate limit requests
|
||||
limit_req_zone $limited_ip_key zone=api:5m rate=200r/m;
|
||||
limit_req_zone $limited_ip_key zone=electrs:5m rate=2000r/m;
|
||||
limit_req_status 429;
|
||||
|
||||
# rate limit connections
|
||||
limit_conn_zone $limited_ip_key zone=websocket:10m;
|
||||
limit_conn_status 429;
|
||||
|
||||
map $http_accept_language $header_lang {
|
||||
default en-US;
|
||||
~*^en-US en-US;
|
||||
~*^en en-US;
|
||||
~*^ar ar;
|
||||
~*^cs cs;
|
||||
~*^de de;
|
||||
~*^es es;
|
||||
~*^fa fa;
|
||||
~*^fr fr;
|
||||
~*^ja ja;
|
||||
~*^ka ka;
|
||||
~*^hu hu;
|
||||
~*^nl nl;
|
||||
~*^nn nn;
|
||||
~*^pt pt;
|
||||
~*^sl sl;
|
||||
~*^sv sv;
|
||||
~*^tr tr;
|
||||
~*^uk uk;
|
||||
~*^vi vi;
|
||||
~*^zh zh;
|
||||
}
|
||||
|
||||
map $cookie_lang $lang {
|
||||
default $header_lang;
|
||||
~*^en-US en-US;
|
||||
~*^en en-US;
|
||||
~*^ar ar;
|
||||
~*^cs cs;
|
||||
~*^de de;
|
||||
~*^es es;
|
||||
~*^fa fa;
|
||||
~*^fr fr;
|
||||
~*^ja ja;
|
||||
~*^ka ka;
|
||||
~*^hu hu;
|
||||
~*^nl nl;
|
||||
~*^nn nn;
|
||||
~*^pt pt;
|
||||
~*^sl sl;
|
||||
~*^sv sv;
|
||||
~*^tr tr;
|
||||
~*^uk uk;
|
||||
~*^vi vi;
|
||||
~*^zh zh;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 0.0.0.0:8080;
|
||||
include /etc/nginx/conf.d/nginx-mempool.conf;
|
||||
}
|
||||
}
|
||||
@@ -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,4 +1,8 @@
|
||||
{
|
||||
"/api/v1/donations": {
|
||||
"target": "http://localhost:9000/",
|
||||
"secure": false
|
||||
},
|
||||
"/api/v1": {
|
||||
"target": "http://localhost:8999/",
|
||||
"secure": false
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td i18n="BSQ token market cap">Market cap</td>
|
||||
<td><app-fiat [value]="price * (stats.minted - stats.burnt) / 100"></app-fiat></td>
|
||||
<td><app-fiat [value]="price * (stats.minted - stats.burnt)"></app-fiat></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@@ -83,4 +83,4 @@
|
||||
<td><span class="skeleton-loader"></span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</ng-template>
|
||||
</ng-template>
|
||||
|
||||
@@ -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.0
|
||||
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>
|
||||
|
||||
@@ -173,10 +173,9 @@
|
||||
|
||||
<div *ngIf="donationStatus === 4" class="text-center">
|
||||
<h2><span i18n="about.sponsor.donation-confirmed">Donation confirmed!</span><br><span i18n="about.sponsor.thank-you">Thank you!</span></h2>
|
||||
<p i18n="about.sponsor.sponsor-completed">If you specified a Twitter handle, the profile photo should now be visible on this page when you reload.</p>
|
||||
</div>
|
||||
|
||||
<br><br><br><br>
|
||||
<br><br><br>
|
||||
|
||||
<a target="_blank" class="m-2 fw6 mb3 mt2 truncate black-80 f4 link" href="https://github.com/mempool/mempool">
|
||||
<span class="dib v-mid">
|
||||
@@ -190,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>
|
||||
|
||||
@@ -1,27 +1,28 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { Component, OnDestroy, OnInit } from '@angular/core';
|
||||
import { WebsocketService } from '../../services/websocket.service';
|
||||
import { SeoService } from 'src/app/services/seo.service';
|
||||
import { StateService } from 'src/app/services/state.service';
|
||||
import { Observable } from 'rxjs';
|
||||
import { Observable, Subscription } from 'rxjs';
|
||||
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||||
import { ApiService } from 'src/app/services/api.service';
|
||||
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
|
||||
import { map } from 'rxjs/operators';
|
||||
import { delay, map, retryWhen, switchMap, tap } from 'rxjs/operators';
|
||||
|
||||
@Component({
|
||||
selector: 'app-about',
|
||||
templateUrl: './about.component.html',
|
||||
styleUrls: ['./about.component.scss'],
|
||||
})
|
||||
export class AboutComponent implements OnInit {
|
||||
export class AboutComponent implements OnInit, OnDestroy {
|
||||
gitCommit$: Observable<string>;
|
||||
donationForm: FormGroup;
|
||||
paymentForm: FormGroup;
|
||||
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;
|
||||
|
||||
constructor(
|
||||
private websocketService: WebsocketService,
|
||||
@@ -50,23 +51,37 @@ export class AboutComponent implements OnInit {
|
||||
.subscribe((sponsors) => {
|
||||
this.sponsors = sponsors;
|
||||
});
|
||||
}
|
||||
|
||||
this.apiService.getDonation$()
|
||||
this.stateService.donationConfirmed$.subscribe(() => this.donationStatus = 4);
|
||||
ngOnDestroy() {
|
||||
if (this.requestSubscription) {
|
||||
this.requestSubscription.unsubscribe();
|
||||
}
|
||||
}
|
||||
|
||||
submitDonation() {
|
||||
if (this.donationForm.invalid) {
|
||||
return;
|
||||
}
|
||||
this.apiService.requestDonation$(
|
||||
this.requestSubscription = this.apiService.requestDonation$(
|
||||
this.donationForm.get('amount').value,
|
||||
this.donationForm.get('handle').value
|
||||
)
|
||||
.subscribe((response) => {
|
||||
this.websocketService.trackDonation(response.id);
|
||||
this.donationObj = response;
|
||||
this.donationStatus = 3;
|
||||
.pipe(
|
||||
tap((response) => {
|
||||
this.donationObj = response;
|
||||
this.donationStatus = 3;
|
||||
}),
|
||||
switchMap(() => this.apiService.checkDonation$(this.donationObj.id)
|
||||
.pipe(
|
||||
retryWhen((errors) => errors.pipe(delay(2000)))
|
||||
)
|
||||
)
|
||||
).subscribe(() => {
|
||||
this.donationStatus = 4;
|
||||
if (this.donationForm.get('handle').value) {
|
||||
this.sponsors.unshift({ handle: this.donationForm.get('handle').value });
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -43,19 +43,23 @@ export class AddressLabelsComponent implements OnInit {
|
||||
} else {
|
||||
this.liquid = 'Emergency Peg Out';
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
[
|
||||
{regexp: /^OP_DUP OP_HASH160/, label: 'HTLC'},
|
||||
// {regexp: /^OP_DUP OP_HASH160/, label: 'HTLC'},
|
||||
{regexp: /^OP_IF OP_PUSHBYTES_33 \w{33} OP_ELSE OP_PUSHBYTES_2 \w{2} OP_CSV OP_DROP/, label: 'Force Close'}
|
||||
].forEach((item) => {
|
||||
if (item.regexp.test(this.vin.inner_witnessscript_asm)) {
|
||||
this.lightning = item.label;
|
||||
return;
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
if (this.lightning) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.vin.inner_witnessscript_asm.indexOf('OP_CHECKMULTISIG') > -1) {
|
||||
const matches = this.getMatches(this.vin.inner_witnessscript_asm, /OP_PUSHNUM_([0-9])/g, 1);
|
||||
this.multisig = true;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -15,13 +15,11 @@ export interface WebsocketResponse {
|
||||
tx?: Transaction;
|
||||
rbfTransaction?: Transaction;
|
||||
transactions?: TransactionStripped[];
|
||||
donationConfirmed?: boolean;
|
||||
loadingIndicators?: ILoadingIndicators;
|
||||
'track-tx'?: string;
|
||||
'track-address'?: string;
|
||||
'track-asset'?: string;
|
||||
'watch-mempool'?: boolean;
|
||||
'track-donation'?: string;
|
||||
}
|
||||
|
||||
export interface MempoolBlock {
|
||||
|
||||
@@ -77,6 +77,10 @@ export class ApiService {
|
||||
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/donations');
|
||||
}
|
||||
|
||||
checkDonation$(orderId: string): Observable<any[]> {
|
||||
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/donations/check?order_id=' + orderId);
|
||||
}
|
||||
|
||||
getInitData$(): Observable<WebsocketResponse> {
|
||||
return this.httpClient.get<WebsocketResponse>(this.apiBaseUrl + this.apiBasePath + '/api/v1/init-data');
|
||||
}
|
||||
|
||||
@@ -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',
|
||||
@@ -64,7 +64,6 @@ export class StateService {
|
||||
vbytesPerSecond$ = new ReplaySubject<number>(1);
|
||||
lastDifficultyAdjustment$ = new ReplaySubject<number>(1);
|
||||
gitCommit$ = new ReplaySubject<string>(1);
|
||||
donationConfirmed$ = new Subject();
|
||||
loadingIndicators$ = new ReplaySubject<ILoadingIndicators>(1);
|
||||
|
||||
live2Chart$ = new Subject<OptimizedMempoolStats>();
|
||||
|
||||
@@ -126,10 +126,6 @@ export class WebsocketService {
|
||||
this.isTrackingTx = true;
|
||||
}
|
||||
|
||||
trackDonation(id: string) {
|
||||
this.websocketSubject.next({ 'track-donation': id });
|
||||
}
|
||||
|
||||
stopTrackingTransaction() {
|
||||
if (!this.isTrackingTx) {
|
||||
return;
|
||||
@@ -289,9 +285,5 @@ export class WebsocketService {
|
||||
if (response['git-commit']) {
|
||||
this.stateService.gitCommit$.next(response['git-commit']);
|
||||
}
|
||||
|
||||
if (response.donationConfirmed) {
|
||||
this.stateService.donationConfirmed$.next(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -46,7 +46,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>
|
||||
@@ -67,7 +67,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>
|
||||
@@ -88,7 +88,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 priority="1" from="description">Transaction unconfirmed state</note>
|
||||
<note priority="1" from="meaning">transaction.unconfirmed</note>
|
||||
@@ -242,7 +242,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>
|
||||
@@ -468,7 +468,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 priority="1" from="description">transactions-list.nsequence</note>
|
||||
</trans-unit>
|
||||
@@ -476,7 +476,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 priority="1" from="description">ScriptSig (ASM)</note>
|
||||
<note priority="1" from="meaning">transactions-list.scriptsig.asm</note>
|
||||
@@ -485,7 +485,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 priority="1" from="description">ScriptSig (HEX)</note>
|
||||
<note priority="1" from="meaning">transactions-list.scriptsig.hex</note>
|
||||
@@ -494,7 +494,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 priority="1" from="description">transactions-list.witness</note>
|
||||
</trans-unit>
|
||||
@@ -502,7 +502,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 priority="1" from="description">transactions-list.p2sh-redeem-script</note>
|
||||
</trans-unit>
|
||||
@@ -510,7 +510,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 priority="1" from="description">transactions-list.p2wsh-witness-script</note>
|
||||
</trans-unit>
|
||||
@@ -518,7 +518,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 priority="1" from="description">transactions-list.previous-output-script</note>
|
||||
</trans-unit>
|
||||
@@ -526,11 +526,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 priority="1" from="description">transactions-list.load-all</note>
|
||||
</trans-unit>
|
||||
@@ -538,7 +538,7 @@
|
||||
<source>Peg-out to <x id="START_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="<ng-container *ngTemplateOutlet="pegOutLink">"/><x id="CLOSE_TAG_NG_CONTAINER" ctype="x-ng_container" equiv-text="</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 priority="1" from="description">transactions-list.peg-out-to</note>
|
||||
</trans-unit>
|
||||
@@ -546,7 +546,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 priority="1" from="description">ScriptPubKey (ASM)</note>
|
||||
<note priority="1" from="meaning">transactions-list.scriptpubkey.asm</note>
|
||||
@@ -555,7 +555,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 priority="1" from="description">ScriptPubKey (HEX)</note>
|
||||
<note priority="1" from="meaning">transactions-list.scriptpubkey.hex</note>
|
||||
@@ -564,7 +564,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>
|
||||
@@ -580,7 +580,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 priority="1" from="description">transactions-list.vout.scriptpubkey-type.data</note>
|
||||
</trans-unit>
|
||||
@@ -588,7 +588,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 priority="1" from="description">sat</note>
|
||||
<note priority="1" from="meaning">shared.sat</note>
|
||||
@@ -597,7 +597,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>
|
||||
@@ -605,7 +605,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>
|
||||
@@ -841,11 +841,23 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">shared.address</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="7e69426bd97a606d8ae6026762858e6e7c86a1fd" datatype="html">
|
||||
<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 priority="1" from="description">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="a9b87c3aa4731edee661c8287ef3aab71799c0b8" datatype="html">
|
||||
<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>
|
||||
@@ -857,7 +869,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>
|
||||
@@ -869,23 +881,11 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">address.total-sent</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="7e69426bd97a606d8ae6026762858e6e7c86a1fd" datatype="html">
|
||||
<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 priority="1" from="description">address.balance</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="714e34125b3343df73f19ec800b43be95217d5d4" datatype="html">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ (transactions?.length | number) || '?' }}"/> of <x id="INTERPOLATION_1" equiv-text="{{ txCount | number }}"/> 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 priority="1" from="description">X of X Address Transaction</note>
|
||||
</trans-unit>
|
||||
@@ -893,7 +893,7 @@
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ (transactions?.length | number) || '?' }}"/> of <x id="INTERPOLATION_1" equiv-text="{{ txCount | number }}"/> 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 priority="1" from="description">X of X Address Transactions (Plural)</note>
|
||||
</trans-unit>
|
||||
@@ -901,7 +901,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 priority="1" from="description">address.error.loading-address-data</note>
|
||||
</trans-unit>
|
||||
@@ -1020,15 +1020,23 @@
|
||||
<source>multisig <x id="INTERPOLATION" equiv-text="{{ multisigM }}"/> of <x id="INTERPOLATION_1" equiv-text="{{ multisigN }}"/></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 priority="1" from="description">address-labels.multisig</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="aae004b987aaf258dea1829618651427b68283db" datatype="html">
|
||||
<source>Layer<x id="INTERPOLATION" equiv-text="{{ network === 'liquid' ? '3' : '2' }}"/> Peg-out</source>
|
||||
<trans-unit id="31c09dcc0ab351767631539b208d5f7de4005473" datatype="html">
|
||||
<source>Lightning <x id="INTERPOLATION" equiv-text="{{ lightning }}"/></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 priority="1" from="description">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="696ade981a05c12e10df38ba6218c76e318813b3" datatype="html">
|
||||
<source>Liquid <x id="INTERPOLATION" equiv-text="{{ liquid }}"/></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 priority="1" from="description">address-labels.upper-layer-peg-out</note>
|
||||
</trans-unit>
|
||||
@@ -1052,7 +1060,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 priority="1" from="description">master-page.about</note>
|
||||
</trans-unit>
|
||||
@@ -1199,7 +1207,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>
|
||||
@@ -1268,14 +1276,6 @@
|
||||
</context-group>
|
||||
<note priority="1" from="description">about.sponsor.thank-you</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="981a90db6601297002689e5fae09d38b9e374b05" datatype="html">
|
||||
<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 priority="1" from="description">about.sponsor.sponsor-completed</note>
|
||||
</trans-unit>
|
||||
<trans-unit id="ff4b7f4070be9e876c7610d99b9dbd53ff19dceb" datatype="html">
|
||||
<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>
|
||||
@@ -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>
|
||||
|
||||
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 17 KiB |
BIN
frontend/src/resources/screenshots/v2.1.0-dashboard.png
Normal file
|
After Width: | Height: | Size: 482 KiB |
@@ -84,24 +84,3 @@ ALTER TABLE `transactions`
|
||||
|
||||
ALTER TABLE `statistics`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
|
||||
CREATE TABLE `donations` (
|
||||
`id` int(11) NOT NULL,
|
||||
`added` datetime NOT NULL,
|
||||
`amount` float NOT NULL,
|
||||
`handle` varchar(250) NOT NULL,
|
||||
`order_id` varchar(25) NOT NULL,
|
||||
`imageUrl` varchar(250) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
ALTER TABLE `donations`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
ALTER TABLE `donations`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
||||
|
||||
ALTER TABLE `donations` ADD UNIQUE(`order_id`);
|
||||
|
||||
ALTER TABLE `donations` ADD `image` MEDIUMBLOB NULL AFTER `imageUrl`;
|
||||
ALTER TABLE `donations` ADD `twitter_id` VARCHAR(250) NULL AFTER `handle`;
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
[mysqld]
|
||||
sql_mode="NO_AUTO_VALUE_ON_ZERO"
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/local/bin/zsh
|
||||
cd /electrs
|
||||
cd $HOME/electrs
|
||||
source $HOME/.cargo/env
|
||||
export PATH=$HOME/.cargo/bin:$PATH
|
||||
|
||||
@@ -11,9 +11,11 @@ do
|
||||
-- \
|
||||
-vvvv \
|
||||
--address-search \
|
||||
--daemon-dir /bitcoin \
|
||||
--db-dir /electrs \
|
||||
--daemon-dir $HOME \
|
||||
--http-addr '[::]:3000' \
|
||||
--cookie 'user:pass' \
|
||||
--precache-scripts /electrs/contrib/popular-scripts.txt
|
||||
sleep 1
|
||||
--precache-scripts $HOME/electrs/contrib/popular-scripts.txt
|
||||
|
||||
sleep 3
|
||||
done
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/usr/local/bin/zsh
|
||||
cd /electrs
|
||||
cd $HOME/electrs
|
||||
source $HOME/.cargo/env
|
||||
export PATH=$HOME/.cargo/bin:$PATH
|
||||
|
||||
@@ -9,11 +9,13 @@ do
|
||||
--release \
|
||||
--bin electrs \
|
||||
-- \
|
||||
-vv \
|
||||
-vvvv \
|
||||
--network testnet \
|
||||
--daemon-dir /bitcoin \
|
||||
--db-dir /electrs \
|
||||
--daemon-dir $HOME \
|
||||
--http-addr '[::]:3002' \
|
||||
--cookie 'user:pass' \
|
||||
--precache-scripts /electrs/contrib/popular-scripts.txt
|
||||
sleep 1
|
||||
--precache-scripts $HOME/electrs/contrib/popular-scripts.txt
|
||||
|
||||
sleep 3
|
||||
done
|
||||
|
||||
@@ -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
|
||||
|
||||