From 95a1c002eb50e0c59679fc249097de0cd92b9d04 Mon Sep 17 00:00:00 2001 From: wiz Date: Thu, 11 Feb 2021 14:57:43 +0900 Subject: [PATCH 01/15] Update README with instructions for various installation methods --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b53bcb0a..c7ec7e21f 100644 --- a/README.md +++ b/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. ![mempool](https://pbs.twimg.com/media/Ei8p_flUcAEjfXE?format=jpg&name=4096x4096) -# 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://github.com/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 From 5f6b7d94b198e2dc60b61131916769070884f905 Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 12 Feb 2021 16:20:57 +0900 Subject: [PATCH 02/15] Update URL for RoninRojo repo to their self-hosted GitLab --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7ec7e21f..1b376e63c 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Mempool is the fully featured visualizer, explorer, and API service running on [ 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://github.com/RoninDojo/RoninDojo), or [MyNode](https://github.com/mynodebtc/mynode). +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) From 63b52b9d9b125663db1004d3d76317165546b651 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 14 Feb 2021 01:04:44 +0700 Subject: [PATCH 03/15] Use mempool clear protection feature also when in bitcoind mode. fixes #335 --- backend/src/api/mempool.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/api/mempool.ts b/backend/src/api/mempool.ts index 721ec4e2b..641825577 100644 --- a/backend/src/api/mempool.ts +++ b/backend/src/api/mempool.ts @@ -134,7 +134,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 ) { From 584ef87fc80ce6e9678e507e70c03fec67bb8ccf Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 14 Feb 2021 19:50:31 +0700 Subject: [PATCH 04/15] Optimized cache chunks. Default cache files to /cache directory. fixes #341 --- backend/.gitignore | 11 -------- backend/cache/.gitignore | 1 + backend/mempool-config.sample.json | 2 +- backend/src/api/disk-cache.ts | 42 +++++++++++++++++++++--------- backend/src/config.ts | 2 +- 5 files changed, 33 insertions(+), 25 deletions(-) create mode 100644 backend/cache/.gitignore diff --git a/backend/.gitignore b/backend/.gitignore index 32c205746..c4339712c 100644 --- a/backend/.gitignore +++ b/backend/.gitignore @@ -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 diff --git a/backend/cache/.gitignore b/backend/cache/.gitignore new file mode 100644 index 000000000..a6c57f5fb --- /dev/null +++ b/backend/cache/.gitignore @@ -0,0 +1 @@ +*.json diff --git a/backend/mempool-config.sample.json b/backend/mempool-config.sample.json index e53df38f2..1a6a52424 100644 --- a/backend/mempool-config.sample.json +++ b/backend/mempool-config.sample.json @@ -6,7 +6,7 @@ "SPAWN_CLUSTER_PROCS": 0, "API_URL_PREFIX": "/api/v1/", "POLL_RATE_MS": 2000, - "CACHE_DIR": "./" + "CACHE_DIR": "./cache/" }, "CORE_RPC": { "HOST": "127.0.0.1", diff --git a/backend/src/api/disk-cache.ts b/backend/src/api/disk-cache.ts index 2956216c8..55ff02014 100644 --- a/backend/src/api/disk-cache.ts +++ b/backend/src/api/disk-cache.ts @@ -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 CHUNK_FILES = 25; + constructor() { } async $saveCacheToDisk(): Promise { @@ -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); + } } } diff --git a/backend/src/config.ts b/backend/src/config.ts index 1d46ccfcb..f90bb4c8a 100644 --- a/backend/src/config.ts +++ b/backend/src/config.ts @@ -61,7 +61,7 @@ const defaults: IConfig = { 'SPAWN_CLUSTER_PROCS': 0, 'API_URL_PREFIX': '/api/v1/', 'POLL_RATE_MS': 2000, - 'CACHE_DIR': './' + 'CACHE_DIR': './cache/' }, 'ESPLORA': { 'REST_API_URL': 'http://127.0.0.1:3000', From 32290d1e0da2102acf289ae7dc671c4a07f9671f Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 14 Feb 2021 20:03:45 +0700 Subject: [PATCH 05/15] Apply suggestions from code review Co-authored-by: wiz --- backend/mempool-config.sample.json | 2 +- backend/src/api/disk-cache.ts | 4 ++-- backend/src/config.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/mempool-config.sample.json b/backend/mempool-config.sample.json index 1a6a52424..d0d2f486c 100644 --- a/backend/mempool-config.sample.json +++ b/backend/mempool-config.sample.json @@ -6,7 +6,7 @@ "SPAWN_CLUSTER_PROCS": 0, "API_URL_PREFIX": "/api/v1/", "POLL_RATE_MS": 2000, - "CACHE_DIR": "./cache/" + "CACHE_DIR": "./cache" }, "CORE_RPC": { "HOST": "127.0.0.1", diff --git a/backend/src/api/disk-cache.ts b/backend/src/api/disk-cache.ts index 55ff02014..cbdff49f0 100644 --- a/backend/src/api/disk-cache.ts +++ b/backend/src/api/disk-cache.ts @@ -8,8 +8,8 @@ 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 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() { } diff --git a/backend/src/config.ts b/backend/src/config.ts index f90bb4c8a..0037da6d2 100644 --- a/backend/src/config.ts +++ b/backend/src/config.ts @@ -61,7 +61,7 @@ const defaults: IConfig = { 'SPAWN_CLUSTER_PROCS': 0, 'API_URL_PREFIX': '/api/v1/', 'POLL_RATE_MS': 2000, - 'CACHE_DIR': './cache/' + 'CACHE_DIR': './cache' }, 'ESPLORA': { 'REST_API_URL': 'http://127.0.0.1:3000', From 7489d3360a1c20a029f094d82bc23be685ab572f Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 14 Feb 2021 20:32:00 +0700 Subject: [PATCH 06/15] Make clear protection timeout configurable. fixes #335 --- backend/mempool-config.sample.json | 3 ++- backend/src/api/mempool.ts | 3 +-- backend/src/config.ts | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/backend/mempool-config.sample.json b/backend/mempool-config.sample.json index d0d2f486c..82bcfbe56 100644 --- a/backend/mempool-config.sample.json +++ b/backend/mempool-config.sample.json @@ -6,7 +6,8 @@ "SPAWN_CLUSTER_PROCS": 0, "API_URL_PREFIX": "/api/v1/", "POLL_RATE_MS": 2000, - "CACHE_DIR": "./cache" + "CACHE_DIR": "./cache", + "CLEAR_PROTECTION_MINUTES": 20 }, "CORE_RPC": { "HOST": "127.0.0.1", diff --git a/backend/src/api/mempool.ts b/backend/src/api/mempool.ts index 641825577..83367a6ac 100644 --- a/backend/src/api/mempool.ts +++ b/backend/src/api/mempool.ts @@ -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, @@ -143,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 = {}; diff --git a/backend/src/config.ts b/backend/src/config.ts index 0037da6d2..1b3db8142 100644 --- a/backend/src/config.ts +++ b/backend/src/config.ts @@ -9,6 +9,7 @@ interface IConfig { API_URL_PREFIX: string; POLL_RATE_MS: number; CACHE_DIR: string; + CLEAR_PROTECTION_MINUTES: number; }; ESPLORA: { REST_API_URL: string; @@ -61,7 +62,8 @@ const defaults: IConfig = { 'SPAWN_CLUSTER_PROCS': 0, 'API_URL_PREFIX': '/api/v1/', 'POLL_RATE_MS': 2000, - 'CACHE_DIR': './cache' + 'CACHE_DIR': './cache', + 'CLEAR_PROTECTION_MINUTES': 20, }, 'ESPLORA': { 'REST_API_URL': 'http://127.0.0.1:3000', From befb1926513d850d357034c44fb90c7576b1481c Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 15 Feb 2021 00:25:29 +0900 Subject: [PATCH 07/15] Reduce backend heap size setting to 2G since cache memory usage was optimized (#345) On powerful servers, nodejs automatically sets the limit at 4GB ``` % node -e 'console.log(`node heap limit = ${require("v8").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)' node heap limit = 4144 Mb ``` On a Raspberry Pi with 8GB RAM, nodejs automatically sets the limit at 1GB ``` % node -e 'console.log(`node heap limit = ${require("v8").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)' node heap limit = 1048 Mb ``` On a Raspberry Pi with 4GB RAM, nodejs automatically sets the limit at 740MB ``` % node -e 'console.log(`node heap limit = ${require("v8").getHeapStatistics().heap_size_limit / (1024 * 1024)} Mb`)' node heap limit = 739.4694900512695 Mb ``` After testing with manually setting the limit to 768MB, mempool starts up fine, but crashes when saving the cache when the mempool is quite large (over 400MB with custom bitcoin.conf setting). So it's probably safe to reduce the 4GB limit setting to 2GB for all devices and and just use the automatically set values, now that the backend's disk cache memory usage was recently optimized. However, a new npm script for `npm run start-production` will be added so we can keep our production mempool.space servers running with a very large bitcoin.conf mempool --- backend/package.json | 3 ++- production/mempool-start-all | 5 +---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/backend/package.json b/backend/package.json index ae5f3dd81..a8add53e8 100644 --- a/backend/package.json +++ b/backend/package.json @@ -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": { diff --git a/production/mempool-start-all b/production/mempool-start-all index 338197b5a..3c7a445db 100755 --- a/production/mempool-start-all +++ b/production/mempool-start-all @@ -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 From d39207e0970fd22057e3370369fd8712dbc589b3 Mon Sep 17 00:00:00 2001 From: softsimon Date: Sun, 14 Feb 2021 23:23:03 +0700 Subject: [PATCH 08/15] Adding Telegram group link on about page. --- frontend/src/app/components/about/about.component.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index d30031ebe..6acebcde3 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -189,6 +189,12 @@ + + + + + + From 2743b35ea2033ef44a37713776a8e68bb0cbc00c Mon Sep 17 00:00:00 2001 From: softsimon Date: Mon, 15 Feb 2021 00:15:04 +0700 Subject: [PATCH 09/15] Update from transifex. --- frontend/src/locale/messages.ar.xlf | 122 ++++++++++++------------- frontend/src/locale/messages.cs.xlf | 109 +++++++++++----------- frontend/src/locale/messages.de.xlf | 108 +++++++++++----------- frontend/src/locale/messages.en_US.xlf | 104 ++++++++++----------- frontend/src/locale/messages.es.xlf | 108 +++++++++++----------- frontend/src/locale/messages.fa.xlf | 112 +++++++++++------------ frontend/src/locale/messages.fi.xlf | 110 +++++++++++----------- frontend/src/locale/messages.fr.xlf | 108 +++++++++++----------- frontend/src/locale/messages.hr.xlf | 104 ++++++++++----------- frontend/src/locale/messages.hu.xlf | 110 +++++++++++----------- frontend/src/locale/messages.it.xlf | 108 +++++++++++----------- frontend/src/locale/messages.ja.xlf | 108 +++++++++++----------- frontend/src/locale/messages.ka.xlf | 107 +++++++++++----------- frontend/src/locale/messages.ko.xlf | 108 +++++++++++----------- frontend/src/locale/messages.nb.xlf | 108 +++++++++++----------- frontend/src/locale/messages.nl.xlf | 108 +++++++++++----------- frontend/src/locale/messages.pl.xlf | 106 ++++++++++----------- frontend/src/locale/messages.pt.xlf | 108 +++++++++++----------- frontend/src/locale/messages.sl.xlf | 110 +++++++++++----------- frontend/src/locale/messages.sv.xlf | 108 +++++++++++----------- frontend/src/locale/messages.tr.xlf | 108 +++++++++++----------- frontend/src/locale/messages.uk.xlf | 108 +++++++++++----------- frontend/src/locale/messages.vi.xlf | 108 +++++++++++----------- frontend/src/locale/messages.zh.xlf | 107 +++++++++++----------- 24 files changed, 1287 insertions(+), 1318 deletions(-) diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf index c3bf2bdc1..c88ce8b88 100644 --- a/frontend/src/locale/messages.ar.xlf +++ b/frontend/src/locale/messages.ar.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -413,7 +413,7 @@ In ~ minutes - في ~ دقيقه + في ~ دقيقة src/app/components/transaction/transaction.component.html 293 @@ -501,7 +501,7 @@ ن التسلسل src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ البرنامج النصي (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ البرنامج النصي. (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ شوهد src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ البرنامج النصي استرداد P2SH src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -547,7 +547,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -555,7 +555,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -564,11 +564,11 @@ تحميل الكل src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -576,7 +576,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -584,7 +584,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -593,7 +593,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -603,7 +603,7 @@ نوع src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -620,7 +620,7 @@ البيانات src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -629,7 +629,7 @@ سات src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -639,7 +639,7 @@ خصوصي src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -647,7 +647,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -657,7 +657,7 @@ Block : - الكتله : + الكتلة : src/app/components/block/block.component.ts 105 @@ -674,7 +674,7 @@ Block - كتله + كتلة src/app/components/block/block.component.html 4 @@ -900,12 +900,25 @@ shared.address + + Balance + الرصيد + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received مجموع الواردات src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -918,7 +931,7 @@ مجموع المرسل src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -930,25 +943,12 @@ address.total-sent - - Balance - الرصيد - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction من تحويله src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -957,7 +957,7 @@ من تحويلات src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -966,7 +966,7 @@ خطأ في تحميل بيانات العنوان. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -990,7 +990,7 @@ Blocks - كتله + كتل src/app/components/latest-blocks/latest-blocks.component.ts 39 @@ -1093,16 +1093,23 @@ متعدد التوقيع من src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - الطبقه فصل + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1128,7 +1135,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1292,7 +1299,7 @@ شروط الخدمة src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1368,15 +1375,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - إذا قمت بتحديد اسم مستخدم تويتر ، فيجب أن تكون صورة الملف الشخصي مرئية الآن على هذه الصفحة عند إعادة التحميل. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... جار تحميل الرسوم البيانية ... @@ -1794,7 +1792,7 @@ Medium priority - أولوية متوسطه + أولوية متوسطة src/app/components/fees-box/fees-box.component.html 10 @@ -1807,7 +1805,7 @@ High priority - أولوية عاليه + أولوية عالية src/app/components/fees-box/fees-box.component.html 16 @@ -2664,7 +2662,7 @@ minutes ago - منذ دقيقه + منذ دقيقة src/app/components/time-since/time-since.component.ts 92 diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 07a7381d6..edd3ee204 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH redeem skript src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH witness skript src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Předchozí výstupní skript src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Načíst vše src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out do src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Důvěrné src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Zůstatek + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Celkem přijato src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Celkem odesláno src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Zůstatek - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction z transakce src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ z transakcí src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Chyba při načítání údajů o adrese. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig z src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Vrstva Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Podmínky služby src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - 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. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Načítání grafů... @@ -2538,6 +2536,7 @@ This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method + Tato transakce NEPODPORUJE Replace-by-Fee (RBF) a nelze ji pomocí této metody navýšit o poplatek src/app/components/tx-features/tx-features.component.html 9 diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index 70e9d6cba..1203dbad6 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Vorheriges Output Script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Alle nachladen src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out zu src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ Daten src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Vertraulich src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Guthaben + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Insgesamt empfangen src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Insgesamt gesendet src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Guthaben - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction Transaktion von src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ von Transaktionen src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Fehler beim Laden der Adressdaten. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ Multisig von src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Layer Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Nutzungsbedingungen src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Wenn Sie ein Twitter-Handle angegeben haben, sollte das Profilfoto jetzt beim erneuten Laden auf dieser Seite sichtbar sein. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Laden von Grafiken ... diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 6c34050de..41ed33bb6 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -45,7 +45,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -66,7 +66,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -87,7 +87,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -241,7 +241,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -467,7 +467,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -475,7 +475,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -484,7 +484,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -493,7 +493,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -501,7 +501,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -509,7 +509,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -517,7 +517,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -525,11 +525,11 @@ Load all src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -537,7 +537,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -545,7 +545,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -554,7 +554,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -563,7 +563,7 @@ Type src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -579,7 +579,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -587,7 +587,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -596,7 +596,7 @@ Confidential src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -604,7 +604,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -840,11 +840,23 @@ shared.address + + Balance + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -856,7 +868,7 @@ Total sent src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -868,23 +880,11 @@ address.total-sent - - Balance - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -892,7 +892,7 @@ of transactions src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -900,7 +900,7 @@ Error loading address data. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1019,15 +1019,23 @@ multisig of src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1051,7 +1059,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1198,7 +1206,7 @@ Terms of Service src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1267,14 +1275,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 6078bc41b..8351c4815 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSecuencia src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Testigo src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ script de canje P2SH src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ script de testigo P2WSH src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Script de salida previo src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Cargar todas src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out a src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Tipo src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ dato src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Confidencial src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Saldo + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Total recibido src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Total enviado src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Saldo - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction Transacción of src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ Transacción de src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Errar cargando datos de dirección src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig de src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Peg-out de capa + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Términos de servicio src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Si ha especificado un usuario de Twitter, la foto de perfil ahora debe ser visible en esta página cuando recargue. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Cargando gráficos... diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 804644d22..9b1018230 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -86,14 +86,14 @@ Unconfirmed - تأیید نشده + تأییدنشده src/app/components/transaction/transaction.component.html 22 src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ شاهد src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ اسکریپت نقد کردن P2SH src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ اسکریپت شاهد P2WSH src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ اسکریپت خروجی قبلی src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ بازکردن همه src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ ‏Peg-out به src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ نوع src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ ساتوشی src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ محرمانه src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + موجودی + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received مجموع دریافت‌ها src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ مجموع ارسال‌ها src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - موجودی - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction از تراکنش src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ از تراکنش src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ حطا در بازکردن داده‌های آدرس. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,25 @@ چندامضایی از src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Peg-out لایه + + Lightning + لایتنینگ src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + لیکوئید + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1142,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1306,7 @@ شرایط خدمات src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1382,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - اگر یک نام‌کاربری توئیتری مشخص کرده باشید، تصویر حساب شما بعد از بازنشانی به این صفحه اضافه خواهد شد. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... در حال بازکردن گراف‌ها... diff --git a/frontend/src/locale/messages.fi.xlf b/frontend/src/locale/messages.fi.xlf index da41f332c..e6e473642 100644 --- a/frontend/src/locale/messages.fi.xlf +++ b/frontend/src/locale/messages.fi.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nJärjestys src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Todistaja src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH lunastusskripti src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH todistajaskripti src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Edellinen ulostuloskripti src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Lataa kaikki src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Irrotetaan src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Tyyppi src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Luottamuksellinen src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Saldo + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Vastaanotettu yhteensä src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Lähetetty yhteensä src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Saldo - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction / siirtotapahtuma src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ / siirtotapahtumat src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Virhe osoitetietojen lataamisessa. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,25 @@ multisig / src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Kerros Irroitus + + Lightning + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1142,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1306,7 @@ Käyttöehdot src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1382,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Jos määritit Twitter-tilin, profiilikuvan pitäisi olla nyt näkyvissä tällä sivulla, kun lataat uudelleen. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Ladataan kaavioita... diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index 1db9cdb85..9a59db7f1 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Témoin src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ Script de rachat P2SH src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ Script témoin PW2SH src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Script de sortie précédent src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Charger tout src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out vers src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Type src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ Donnée src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ Sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Confidentiel src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Solde + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Total reçu src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Total envoyé src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Solde - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction Transaction sur src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ Transactions sur src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Erreur lors du chargement des données de l'adresse src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig pour src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Couche Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Conditions d'utilisation src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Si vous avez indiqué un pseudo Twitter, la photo de profil devrait maintenant être visible sur cette page lorsque vous rechargez. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Chargement des graphs... diff --git a/frontend/src/locale/messages.hr.xlf b/frontend/src/locale/messages.hr.xlf index 03e43c938..c291d33e8 100644 --- a/frontend/src/locale/messages.hr.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -47,7 +47,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -68,7 +68,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -90,7 +90,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -255,7 +255,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -484,7 +484,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -492,7 +492,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -501,7 +501,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -510,7 +510,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -518,7 +518,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -526,7 +526,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -534,7 +534,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -542,11 +542,11 @@ Load all src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -554,7 +554,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -562,7 +562,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -571,7 +571,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -580,7 +580,7 @@ Type src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -596,7 +596,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -604,7 +604,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -613,7 +613,7 @@ Confidential src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -621,7 +621,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -857,11 +857,23 @@ shared.address + + Balance + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -873,7 +885,7 @@ Total sent src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -885,23 +897,11 @@ address.total-sent - - Balance - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -909,7 +909,7 @@ of transactions src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -917,7 +917,7 @@ Error loading address data. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1036,15 +1036,23 @@ multisig of src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1068,7 +1076,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1215,7 +1223,7 @@ Terms of Service src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1284,14 +1292,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... diff --git a/frontend/src/locale/messages.hu.xlf b/frontend/src/locale/messages.hu.xlf index c25838c6a..48a94de45 100644 --- a/frontend/src/locale/messages.hu.xlf +++ b/frontend/src/locale/messages.hu.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSzekvencia src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ SzkriptSzig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ SzkriptSzig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Szemtanú src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH kiváltási szkript src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH szemtanú szkript src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Előző kimeneti szkript src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Minden betöltése src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Kivétel a -ra src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ SzkriptPublikusKulcs (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ SzkriptPublikusKulcs (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Típus src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ adat src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Bizalmas src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Egyenleg + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Összesen fogadott src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Összesen küldött src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Egyenleg - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction a -ből/ból tranzakció src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ a -ből/ból tranzakció src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Hiba történt a cím információ lekérdezésekor. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,25 @@ - multiszignatúra src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Első réteg kikötés + + Lightning + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1142,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1306,7 @@ Általános Szolgáltatási Feltételek src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1382,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - 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.) - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Grafikon betöltése... diff --git a/frontend/src/locale/messages.it.xlf b/frontend/src/locale/messages.it.xlf index 843b034f5..f58ca2069 100644 --- a/frontend/src/locale/messages.it.xlf +++ b/frontend/src/locale/messages.it.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Testimone src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ Script di riscatto P2SH src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ Script testimone P2WSH src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Script output precedente src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Carica tutto src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out verso src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Tipo src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ dati src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Confidenziale src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Saldo + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Totale ricevuto src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Totale inviato src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Saldo - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction su transazione src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ su transazioni src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Errore nel caricamento dei dati dell'indirizzo. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig su src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Layer Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Condizioni d'uso src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Se hai specificato un handle di Twitter, la tua foto profilo dovrebbe essere visibile su questa pagina non appena la ricarichi. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Caricamento grafici... diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index d8afe7ccd..b32a90ba1 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ ウィットネス src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH引き換えスクリプト src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSHウィットネススクリプト src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ 前の出力スクリプト src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ すべてをロード src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ へのペグアウト src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ タイプ src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ データ src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ サトシ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ 機密 src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + 残高 + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received 受領合計 src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ 送金合計 src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - 残高 - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction / トランザクション src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ / トランザクション src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ アドレスデータを読み込み中にエラーが発生しました。 src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ / マルチシグ src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - レイヤーペグアウト + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ 利用規約 src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Twitterハンドルを指定した場合、リロード時にプロフィール写真がこのページに表示されます。 - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... グラフを読み込み中... diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf index 538eea51b..2704a453c 100644 --- a/frontend/src/locale/messages.ka.xlf +++ b/frontend/src/locale/messages.ka.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -499,7 +499,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -507,7 +507,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -516,7 +516,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -525,7 +525,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -533,7 +533,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -541,7 +541,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -549,7 +549,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -558,11 +558,11 @@ ყველა ჩატვირთვა src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -570,7 +570,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -578,7 +578,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -587,7 +587,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -597,7 +597,7 @@ ტიპი src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -614,7 +614,7 @@ მონაცემები src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -623,7 +623,7 @@ სატ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -633,7 +633,7 @@ კონფიდენციალური src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -641,7 +641,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -894,12 +894,25 @@ shared.address + + Balance + Ბალანსი + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received სულ მიღებული src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -912,7 +925,7 @@ სულ გაგზავნილი src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -924,25 +937,12 @@ address.total-sent - - Balance - Ბალანსი - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction ის ტრანსაქცია src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -951,7 +951,7 @@ ის ტრანსაქცია src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -960,7 +960,7 @@ შეცდომა მისამართის მონაცემების მოძებვნისას. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1087,15 +1087,23 @@ მულტისიგ ის src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1121,7 +1129,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1285,7 +1293,7 @@ Მომსახურების პირობები src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1361,15 +1369,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - თუ Twitter- ის სახელი მიუთითეთ, გადატვირთვისას ამ გვერდზე უნდა ჩანდეს პროფილის ფოტო. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... დაელოდეთ გრაფიკებს... diff --git a/frontend/src/locale/messages.ko.xlf b/frontend/src/locale/messages.ko.xlf index 3b8666e3e..289a2b970 100644 --- a/frontend/src/locale/messages.ko.xlf +++ b/frontend/src/locale/messages.ko.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ 증인 (디지털 서명) src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH 사용 스크립트 src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH 증인 스크립트 src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ 이전 아웃풋 스크립트 src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ 모두 불러오기 src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ 로 페그 아웃 됨 src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ 종류 src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ 데이터 src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ 사토시 src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ 기밀 src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -904,12 +904,25 @@ shared.address + + Balance + 잔액 + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received 총 받은 양 src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -922,7 +935,7 @@ 총 보낸 양 src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -934,24 +947,11 @@ address.total-sent - - Balance - 잔액 - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -959,7 +959,7 @@ of transactions src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -968,7 +968,7 @@ 주소 데이터 불러오기 실패 src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1094,16 +1094,23 @@ multisig of src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - 레이어 페그 아웃 + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1129,7 +1136,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1293,7 +1300,7 @@ 이용약관 src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1369,15 +1376,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - 트위터 아이디를 입력하셨다면 트위터 프로필 사진이 이 페이지에 표시됩니다. 보시려면 새로 고침을 해 보세요. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... 그래프 로딩중... diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf index 3ee274ea5..674781a24 100644 --- a/frontend/src/locale/messages.nb.xlf +++ b/frontend/src/locale/messages.nb.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig(ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig(HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Forrige output script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Last alt src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-ut til src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Type src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Konfidensielt src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Balanse + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Totalt mottatt src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Totalt sendt src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Balanse - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction av transaksjon src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ av transaksjoner src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Lasting av adressedata feilet. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig av src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Lag Peg-ut + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Bruksvilkår src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Hvis du spesifiserte en Twitter handle, så skal profilbilde ditt nå vises på denne siden når du laster siden på nytt. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Laster grafer... diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index e62cb6a21..50ed5fc7b 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Getuige-data src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH claim-script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH claim-script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Vorig output-script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Laad alles src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out naar src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Type src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Vertrouwelijk src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Balans + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Totaal ontvangen src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Totaal verstuurd src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Balans - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction van transactie src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ van transacties src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Fout bij het laden van adresdata. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig van src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Laag Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Servicevoorwaarden src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Als je een Twittergebruikersnaam hebt ingevuld dan zou de profielfoto nu op deze pagina zichtbaar zijn als je herlaadt. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Grafiek laden... diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index fca63e2a9..35b55f2cb 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Świadek src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -538,7 +538,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -546,7 +546,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -555,7 +555,7 @@ Poprzedni skrypt wyjściowy src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -564,11 +564,11 @@ Załaduj wszystko src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -576,7 +576,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -585,7 +585,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -595,7 +595,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -605,7 +605,7 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -622,7 +622,7 @@ dane src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -631,7 +631,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -641,7 +641,7 @@ Poufne src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -649,7 +649,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -901,12 +901,25 @@ shared.address + + Balance + Saldo + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Otrzymano łącznie src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -919,7 +932,7 @@ Wysłano łącznie src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -931,25 +944,12 @@ address.total-sent - - Balance - Saldo - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction z transakcji src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -958,7 +958,7 @@ z transakcji src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -967,7 +967,7 @@ Błąd podczas ładowania adresu. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1094,15 +1094,23 @@ multisig z src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1128,7 +1136,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1291,7 +1299,7 @@ Warunki korzystania z usługi src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1366,14 +1374,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Ładowanie wykresów... diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 185af1c5a..41f9b5844 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Testemunho src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH script de resgate src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH script de testemunho src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Script de saída anterior src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Carregar tudo src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Atrelado para src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Tipo src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ dados src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Confidencial src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Saldo + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Total recebido src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Total enviado src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Saldo - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction de transação src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ de transações src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Erro ao carregar os dados do endereço. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig de src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Camada Atrelado + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Termos de Serviço src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Se você especificou um identificador do Twitter, a foto do perfil agora deve estar visível nesta página quando você recarregar. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Carregando gráficos... diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index d0bbc7ba5..52d478f09 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH redeem skripta src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH witness skripta src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Skripta prejšnjega izhoda src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Prikaži vse src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out v src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Tip src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ podatki src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Zaupno src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Stanje + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Skupaj prejeto src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Skupaj poslano src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Stanje - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction od transakcija src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ od transakcij src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Napaka pri nalaganju podatkov naslova. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,25 @@ multisig od src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Layer Peg-out + + Lightning + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1142,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1306,7 @@ Pogoji storitve src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1382,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Če ste navedli Twitter uporabniško ime, bi morala biti fotografija profila zdaj vidna na tej strani ob ponovnem nalaganju. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Nalaganje grafov... diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index d10a87c0a..0f17c12a2 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Föregående outputscript src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Ladda alla src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Peg-out till src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Typ src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Konfidentiell src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Balans + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Totalt mottaget src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Totalt skickat src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Balans - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction av transaktion src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ av transaktioner src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Kunde inte ladda addressdata. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig av src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Lager Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Användarvillkor src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Om du har angett en Twitter-handle ska profilbilden nu synas på den här sidan när du laddar om. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Laddar grafen... diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index b7d422c5a..55bc2456a 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Tanık src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH alım scripti src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH tanık scripti src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Önceki çıkış scripti src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Hepsini yükle src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ 'a çıkış src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Tip src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ Data src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Gizli src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Cari toplam + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Toplam alınan src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Toplam gönderilen src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Cari toplam - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction bölü işlem src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ of transaction src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Adres datası yüklenirken hata oluştu. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ Çoklu imzanın   bölü src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Katman Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Hizmet Koşulları src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Bir Twitter kullanıcı adı belirlediyseniz, sayfayı yeniden yüklediğinizde profil resminizin görünür hale gelecektir. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Grafikler yükleniyor... diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 579f24e6c..93258e8ba 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -501,7 +501,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -510,7 +510,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -520,7 +520,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -530,7 +530,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -539,7 +539,7 @@ P2SH redeem скрипт src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -548,7 +548,7 @@ P2WSH witness скрипт src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -557,7 +557,7 @@ Скрипт попереднього виходу src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -566,11 +566,11 @@ Завантажити всі src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -579,7 +579,7 @@ Розкріплення до src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -588,7 +588,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -598,7 +598,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -608,7 +608,7 @@ Тип src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -625,7 +625,7 @@ дані src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -634,7 +634,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -644,7 +644,7 @@ Конфіденційна src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -652,7 +652,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -905,12 +905,25 @@ shared.address + + Balance + Баланс + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Всього отримано src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -923,7 +936,7 @@ Всього надіслано src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -935,25 +948,12 @@ address.total-sent - - Balance - Баланс - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction з транзакції src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -962,7 +962,7 @@ з транзакцій src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -971,7 +971,7 @@ Не вдалося завантажити дані про адресу. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1098,16 +1098,23 @@ multisig з src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Розкріплення до шару + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1133,7 +1140,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1297,7 +1304,7 @@ Умови використання src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1373,15 +1380,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - Якщо ви вкажете ваш юзернейм з Twitter, фото профілю буде відображатись після перезавантаження сторінки. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Завантаження графіків... diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf index 53357d9f8..0035507a2 100644 --- a/frontend/src/locale/messages.vi.xlf +++ b/frontend/src/locale/messages.vi.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -500,7 +500,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -509,7 +509,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -519,7 +519,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -529,7 +529,7 @@ Chứng kiến src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -538,7 +538,7 @@ Mã thu hồi P2SH src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -547,7 +547,7 @@ Mã chứng kiến P2WSH src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -556,7 +556,7 @@ Mã đầu ra trước đó src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -565,11 +565,11 @@ Tải tất cả src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -578,7 +578,7 @@ Peg-out src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -587,7 +587,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -597,7 +597,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -607,7 +607,7 @@ Kiểu src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -624,7 +624,7 @@ dữ liệu src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -633,7 +633,7 @@ sat src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -643,7 +643,7 @@ Bảo mật src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -651,7 +651,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -904,12 +904,25 @@ shared.address + + Balance + Số dư + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received Tổng nhận src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -922,7 +935,7 @@ Tổng gửi src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -934,25 +947,12 @@ address.total-sent - - Balance - Số dư - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction trong giao dịch src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -961,7 +961,7 @@ trong giao dịch src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -970,7 +970,7 @@ Lỗi khi tải dữ liệu địa chỉ. src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1097,16 +1097,23 @@ đa chữ kí trong src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - Lớp Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1132,7 +1139,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1296,7 +1303,7 @@ Điều khoản Dịch vụ src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1372,15 +1379,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - 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. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... Đang tải đồ thị ... diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index 94a9ad08c..27265bfc7 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -49,7 +49,7 @@ src/app/components/transactions-list/transactions-list.component.html - 205 + 208 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -71,7 +71,7 @@ src/app/components/transactions-list/transactions-list.component.html - 206 + 209 src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -93,7 +93,7 @@ src/app/components/transactions-list/transactions-list.component.html - 209 + 212 Transaction unconfirmed state transaction.unconfirmed @@ -258,7 +258,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 src/app/components/block/block.component.html @@ -500,7 +500,7 @@ nSequence src/app/components/transactions-list/transactions-list.component.html - 92 + 95 transactions-list.nsequence @@ -509,7 +509,7 @@ ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html - 71 + 74 ScriptSig (ASM) transactions-list.scriptsig.asm @@ -519,7 +519,7 @@ ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html - 75 + 78 ScriptSig (HEX) transactions-list.scriptsig.hex @@ -529,7 +529,7 @@ Witness src/app/components/transactions-list/transactions-list.component.html - 80 + 83 transactions-list.witness @@ -538,7 +538,7 @@ P2SH redeem script src/app/components/transactions-list/transactions-list.component.html - 84 + 87 transactions-list.p2sh-redeem-script @@ -547,7 +547,7 @@ P2WSH witness script src/app/components/transactions-list/transactions-list.component.html - 88 + 91 transactions-list.p2wsh-witness-script @@ -555,7 +555,7 @@ Previous output script src/app/components/transactions-list/transactions-list.component.html - 96 + 99 transactions-list.previous-output-script @@ -564,11 +564,11 @@ 加载全部 src/app/components/transactions-list/transactions-list.component.html - 106 + 109 src/app/components/transactions-list/transactions-list.component.html - 188 + 191 transactions-list.load-all @@ -576,7 +576,7 @@ Peg-out to src/app/components/transactions-list/transactions-list.component.html - 125 + 128 transactions-list.peg-out-to @@ -585,7 +585,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 170 + 173 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -595,7 +595,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 174 + 177 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -605,7 +605,7 @@ 类型 src/app/components/transactions-list/transactions-list.component.html - 166 + 169 src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -622,7 +622,7 @@ 数据 src/app/components/transactions-list/transactions-list.component.html - 178 + 181 transactions-list.vout.scriptpubkey-type.data @@ -631,7 +631,7 @@ src/app/components/transactions-list/transactions-list.component.html - 198 + 201 sat shared.sat @@ -641,7 +641,7 @@ 机密 src/app/components/transactions-list/transactions-list.component.html - 214 + 217 src/app/components/amount/amount.component.html @@ -649,7 +649,7 @@ src/app/components/address/address.component.html - 132 + 134 src/app/components/asset/asset.component.html @@ -902,12 +902,25 @@ shared.address + + Balance + 余额 + + src/app/components/address/address.component.html + 30 + + + src/app/bisq/bisq-address/bisq-address.component.html + 28 + + address.balance + Total received 总接收量 src/app/components/address/address.component.html - 20 + 21 src/app/bisq/bisq-address/bisq-address.component.html @@ -920,7 +933,7 @@ 总发送量 src/app/components/address/address.component.html - 24 + 25 src/app/bisq/bisq-address/bisq-address.component.html @@ -932,25 +945,12 @@ address.total-sent - - Balance - 余额 - - src/app/components/address/address.component.html - 28 - - - src/app/bisq/bisq-address/bisq-address.component.html - 28 - - address.balance - of transaction 个交易 / 共个交易 src/app/components/address/address.component.html - 48 + 50 X of X Address Transaction @@ -959,7 +959,7 @@ 个交易 / 共个交易 src/app/components/address/address.component.html - 49 + 51 X of X Address Transactions (Plural) @@ -968,7 +968,7 @@ 在加载地址数据时出错 src/app/components/address/address.component.html - 113 + 115 address.error.loading-address-data @@ -1095,16 +1095,23 @@ -多重签名 src/app/components/address-labels/address-labels.component.html - 1 + 5 address-labels.multisig - - Layer Peg-out - 层 Peg-out + + Lightning src/app/components/address-labels/address-labels.component.html - 2 + 11 + + address-labels.upper-layer-peg-out + + + Liquid + + src/app/components/address-labels/address-labels.component.html + 17 address-labels.upper-layer-peg-out @@ -1130,7 +1137,7 @@ src/app/components/about/about.component.ts - 37 + 38 master-page.about @@ -1294,7 +1301,7 @@ 服务条款 src/app/components/about/about.component.html - 206 + 205 src/app/dashboard/dashboard.component.html @@ -1370,14 +1377,6 @@ about.sponsor.thank-you - - If you specified a Twitter handle, the profile photo should now be visible on this page when you reload. - - src/app/components/about/about.component.html - 176 - - about.sponsor.sponsor-completed - Loading graphs... 图表加载中... From 6866b12e84d877b5d0be055b5dd7cd2693083a2f Mon Sep 17 00:00:00 2001 From: wiz Date: Wed, 17 Feb 2021 17:16:32 +0900 Subject: [PATCH 10/15] Update hard-coded LN node URI for sponsors on About page --- frontend/src/app/components/about/about.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 6acebcde3..37d240e22 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -141,9 +141,9 @@
- +
- +
From 475baf563413bde03f90c41625e52d0ec4474835 Mon Sep 17 00:00:00 2001 From: Czino <42438775+Czino@users.noreply.github.com> Date: Wed, 17 Feb 2021 21:05:39 +0100 Subject: [PATCH 11/15] Fix style on block hover (#347) * Fix style on block hover * Fix style on block hover Co-authored-by: Eric Lehmann --- .../blockchain-blocks/blockchain-blocks.component.scss | 4 ++++ .../components/mempool-blocks/mempool-blocks.component.scss | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss index f03967281..b456c3cd1 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.scss @@ -11,6 +11,10 @@ z-index: 10; } +.blockLink:hover { + text-decoration: none; +} + .mined-block { position: absolute; top: 0px; diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss index 98675d7b7..5db365452 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.scss @@ -116,3 +116,7 @@ left: 0; z-index: 10; } + +.blockLink:hover { + text-decoration: none; +} From 26ba41cb911cd44c20a9ae38279c742105d9d6f2 Mon Sep 17 00:00:00 2001 From: pox <47615825+pox@users.noreply.github.com> Date: Thu, 18 Feb 2021 06:11:31 +0200 Subject: [PATCH 12/15] a bit of formatting for the docker readme (#348) --- docker/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/README.md b/docker/README.md index 0a65eba0b..fa8f44bb2 100644 --- a/docker/README.md +++ b/docker/README.md @@ -8,7 +8,7 @@ In an empty dir create 2 sub-dirs mkdir -p data mysql/data mysql/db-scripts ``` -In the mysql/db-scripts sub-dir add the mariadb-structure.sql file from the mempool repo +In the `mysql/db-scripts` sub-dir add the `mariadb-structure.sql` file from the mempool repo Your dir should now look like that: @@ -28,7 +28,7 @@ data db-scripts mariadb-structure.sql ``` -In the main dir add the following docker-compose.yml +In the main dir add the following `docker-compose.yml` ```bash version: "3.7" From edce0d118ab8bf1b38dc85f8d124ca847e1e2c93 Mon Sep 17 00:00:00 2001 From: softsimon Date: Thu, 18 Feb 2021 13:34:05 +0700 Subject: [PATCH 13/15] Updating mempool logo and adding new mempool space logo. New frontend config OFFICIAL_MEMPOOL_SPACE to enable the latter. fixes #336 --- frontend/mempool-frontend-config.sample.json | 1 - .../app/components/about/about.component.html | 2 +- .../app/components/about/about.component.ts | 2 +- .../master-page/master-page.component.html | 2 +- .../master-page/master-page.component.ts | 1 + frontend/src/app/services/state.service.ts | 4 ++-- .../src/resources/mempool-logo-bigger.png | Bin 18351 -> 11995 bytes frontend/src/resources/mempool-logo.png | Bin 13721 -> 13315 bytes frontend/src/resources/mempool-space-logo.png | Bin 3524 -> 17016 bytes production/mempool-frontend-config.json | 1 - 10 files changed, 6 insertions(+), 7 deletions(-) diff --git a/frontend/mempool-frontend-config.sample.json b/frontend/mempool-frontend-config.sample.json index 8b668e0de..6ffc50bc8 100644 --- a/frontend/mempool-frontend-config.sample.json +++ b/frontend/mempool-frontend-config.sample.json @@ -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" diff --git a/frontend/src/app/components/about/about.component.html b/frontend/src/app/components/about/about.component.html index 37d240e22..26ba46727 100644 --- a/frontend/src/app/components/about/about.component.html +++ b/frontend/src/app/components/about/about.component.html @@ -1,7 +1,7 @@

- +
diff --git a/frontend/src/app/components/about/about.component.ts b/frontend/src/app/components/about/about.component.ts index 4e598e693..6d7b3dbc1 100644 --- a/frontend/src/app/components/about/about.component.ts +++ b/frontend/src/app/components/about/about.component.ts @@ -20,7 +20,7 @@ export class AboutComponent implements OnInit, OnDestroy { donationStatus = 1; sponsors$: Observable; donationObj: any; - sponsorsEnabled = this.stateService.env.SPONSORS_ENABLED; + sponsorsEnabled = this.stateService.env.OFFICIAL_MEMPOOL_SPACE; sponsors = null; requestSubscription: Subscription | undefined; diff --git a/frontend/src/app/components/master-page/master-page.component.html b/frontend/src/app/components/master-page/master-page.component.html index dcac245e7..ffe810cc7 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -3,7 +3,7 @@