diff --git a/frontend/.tx/config b/frontend/.tx/config index ec792e837..3016be606 100644 --- a/frontend/.tx/config +++ b/frontend/.tx/config @@ -1,7 +1,7 @@ [main] host = https://www.transifex.com -[mempool.frontend-src-locale-messages-xlf--wiz-i18n] +[mempool.frontend-src-locale-messages-xlf--master] file_filter = frontend/src/locale/messages..xlf source_lang = en-US type = XLIFF diff --git a/frontend/angular.json b/frontend/angular.json index 66359bbd5..678b22ab8 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -19,6 +19,10 @@ "baseHref":"/" }, "locales": { + "ar": { + "translation": "src/locale/messages.ar.xlf", + "baseHref": "/ar/" + }, "cs": { "translation": "src/locale/messages.cs.xlf", "baseHref": "/cs/" @@ -43,13 +47,17 @@ "translation": "src/locale/messages.ja.xlf", "baseHref": "/ja/" }, + "ka": { + "translation": "src/locale/messages.ka.xlf", + "baseHref": "/ka/" + }, "nl": { "translation": "src/locale/messages.nl.xlf", "baseHref": "/nl/" }, - "nn": { - "translation": "src/locale/messages.nn.xlf", - "baseHref": "/nn/" + "nb": { + "translation": "src/locale/messages.nb.xlf", + "baseHref": "/nb/" }, "pt": { "translation": "src/locale/messages.pt.xlf", @@ -71,6 +79,10 @@ "translation": "src/locale/messages.uk.xlf", "baseHref": "/uk/" }, + "vi": { + "translation": "src/locale/messages.vi.xlf", + "baseHref": "/vi/" + }, "zh": { "translation": "src/locale/messages.zh.xlf", "baseHref": "/zh/" diff --git a/frontend/package.json b/frontend/package.json index 9345193b8..16be05b1f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -23,7 +23,7 @@ "ng": "./node_modules/@angular/cli/bin/ng", "tsc": "./node_modules/typescript/bin/tsc", "i18n-extract-from-source": "./node_modules/@angular/cli/bin/ng xi18n --ivy --out-file ./src/locale/messages.xlf", - "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1", + "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1 --force", "serve": "ng serve --proxy-config proxy.conf.json", "start": "npm run generate-config && npm run sync-assets-dev && ng serve --proxy-config proxy.conf.json", "build": "npm run generate-config && ng build --prod --localize && npm run sync-assets", diff --git a/frontend/src/app/app.constants.ts b/frontend/src/app/app.constants.ts index 9ecf6b45a..8c1b46da8 100644 --- a/frontend/src/app/app.constants.ts +++ b/frontend/src/app/app.constants.ts @@ -65,7 +65,7 @@ export interface Language { } export const languages: Language[] = [ -// { code: 'ar', name: 'العربية' }, // Arabic + { code: 'ar', name: 'العربية' }, // Arabic // { code: 'bg', name: 'Български' }, // Bulgarian // { code: 'bs', name: 'Bosanski' }, // Bosnian // { code: 'ca', name: 'Català' }, // Catalan @@ -81,6 +81,7 @@ export const languages: Language[] = [ { code: 'fa', name: 'فارسی' }, // Persian { code: 'fr', name: 'Français' }, // French // { code: 'gl', name: 'Galego' }, // Galician + { code: 'ka', name: 'ქართული' }, // Georgian // { code: 'ko', name: '한국어' }, // Korean // { code: 'hr', name: 'Hrvatski' }, // Croatian // { code: 'id', name: 'Bahasa Indonesia' },// Indonesian @@ -94,8 +95,8 @@ export const languages: Language[] = [ // { code: 'ms', name: 'Bahasa Melayu' }, // Malay { code: 'nl', name: 'Nederlands' }, // Dutch { code: 'ja', name: '日本語' }, // Japanese -// { code: 'nb', name: 'Norsk bokmål' }, // Norwegian Bokmål - { code: 'nn', name: 'Norsk' }, // Norwegian Nynorsk + { code: 'nb', name: 'Norsk' }, // Norwegian Bokmål +// { code: 'nn', name: 'Norsk Nynorsk' }, // Norwegian Nynorsk // { code: 'pl', name: 'Polski' }, // Polish { code: 'pt', name: 'Português' }, // Portuguese // { code: 'pt-BR', name: 'Português (Brazil)' }, // Portuguese (Brazil) diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 2c33c0dfa..1b30e0d21 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -43,11 +43,10 @@ import { NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; import { FeesBoxComponent } from './components/fees-box/fees-box.component'; import { DashboardComponent } from './dashboard/dashboard.component'; import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontawesome'; -import { faAngleDoubleDown, faAngleDoubleUp, faAngleDown, faAngleUp, faBolt, faChartArea, faCogs, faCubes, faDatabase, faExchangeAlt, faInfoCircle, +import { faAngleDown, faAngleUp, faBolt, faChartArea, faCogs, faCubes, faDatabase, faExchangeAlt, faInfoCircle, faLink, faList, faSearch, faTachometerAlt, faThList, faTint, faTv } from '@fortawesome/free-solid-svg-icons'; import { ApiDocsComponent } from './components/api-docs/api-docs.component'; import { TermsOfServiceComponent } from './components/terms-of-service/terms-of-service.component'; -import { TranslationStringsComponent } from './components/translation-strings/translation-strings.component'; import { StorageService } from './services/storage.service'; import { HttpCacheInterceptor } from './services/http-cache.interceptor'; @@ -84,7 +83,6 @@ import { HttpCacheInterceptor } from './services/http-cache.interceptor'; DashboardComponent, ApiDocsComponent, TermsOfServiceComponent, - TranslationStringsComponent, ], imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), diff --git a/frontend/src/app/assets/assets.component.html b/frontend/src/app/assets/assets.component.html index 7414ea3c7..fb7e54fd6 100644 --- a/frontend/src/app/assets/assets.component.html +++ b/frontend/src/app/assets/assets.component.html @@ -1,14 +1,14 @@
-

Registered assets

+

Registered assets


- +
- +
@@ -16,11 +16,11 @@ - - - - - + + + + + @@ -43,11 +43,11 @@
NameTickerIssuer domainAsset IDIssuance TXNameTickerIssuer domainAsset IDIssuance TX
- - - - - + + + + + @@ -64,7 +64,7 @@
- Error loading assets data. + Error loading assets data.
{{ error.error }}
diff --git a/frontend/src/app/assets/assets.component.ts b/frontend/src/app/assets/assets.component.ts index 40a4a29be..2ae0f21d5 100644 --- a/frontend/src/app/assets/assets.component.ts +++ b/frontend/src/app/assets/assets.component.ts @@ -6,6 +6,7 @@ import { distinctUntilChanged, map, filter, mergeMap, tap, take } from 'rxjs/ope import { ActivatedRoute, Router } from '@angular/router'; import { merge, combineLatest, Observable } from 'rxjs'; import { AssetExtended } from '../interfaces/electrs.interface'; +import { SeoService } from '../services/seo.service'; @Component({ selector: 'app-assets', @@ -32,9 +33,11 @@ export class AssetsComponent implements OnInit { private formBuilder: FormBuilder, private route: ActivatedRoute, private router: Router, + private seoService: SeoService, ) { } ngOnInit() { + this.seoService.setTitle($localize`:@@ee8f8008bae6ce3a49840c4e1d39b4af23d4c263:Assets`); this.itemsPerPage = Math.max(Math.round(this.contentSpace / this.fiveItemsPxSize) * 5, 10); this.searchForm = this.formBuilder.group({ diff --git a/frontend/src/app/bisq/bisq-address/bisq-address.component.html b/frontend/src/app/bisq/bisq-address/bisq-address.component.html index 2413b90a0..632d396bd 100644 --- a/frontend/src/app/bisq/bisq-address/bisq-address.component.html +++ b/frontend/src/app/bisq/bisq-address/bisq-address.component.html @@ -1,5 +1,5 @@
NameTickerIssuer domainAsset IDIssuance TXNameTickerIssuer domainAsset IDIssuance TX
- + - + - + @@ -43,7 +43,11 @@
-

{{ transactions.length | number }} transactions

+

+ + {{ i }} transaction + {{ i }} transactions +

diff --git a/frontend/src/app/bisq/bisq-address/bisq-address.component.ts b/frontend/src/app/bisq/bisq-address/bisq-address.component.ts index f3968fcf0..aded75d8e 100644 --- a/frontend/src/app/bisq/bisq-address/bisq-address.component.ts +++ b/frontend/src/app/bisq/bisq-address/bisq-address.component.ts @@ -36,7 +36,7 @@ export class BisqAddressComponent implements OnInit, OnDestroy { this.transactions = null; document.body.scrollTo(0, 0); this.addressString = params.get('id') || ''; - this.seoService.setTitle('Address: ' + this.addressString); + this.seoService.setTitle($localize`:@@bisq-address.component.browser-title:Address: ${this.addressString}:INTERPOLATION:`); return this.bisqApiService.getAddress$(this.addressString) .pipe( diff --git a/frontend/src/app/bisq/bisq-block/bisq-block.component.html b/frontend/src/app/bisq/bisq-block/bisq-block.component.html index 4e1c7b95c..0f4c2bffc 100644 --- a/frontend/src/app/bisq/bisq-block/bisq-block.component.html +++ b/frontend/src/app/bisq/bisq-block/bisq-block.component.html @@ -1,7 +1,7 @@
Total receivedTotal received {{ totalReceived / 100 | number: '1.2-2' }} BSQ
Total sentTotal sent {{ totalSent / 100 | number: '1.2-2' }} BSQ
Final balanceBalance {{ (totalReceived - totalSent) / 100 | number: '1.2-2' }} BSQ ()
- + - + @@ -32,7 +32,7 @@
HashHash {{ block.hash | shortenString : 13 }}
TimestampTimestamp {{ block.time | date:'yyyy-MM-dd HH:mm' }}
- ( ago) + ()
- +
Previous hashPrevious hash {{ block.previousBlockHash | shortenString : 13 }}
@@ -44,7 +44,11 @@
-

{{ block.txs.length | number }} transactions

+

+ + {{ i }} transaction + {{ i }} transactions +

@@ -73,11 +77,11 @@ - + - +
HashHash
TimestampTimestamp
@@ -86,7 +90,7 @@ - +
Previous hashPrevious hash
diff --git a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts index 6980f3ae8..d1cc3eeca 100644 --- a/frontend/src/app/bisq/bisq-block/bisq-block.component.ts +++ b/frontend/src/app/bisq/bisq-block/bisq-block.component.ts @@ -82,7 +82,7 @@ export class BisqBlockComponent implements OnInit, OnDestroy { } this.isLoading = false; this.blockHeight = block.height; - this.seoService.setTitle('Block: #' + block.height + ': ' + block.hash); + this.seoService.setTitle($localize`:@@bisq-block.component.browser-title:Block ${block.height}:BLOCK_HEIGHT:: ${block.hash}:BLOCK_HASH:`); this.block = block; }); } diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html index e1953ec63..b3e1157d7 100644 --- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html +++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.html @@ -1,5 +1,5 @@
-

Blocks

+

Blocks


@@ -9,15 +9,15 @@
- - - - + + + + - + diff --git a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts index 86c161b02..ee4108ae5 100644 --- a/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts +++ b/frontend/src/app/bisq/bisq-blocks/bisq-blocks.component.ts @@ -32,7 +32,7 @@ export class BisqBlocksComponent implements OnInit { ) { } ngOnInit(): void { - this.seoService.setTitle('Blocks'); + this.seoService.setTitle($localize`:@@8a7b4bd44c0ac71b2e72de0398b303257f7d2f54:Blocks`); this.itemsPerPage = Math.max(Math.round(this.contentSpace / this.fiveItemsPxSize) * 5, 10); this.loadingItems = Array(this.itemsPerPage); if (document.body.clientWidth < 768) { diff --git a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html index b34cc17ce..447c4f1aa 100644 --- a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html +++ b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.html @@ -1,5 +1,5 @@
-

BSQ Statistics

+

BSQ statistics


@@ -7,41 +7,37 @@
HeightConfirmedTotal SentTransactionsHeightConfirmedTotal sentTransactions
{{ block.height }} ago {{ calculateTotalOutput(block) / 100 | number: '1.2-2' }} BSQ {{ block.txs.length }}
- - - - - + - + - + - + - + - + - + - + @@ -55,23 +51,23 @@ - + - + - + - + - + @@ -79,11 +75,11 @@ - + - + diff --git a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts index 9b58e621e..53f2051ae 100644 --- a/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts +++ b/frontend/src/app/bisq/bisq-stats/bisq-stats.component.ts @@ -21,8 +21,7 @@ export class BisqStatsComponent implements OnInit { ) { } ngOnInit() { - this.seoService.setTitle('BSQ Statistics'); - + this.seoService.setTitle($localize`:@@2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4:BSQ statistics`); this.stateService.bsqPrice$ .subscribe((bsqPrice) => { this.price = bsqPrice; diff --git a/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html b/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html index fd605fb8d..ef700ed28 100644 --- a/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html +++ b/frontend/src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html @@ -4,15 +4,15 @@
PropertyValue
Existing amountExisting amount {{ (stats.minted - stats.burnt) / 100 | number: '1.2-2' }} BSQ
Minted amountMinted amount {{ stats.minted | number: '1.2-2' }} BSQ
Burnt amountBurnt amount {{ stats.burnt | number: '1.2-2' }} BSQ
AddressesAddresses {{ stats.addresses | number }}
Unspent TXOsUnspent TXOs {{ stats.unspent_txos | number }}
Spent TXOsSpent TXOs {{ stats.spent_txos | number }}
PricePrice
Market capMarket cap
Existing amountExisting amount
Minted amountMinted amount
Burnt amountBurnt amount
AddressesAddresses
Unspent TXOsUnspent TXOs
PricePrice
Market capMarket cap
- + - + - + @@ -22,11 +22,11 @@
InputsInputs {{ totalInput / 100 | number: '1.2-2' }} BSQ
OutputsOutputs {{ totalOutput / 100 | number: '1.2-2' }} BSQ
IssuanceIssued amount {{ totalIssued / 100 | number: '1.2-2' }} BSQ
- + - + diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html index 7da741274..4e1df26d8 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.html @@ -1,11 +1,14 @@
-

Transaction

+

Transaction

- - +
TypeType {{ tx.txTypeDisplayString }}
VersionVersion {{ tx.txVersion }}
- + - + - +
TimestampTimestamp {{ bisqTx.time | date:'yyyy-MM-dd HH:mm' }}
- ( ago) + ()
Included in blockIncluded in block {{ bisqTx.blockHeight }}
FeaturesFeatures @@ -51,12 +54,12 @@ - + - +
BurntBurnt amount {{ bisqTx.burntFee / 100 | number: '1.2-2' }} BSQ ()
Fee per vByteFee per vByte {{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB   @@ -75,14 +78,14 @@
-

Details

+

Details


-

Inputs & Outputs

+

Inputs & Outputs

@@ -121,7 +124,7 @@
-

Details

+

Details

@@ -142,7 +145,7 @@
-

Inputs & Outputs

+

Inputs & Outputs

diff --git a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts index 50b880113..2dd745762 100644 --- a/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts +++ b/frontend/src/app/bisq/bisq-transaction/bisq-transaction.component.ts @@ -43,7 +43,7 @@ export class BisqTransactionComponent implements OnInit, OnDestroy { this.error = null; document.body.scrollTo(0, 0); this.txId = params.get('id') || ''; - this.seoService.setTitle('Transaction: ' + this.txId); + this.seoService.setTitle($localize`:@@bisq.transaction.browser-title:Transaction: ${this.txId}:INTERPOLATION:`); if (history.state.data) { return of(history.state.data); } diff --git a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html index 371cc9edd..a261ecab5 100644 --- a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html +++ b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.html @@ -1,5 +1,5 @@
-

Transactions

+

Transactions

@@ -15,11 +15,11 @@
- - - - - + + + + + @@ -37,7 +37,7 @@ {{ calculateTotalOutput(tx.outputs) / 100 | number: '1.2-2' }} BSQ - + diff --git a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts index 7c9859511..c46c8fdfa 100644 --- a/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts +++ b/frontend/src/app/bisq/bisq-transactions/bisq-transactions.component.ts @@ -52,7 +52,9 @@ export class BisqTransactionsComponent implements OnInit { }; txTypeDropdownTexts: IMultiSelectTexts = { - defaultTitle: 'Filter', + defaultTitle: $localize`:@@bisq-transactions.filter:Filter`, + checkAll: $localize`:@@bisq-transactions.selectall:Select all`, + uncheckAll: $localize`:@@bisq-transactions.unselectall:Unselect all`, }; // @ts-ignore @@ -72,7 +74,7 @@ export class BisqTransactionsComponent implements OnInit { ) { } ngOnInit(): void { - this.seoService.setTitle('Transactions'); + this.seoService.setTitle($localize`:@@add4cd82e3e38a3110fe67b3c7df56e9602644ee:Transactions`); this.radioGroupForm = this.formBuilder.group({ txTypes: [this.txTypesDefaultChecked], diff --git a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html index d2da552f2..fcd908a73 100644 --- a/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html +++ b/frontend/src/app/bisq/bisq-transfers/bisq-transfers.component.html @@ -59,12 +59,16 @@
- Burnt: {{ tx.burntFee / 100 | number: '1.2-2' }} BSQ () + Burnt amount: {{ tx.burntFee / 100 | number: '1.2-2' }} BSQ ()
- +  

- Navigate to https://mempool.space/about to sponsor + Navigate to https://mempool.space/about to sponsor

@@ -178,19 +178,19 @@



- + - + - + diff --git a/frontend/src/app/components/about/about.component.ts b/frontend/src/app/components/about/about.component.ts index d1999ed58..04681d95a 100644 --- a/frontend/src/app/components/about/about.component.ts +++ b/frontend/src/app/components/about/about.component.ts @@ -34,7 +34,7 @@ export class AboutComponent implements OnInit { ngOnInit() { this.gitCommit$ = this.stateService.gitCommit$.pipe(map((str) => str.substr(0, 8))); - this.seoService.setTitle('About'); + this.seoService.setTitle($localize`:@@004b222ff9ef9dd4771b777950ca1d0e4cd4348a:About`); this.websocketService.want(['blocks']); this.donationForm = this.formBuilder.group({ diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html index 7109c21e3..35a02bf38 100644 --- a/frontend/src/app/components/address/address.component.html +++ b/frontend/src/app/components/address/address.component.html @@ -43,7 +43,11 @@
-

{{ (transactions?.length | number) || '?' }} of {{ txCount | number }} transactions

+

+   + {{ (transactions?.length | number) || '?' }} of {{ txCount | number }} transaction + {{ (transactions?.length | number) || '?' }} of {{ txCount | number }} transactions +

diff --git a/frontend/src/app/components/address/address.component.ts b/frontend/src/app/components/address/address.component.ts index bb596e6f8..f1d21d3b9 100644 --- a/frontend/src/app/components/address/address.component.ts +++ b/frontend/src/app/components/address/address.component.ts @@ -61,7 +61,7 @@ export class AddressComponent implements OnInit, OnDestroy { this.transactions = null; document.body.scrollTo(0, 0); this.addressString = params.get('id') || ''; - this.seoService.setTitle('Address: ' + this.addressString); + this.seoService.setTitle($localize`:@@address.component.browser-title:Address: ${this.addressString}:INTERPOLATION:`); return merge( of(true), diff --git a/frontend/src/app/components/api-docs/api-docs.component.html b/frontend/src/app/components/api-docs/api-docs.component.html index 73013525c..14204e36d 100644 --- a/frontend/src/app/components/api-docs/api-docs.component.html +++ b/frontend/src/app/components/api-docs/api-docs.component.html @@ -1,7 +1,7 @@
-

{{ network.val === '' ? 'Bitcoin' : network.val.charAt(0).toUpperCase() + network.val.slice(1) }} API Service

+

{{ network.val === '' ? 'Bitcoin' : network.val.charAt(0).toUpperCase() + network.val.slice(1) }} API Service

- + @@ -82,7 +82,11 @@
-

{{ block.tx_count | number }} transactiontransactions

+

+ + {{ i }} transaction + {{ i }} transactions +

diff --git a/frontend/src/app/components/block/block.component.ts b/frontend/src/app/components/block/block.component.ts index 81bdd5eff..3c9b3bf08 100644 --- a/frontend/src/app/components/block/block.component.ts +++ b/frontend/src/app/components/block/block.component.ts @@ -95,7 +95,7 @@ export class BlockComponent implements OnInit, OnDestroy { tap((block: Block) => { this.block = block; this.blockHeight = block.height; - this.seoService.setTitle('Block: #' + block.height + ': ' + block.id); + this.seoService.setTitle($localize`:@@block.component.browser-title:Block ${block.height}:BLOCK_HEIGHT:: ${block.id}:BLOCK_ID:`); this.isLoadingBlock = false; if (block.coinbaseTx) { this.coinbaseTx = block.coinbaseTx; diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html index a6ee77c48..c6de90a50 100644 --- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html +++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html @@ -7,13 +7,17 @@
- ~{{ block.medianFee | number:'1.0-0' }} sat/vB + ~{{ block.medianFee | number:'1.0-0' }} sat/vB
- {{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} sat/vB + {{ block.feeRange[1] | number:'1.0-0' }} - {{ block.feeRange[block.feeRange.length - 1] | number:'1.0-0' }} sat/vB
{{ block.size | bytes: 2 }}
-
{{ block.tx_count | number }} transactiontransactions
+
+ + {{ i }} transaction + {{ i }} transactions +
diff --git a/frontend/src/app/components/clipboard/clipboard.component.html b/frontend/src/app/components/clipboard/clipboard.component.html index 3ee729ebc..1150074ac 100644 --- a/frontend/src/app/components/clipboard/clipboard.component.html +++ b/frontend/src/app/components/clipboard/clipboard.component.html @@ -1,4 +1,4 @@ - + diff --git a/frontend/src/app/components/clipboard/clipboard.component.ts b/frontend/src/app/components/clipboard/clipboard.component.ts index b2febef7c..317cba7b6 100644 --- a/frontend/src/app/components/clipboard/clipboard.component.ts +++ b/frontend/src/app/components/clipboard/clipboard.component.ts @@ -1,4 +1,4 @@ -import { Component, OnInit, ViewChild, ElementRef, AfterViewInit, Input, ChangeDetectionStrategy } from '@angular/core'; +import { Component, ViewChild, ElementRef, AfterViewInit, Input, ChangeDetectionStrategy } from '@angular/core'; import * as ClipboardJS from 'clipboard'; import * as tlite from 'tlite'; @@ -12,6 +12,7 @@ export class ClipboardComponent implements AfterViewInit { @ViewChild('btn') btn: ElementRef; @ViewChild('buttonWrapper') buttonWrapper: ElementRef; @Input() text: string; + copiedMessage: string = $localize`:@@clipboard.copied-message:Copied!`; clipboard: any; @@ -19,7 +20,7 @@ export class ClipboardComponent implements AfterViewInit { ngAfterViewInit() { this.clipboard = new ClipboardJS(this.btn.nativeElement); - this.clipboard.on('success', (e) => { + this.clipboard.on('success', () => { tlite.show(this.buttonWrapper.nativeElement); setTimeout(() => { tlite.hide(this.buttonWrapper.nativeElement); diff --git a/frontend/src/app/components/fees-box/fees-box.component.html b/frontend/src/app/components/fees-box/fees-box.component.html index 5fd3d3198..4a3207bd4 100644 --- a/frontend/src/app/components/fees-box/fees-box.component.html +++ b/frontend/src/app/components/fees-box/fees-box.component.html @@ -3,19 +3,19 @@
diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.html b/frontend/src/app/components/latest-blocks/latest-blocks.component.html index 4a2032c41..46e043107 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html @@ -1,5 +1,5 @@
-

Blocks

+

Blocks


@@ -10,7 +10,7 @@
- + diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.ts b/frontend/src/app/components/latest-blocks/latest-blocks.component.ts index f67bcccb2..ccc898355 100644 --- a/frontend/src/app/components/latest-blocks/latest-blocks.component.ts +++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.ts @@ -34,7 +34,7 @@ export class LatestBlocksComponent implements OnInit, OnDestroy { ) { } ngOnInit() { - this.seoService.setTitle('Blocks'); + this.seoService.setTitle($localize`:@@f4cba7faeb126346f09cc6af30124f9a343f7a28:Blocks`); this.websocketService.want(['blocks']); this.network$ = merge(of(''), this.stateService.networkChanged$); 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 15e6ec3e5..4d4fcef27 100644 --- a/frontend/src/app/components/master-page/master-page.component.html +++ b/frontend/src/app/components/master-page/master-page.component.html @@ -26,37 +26,37 @@ diff --git a/frontend/src/app/components/mempool-block/mempool-block.component.html b/frontend/src/app/components/mempool-block/mempool-block.component.html index dee0f4c19..f643992a2 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.html +++ b/frontend/src/app/components/mempool-block/mempool-block.component.html @@ -14,11 +14,11 @@ - + - + @@ -29,7 +29,7 @@ - + - + @@ -73,7 +77,7 @@ - + @@ -123,10 +127,10 @@ - < {{ 1 * txInBlockIndex + 1 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) +  () - ~{{ 10 * txInBlockIndex + 10 }} minutes ({{ txInBlockIndex + 1 }} block{{ txInBlockIndex > 0 ? 's' : '' }}) +  () @@ -177,6 +181,10 @@ + + + + @@ -241,7 +249,7 @@
-

Details

+

Details

TransactionTypeAmountConfirmedHeightTransactionTypeAmountConfirmedHeight
ago {{ tx.blockHeight }}
Median fee~{{ block.medianFee | number:'1.0-0' }} sat/vB ()~{{ block.medianFee | number:'1.0-0' }} sat/vB ()
Low priority

- {{ feeEstimations.hourFee }} sat/vB () + {{ feeEstimations.hourFee }} sat/vB ()

Medium priority

- {{ feeEstimations.halfHourFee }} sat/vB () + {{ feeEstimations.halfHourFee }} sat/vB ()

High priority

- {{ feeEstimations.fastestFee }} sat/vB () + {{ feeEstimations.fastestFee }} sat/vB ()

Timestamp Mined TransactionsFilledSize
Median fee~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()~{{ mempoolBlock.medianFee | number:'1.0-0' }} sat/vB ()
Fee span{{ mempoolBlock.feeRange[0] | number:'1.0-0' }} - {{ mempoolBlock.feeRange[mempoolBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB{{ mempoolBlock.feeRange[0] | number:'1.0-0' }} - {{ mempoolBlock.feeRange[mempoolBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
Total fees{{ mempoolBlock.nTx }}
FilledSize
diff --git a/frontend/src/app/components/mempool-block/mempool-block.component.ts b/frontend/src/app/components/mempool-block/mempool-block.component.ts index 7daf24e76..2e9365298 100644 --- a/frontend/src/app/components/mempool-block/mempool-block.component.ts +++ b/frontend/src/app/components/mempool-block/mempool-block.component.ts @@ -68,13 +68,11 @@ export class MempoolBlockComponent implements OnInit, OnDestroy { getOrdinal(mempoolBlock: MempoolBlock): string { const blocksInBlock = Math.ceil(mempoolBlock.blockVSize / 1000000); if (this.mempoolBlockIndex === 0) { - return 'Next block'; - } else if (this.mempoolBlockIndex === this.stateService.env.KEEP_BLOCKS_AMOUNT - 1 && blocksInBlock > 1 ) { - return `Stack of ${blocksInBlock} blocks`; + return $localize`:@@mempool-block.next.block:Next block`; + } else if (this.mempoolBlockIndex === this.stateService.env.KEEP_BLOCKS_AMOUNT - 1 && blocksInBlock > 1) { + return $localize`:@@mempool-block.stack.of.blocks:Stack of ${blocksInBlock}:INTERPOLATION: mempool blocks`; } else { - const s = ['th', 'st', 'nd', 'rd']; - const v = this.mempoolBlockIndex + 1 % 100; - return this.mempoolBlockIndex + 1 + (s[(v - 20) % 10] || s[v] || s[0]) + ' next block'; + return $localize`:@@mempool-block.block.no:Mempool block ${this.mempoolBlockIndex + 1}:INTERPOLATION:`; } } } diff --git a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html index 0d6882ba5..375ea1919 100644 --- a/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html +++ b/frontend/src/app/components/mempool-blocks/mempool-blocks.component.html @@ -11,17 +11,24 @@ {{ projectedBlock.feeRange[0] | number:'1.0-0' }} - {{ projectedBlock.feeRange[projectedBlock.feeRange.length - 1] | number:'1.0-0' }} sat/vB
{{ projectedBlock.blockSize | bytes: 2 }}
-
{{ projectedBlock.nTx | number }} transactiontransactions
+
+ + {{ i }} transaction + {{ i }} transactions +
- In < {{ 1 * i + 1 }} minute + - In ~{{ 10 * i + 10 }} minutes +
-
({{ projectedBlock.blockVSize / 1000000 | ceil }} blocks)
+
+ + ({{ i }} blocks) +
@@ -30,3 +37,7 @@
+ +In ~{{ i }} minutes + +In ~{{ i }} minute diff --git a/frontend/src/app/components/miner/miner.component.ts b/frontend/src/app/components/miner/miner.component.ts index a17dd37f6..c022526fb 100644 --- a/frontend/src/app/components/miner/miner.component.ts +++ b/frontend/src/app/components/miner/miner.component.ts @@ -39,7 +39,7 @@ export class MinerComponent implements OnChanges { if (pools.payout_addresses[vout.scriptpubkey_address]) { this.miner = pools.payout_addresses[vout.scriptpubkey_address].name; - this.title = 'Identified by payout address: ' + vout.scriptpubkey_address; + this.title = $localize`:@@miner-identified-by-payout:Identified by payout address: '${vout.scriptpubkey_address}:PAYOUT_ADDRESS:'`; this.url = pools.payout_addresses[vout.scriptpubkey_address].link; break; } @@ -49,7 +49,7 @@ export class MinerComponent implements OnChanges { const coinbaseAscii = this.hex2ascii(this.coinbaseTransaction.vin[0].scriptsig); if (coinbaseAscii.indexOf(tag) > -1) { this.miner = pools.coinbase_tags[tag].name; - this.title = 'Identified by coinbase tag: \'' + tag + '\''; + this.title = $localize`:@@miner-identified-by-coinbase:Identified by coinbase tag: '${tag}:TAG:'`; this.url = pools.coinbase_tags[tag].link; break; } diff --git a/frontend/src/app/components/search-form/search-form.component.html b/frontend/src/app/components/search-form/search-form.component.html index c16374917..a4ad5d9d4 100644 --- a/frontend/src/app/components/search-form/search-form.component.html +++ b/frontend/src/app/components/search-form/search-form.component.html @@ -4,7 +4,7 @@
- +
diff --git a/frontend/src/app/components/statistics/statistics.component.html b/frontend/src/app/components/statistics/statistics.component.html index 872b48e06..e876f41fa 100644 --- a/frontend/src/app/components/statistics/statistics.component.html +++ b/frontend/src/app/components/statistics/statistics.component.html @@ -40,12 +40,12 @@ 1Y - +
- +
diff --git a/frontend/src/app/components/statistics/statistics.component.ts b/frontend/src/app/components/statistics/statistics.component.ts index c9d65a809..8daa192c1 100644 --- a/frontend/src/app/components/statistics/statistics.component.ts +++ b/frontend/src/app/components/statistics/statistics.component.ts @@ -52,7 +52,7 @@ export class StatisticsComponent implements OnInit { } ngOnInit() { - this.seoService.setTitle('Graphs'); + this.seoService.setTitle($localize`:@@5d4f792f048fcaa6df5948575d7cb325c9393383:Graphs`); this.stateService.networkChanged$.subscribe((network) => this.network = network); this.inverted = this.storageService.getValue('inverted-graph') === 'true'; const isMobile = window.innerWidth <= 767.98; diff --git a/frontend/src/app/components/television/television.component.html b/frontend/src/app/components/television/television.component.html index 49e1bb1da..2b5273b11 100644 --- a/frontend/src/app/components/television/television.component.html +++ b/frontend/src/app/components/television/television.component.html @@ -5,7 +5,7 @@
- +
diff --git a/frontend/src/app/components/television/television.component.ts b/frontend/src/app/components/television/television.component.ts index 0c5b2a920..e4d12051e 100644 --- a/frontend/src/app/components/television/television.component.ts +++ b/frontend/src/app/components/television/television.component.ts @@ -24,7 +24,7 @@ export class TelevisionComponent implements OnInit { ) { } ngOnInit() { - this.seoService.setTitle('TV view'); + this.seoService.setTitle($localize`:@@46ce8155c9ab953edeec97e8950b5a21e67d7c4e:TV view`); this.websocketService.want(['blocks', 'live-2h-chart', 'mempool-blocks']); this.apiService.list2HStatistics$() diff --git a/frontend/src/app/components/transaction/transaction.component.html b/frontend/src/app/components/transaction/transaction.component.html index dfd27e13d..b48423fad 100644 --- a/frontend/src/app/components/transaction/transaction.component.html +++ b/frontend/src/app/components/transaction/transaction.component.html @@ -12,7 +12,11 @@

Transaction

- + @@ -56,7 +60,7 @@
ConfirmedAfter After
Fee{{ tx.fee | number }} sat (){{ tx.fee | number }} sat ()
Fee per vByte Size {{ tx.size | bytes: 2 }}
Virtual size{{ tx.weight / 4 | vbytes: 2 }}
Weight {{ tx.weight | wuBytes: 2 }}
@@ -253,6 +261,10 @@ + + + +
@@ -277,3 +289,10 @@
+ +In ~{{ i }} minutes + +In ~{{ i }} minute + +{{ i }} block +{{ i }} blocks \ No newline at end of file diff --git a/frontend/src/app/components/transaction/transaction.component.ts b/frontend/src/app/components/transaction/transaction.component.ts index 5983a20fe..cbd3916fc 100644 --- a/frontend/src/app/components/transaction/transaction.component.ts +++ b/frontend/src/app/components/transaction/transaction.component.ts @@ -45,7 +45,7 @@ export class TransactionComponent implements OnInit, OnDestroy { this.subscription = this.route.paramMap.pipe( switchMap((params: ParamMap) => { this.txId = params.get('id') || ''; - this.seoService.setTitle('Transaction: ' + this.txId); + this.seoService.setTitle($localize`:@@bisq.transaction.browser-title:Transaction: ${this.txId}:INTERPOLATION:`); this.resetTransaction(); return merge( of(true), diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html index 0db4eec8b..194d9356e 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.html +++ b/frontend/src/app/components/transactions-list/transactions-list.component.html @@ -122,15 +122,17 @@ - Peg-out to - - {{ vout.pegout.scriptpubkey_address | shortenString : 16 }} - {{ vout.pegout.scriptpubkey_address | shortenString : 35 }} - + Peg-out to + + + {{ vout.pegout.scriptpubkey_address | shortenString : 16 }} + {{ vout.pegout.scriptpubkey_address | shortenString : 35 }} + + - OP_RETURN {{ vout.scriptpubkey_asm | hex2ascii }} + OP_RETURN {{ vout.scriptpubkey_asm | hex2ascii }} {{ vout.scriptpubkey_type | scriptpubkeyType }} @@ -198,7 +200,11 @@
- + diff --git a/frontend/src/app/components/translation-strings/translation-strings.component.html b/frontend/src/app/components/translation-strings/translation-strings.component.html deleted file mode 100644 index 4107925f4..000000000 --- a/frontend/src/app/components/translation-strings/translation-strings.component.html +++ /dev/null @@ -1,22 +0,0 @@ -{{counter}} -
- Just now - {{counter}} sec ago - {{counter}} secs ago - {{counter}} second ago - {{counter}} seconds ago - {{counter}} min ago - {{counter}} mins ago - {{counter}} minute ago - {{counter}} minutes ago - {{counter}} hour ago - {{counter}} hours ago - {{counter}} day ago - {{counter}} days ago - {{counter}} week ago - {{counter}} weeks ago - {{counter}} month ago - {{counter}} months ago - {{counter}} year ago - {{counter}} years ago -
diff --git a/frontend/src/app/components/translation-strings/translation-strings.component.ts b/frontend/src/app/components/translation-strings/translation-strings.component.ts deleted file mode 100644 index 25938ce77..000000000 --- a/frontend/src/app/components/translation-strings/translation-strings.component.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Component } from '@angular/core'; - -@Component({ - selector: 'app-translation-strings', - templateUrl: './translation-strings.component.html' -}) -export class TranslationStringsComponent { - counter: string; - constructor() { } -} diff --git a/frontend/src/app/components/tx-features/tx-features.component.html b/frontend/src/app/components/tx-features/tx-features.component.html index f8d959043..f015f0000 100644 --- a/frontend/src/app/components/tx-features/tx-features.component.html +++ b/frontend/src/app/components/tx-features/tx-features.component.html @@ -1,8 +1,8 @@ -SegWit +SegWit - SegWit + SegWit - SegWit + SegWit -RBF +RBF diff --git a/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html b/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html index eceb137bb..ff2ab4e33 100644 --- a/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html +++ b/frontend/src/app/components/tx-fee-rating/tx-fee-rating.component.html @@ -1,3 +1,3 @@ Optimal -Overpaid {{ overpaidTimes }}x -Overpaid {{ overpaidTimes }}x +Overpaid {{ overpaidTimes }}x +Overpaid {{ overpaidTimes }}x diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html index f3043c487..dcc7df9dd 100644 --- a/frontend/src/app/dashboard/dashboard.component.html +++ b/frontend/src/app/dashboard/dashboard.component.html @@ -128,8 +128,8 @@ @@ -161,7 +161,9 @@
Mempool size

- {{ mempoolBlocksData.size | bytes }} ({{ mempoolBlocksData.blocks }} blockblocks) + {{ mempoolBlocksData.size | bytes }} () + {{ i }} block + {{ i }} blocks

@@ -182,7 +184,7 @@
-
{{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
+
{{ mempoolInfoData.value.vBytesPerSecond | ceil | number }} vB/s
diff --git a/frontend/src/app/dashboard/dashboard.component.ts b/frontend/src/app/dashboard/dashboard.component.ts index a0ffc82d1..132a8a24b 100644 --- a/frontend/src/app/dashboard/dashboard.component.ts +++ b/frontend/src/app/dashboard/dashboard.component.ts @@ -256,9 +256,9 @@ export class DashboardComponent implements OnInit { changeLanguage() { const language = this.languageForm.get('language').value; - this.document.location.href = (language === 'en' ? '/' : '/' + language); try { document.cookie = `lang=${language}; expires=Thu, 18 Dec 2050 12:00:00 UTC; path=/`; } catch (e) { } + this.document.location.href = `${language === 'en' ? '' : '/' + language}/${this.stateService.network}`; } } diff --git a/frontend/src/locale/messages.ar.xlf b/frontend/src/locale/messages.ar.xlf new file mode 100644 index 000000000..1fb9c66aa --- /dev/null +++ b/frontend/src/locale/messages.ar.xlf @@ -0,0 +1,2735 @@ + + + + + Transaction: + صفقه + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + صفقه + + src/app/components/transaction/transaction.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + + shared.transaction + + + This transaction has been replaced by: + هذه الصفقه تم استبدالها بـ: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + تأكيده + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + التأكيدات + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + غير مؤكده + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + المساهمات و الانتاجيه + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + التفاصيل + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + التفاصيل + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + حجم + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + الحجم الافتراضي + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + وزن + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + الوقت و التاريخ + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + مجاناً + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + الرسوم لكل ف بايت + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + سات\فـ ب + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 153 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + مدرجة في الكتلة + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + تم تأكيد + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + بعد + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + ميزات + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 136 + + Transaction features + transaction.features + + + ETA + الوقت المقدر للوصول + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + سات + + src/app/components/transaction/transaction.component.html + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + الرؤية الأولى + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + في الساعات القادمه (أو أكثر) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + دقائق + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction Minutes + transaction.minutes + + + block + كتله + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + shared.block + + + Transaction not found. + الصفقة غير موجودة. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + في انتظار ظهورها على الميم بوول + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + blocks + الكتله + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + + + Coinbase + كوين بيس + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (عملات تم إنشاؤها حديثًا) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + ربط + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + ن التسلسل + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + البرنامج النصي (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + البرنامج النصي. (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + شوهد + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + البرنامج النصي استرداد P2SH + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + تحميل الكل + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + نوع + + src/app/components/transactions-list/transactions-list.component.html + 164 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + + transactions-list.vout.scriptpubkey-type + + + data + البيانات + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + سات + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + تأكيده + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + التأكيدات + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + غير مؤكده + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + خصوصي + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + الكتله : + + src/app/components/block/block.component.ts + 98 + + + + Genesis + منشأ + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + كتله + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + هاش + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + الوقت و التاريخ + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + حجم + + src/app/components/block/block.component.html + 31 + + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + وزن + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + المعدن + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + متوسط ​​الرسوم + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + + + Total fees + الرسوم الكلية + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + الدعم + الرسوم: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + صفقه + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + صفقات + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + shared.transaction-count.plural + + + Error loading block data. + خطأ في تحميل بيانات الكتله + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address: + العنوان: + + src/app/components/address/address.component.ts + 64 + + + + Address + العنوان + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + مجموع الواردات + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + مجموع المرسل + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + الرصيد + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + من تحويله + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + من تحويلات + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + خطأ في تحميل بيانات العنوان. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + بحث + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + كتله + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + كتل + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + + + Height + ارتفاع + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + + latest-blocks.height + + + Mined + تم تعدينه + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + معاملات + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/master-page/master-page.component.html + 29 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + + latest-blocks.transactions + + + multisig of + متعدد التوقيع من + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + الطبقه فصل + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + في + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + دقيقه + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + دقائق + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + كتله + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + حول + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + Offline + غير متصل + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + إعاده الاتصال... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + احصائيات + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + لوحة التحكم + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + الرسوم البيانية + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + وضع التلفزيون + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + الأصول + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + + + About the project + نبذه عن المشروع + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + يهدف مشروع mempool المفتوح المصدر إلى صنع مستعرض عالي الجودة وبشكل صوري لنظام Bitcoin بأكمله، دون تشتيت الانتباه لأشياء مثل الـ altcoins أو وضع اعلانات أو متتبعات طرف ثالث. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + فريق الصيانة + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + تطوير + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + العمليات + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + الرعاة ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + كن راعياً ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + طلب الفاتوره + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + شروط الخدمة + + src/app/components/about/about.component.html + 206 + + + src/app/components/api-docs/api-docs.component.html + 284 + + + src/app/dashboard/dashboard.component.html + 143 + + Terms of Service + shared.terms-of-service + + + Navigate to https://mempool.space/about to sponsor + انتقل إلى https://mempool.space/about للاعلان + + src/app/components/about/about.component.html + 65 + + about.navigate-to-sponsor + + + Amount required + المبلغ المطلوب + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + الحد الأدنى للمبلغ هو 0.001 بتكوين + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + إذا تبرعت بمبلغ 0.01 بتكوين أو أكثر ، فستتم إضافة صورة ملفك الشخصي إلى قائمة الرعاة أعلاه :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + في انتظار المعاملة ... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + تم تأكيد التبرع! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + شكراً لك! + + src/app/components/about/about.component.html + 175 + + 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... + جار تحميل الرسوم البيانية ... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + عكس + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + في انتظار الكتل ... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + حجم الميم بول: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Next block + الكتلة التالية + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + Fee span + امتداد الرسوم + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + الرسوم الكلية + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Asset: + الأصل: + + src/app/components/asset/asset.component.ts + 73 + + + + Name + الأسم + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + الاحكام + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + الكمية المحروقه + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + المُصدر + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + إصدار TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + مربوط + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + غير مربوط + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + المبلغ الصادر + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + كمية التداول + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + خطأ في تحميل اصل البيانات. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Registered assets + الأصول المسجلة + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + البحث عن الأصول + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + مسح + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + الأسم + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + + + Unknown + غير معروف + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + أولوية منخفضة + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + أولوية متوسطه + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + أولوية عاليه + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + + + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + نقطة النهاية + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + الشرح + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + الرسوم + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + ميم بول + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + إرجاع الاعلى في الكتلة الأخيرة. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + إرجاع تجزئة في الكتلة الأخيرة. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + التحويلات + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + إرجاع معاملة كبيانات ثنائية. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + العناوين + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + الأصول + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + إرجاع معلومات حول الأصول المسيله. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Latest blocks + احدث الكتل + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + عرض الكل » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + احدث التحويلات + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + المبلغ + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + رسوم + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + دولار + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + حجم الميم بول + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + غير مؤكده + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + كتله + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + كتل + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + التحويلات القادمه + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + تعديل الصعوبة + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + منسوخ! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains + + + SegWit + سيقويت + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + الأمثل + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + + + Overpaid x + دفع اكثر مما يستحق + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + دفع اكثر مما يستحق + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + Just now + الآن + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + منذ سنه + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + منذ شهر + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + منذ اسبوع + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + منذ يوم + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + منذ ساعه + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + منذ دقيقه + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + منذ دقيقه + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + منذ ثانيه + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + منذ ثانيه + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + منذ سنوات + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + منذ اشهر + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + منذ اسابيع + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + منذ ايام + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + منذ ساعات + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + منذ دقائق + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + منذ دقائق + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + منذ ثوان + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + منذ ثوان + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + المبلغ الحالي + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + الكمية المسكوكة + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + الكمية المحروقه + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + العناوين + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + السعر + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + القيمة السوقية + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + العنوان: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + الكتله : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + منقي + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + تحديد الكل + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + الغاء تحديد الكل + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + تم تأكيد + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.cs.xlf b/frontend/src/locale/messages.cs.xlf index 5400db808..37b593161 100644 --- a/frontend/src/locale/messages.cs.xlf +++ b/frontend/src/locale/messages.cs.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transakce: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakce @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ Vstupy a Výstupy src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Detaily src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Detaily src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Velikost src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Virtuální velikost + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Váha src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -277,38 +319,37 @@ minutes - minut(y) + minut src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - blok + + block + blok src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transakce nebyla nalezena. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ Čekání na to, až se objeví v mempoolu... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Důvěrné + + blocks + bloků - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + Důvěrné + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Blok : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Na základě průměrné transakce nativního segwitu 140 vBytů + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Celkové poplatky @@ -635,7 +730,7 @@ Subsidy + fees: - Nově vytěžené + poplatky: + Vytěžené + poplatky: src/app/components/block/block.component.html 57 @@ -666,7 +761,7 @@ transactions - transakce + transakcí src/app/components/block/block.component.html 85 @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +789,77 @@ block.error.loading-block-data + + Address: + Adresa: + + src/app/components/address/address.component.ts + 64 + + + + Address + Adresa + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Celkem přijato + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Celkem odesláno + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Zůstatek + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + z transakce + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + z transakcí + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Chyba při načítání údajů o adrese. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address TXID, výška bloku, hash nebo adresa @@ -707,6 +869,52 @@ search-form.searchbar-placeholder + + Search + Vyhledávání + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloky + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Bloky + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Výška @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Naplněn - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig z @@ -779,7 +998,7 @@ In - V + Za src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -802,7 +1021,7 @@ minutes - minut(y) + minut src/app/components/mempool-blocks/mempool-blocks.component.html 20 @@ -818,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + O projektu + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + Statistiky + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Rozcestník + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Grafy + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV pohled + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Aktiva + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project O projektu @@ -923,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Přejít na + + Navigate to https://mempool.space/about to sponsor + Přejít na https://mempool.space/about na sponzory src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - na sponzora - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1033,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Převrátit + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transakce vBytů za sekundu (vB/s) @@ -1092,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Další blok + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Zásobník mempool bloků + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempool blok + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Rozsah poplatků @@ -1110,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Aktivum: + + src/app/components/asset/asset.component.ts + 73 + + Name Jméno @@ -1204,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Peg In/Out a spalování transakcí + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Vydávání a spalování transakcí + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Chyba při načítání dat aktiva. @@ -1213,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Registrovaná aktiva + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Vyhledat aktivum + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Vymazat + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Jméno + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Vydavatelská doména + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ID aktiva + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Vydavatelské TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Chyba při načítání dat aktiv. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Identifikováno podle výplatní adresy: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identifikováno štítkem coinbase: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Neznámo @@ -1261,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Poslední bloky + + API Service + API Služba - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - Počet TX - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Zobrazit všechny » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Poslední transakce - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Množství - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Poplatek - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Velikost Mempoolu - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Nepotvrzeno - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - blok - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Příchozí transakce - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Úprava obtížnosti - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1559,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Bloky - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Vrátí stav potvrzení bloku. Dostupná pole:in_best_chain (boolean, false pro osamocené bloky), next_best (hash dalšího bloku, k dispozici pouze pro bloky v nejlepším řetězci). @@ -1881,287 +2216,186 @@ 272 - - Address - Adresa + + Latest blocks + Poslední bloky - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Celkem přijato + + TXs + Počet TX - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Celkem odesláno - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Zůstatek - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - z - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Chyba při načítání údajů o adrese. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - Právě teď - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - před s. - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - před s. - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - před sekundou - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - před sekundami - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - před min. - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - před min. - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - před minutou - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - před minutami - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - před hodinou - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - před hodinami - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - před dnem - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - před dny - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - před týdnem - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - před týdny - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - před měsícem - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - před měsíci - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - před rokem - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - před roky - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Zobrazit všechny » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Poslední transakce + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Množství + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Poplatek + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Rozšířit + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Zavřít + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Velikost Mempoolu + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Nepotvrzeno + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blok + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + bloků + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Příchozí transakce + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Úprava obtížnosti + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Zkopírováno! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Tato transakce ušetřila % na poplatcích pomocí nativního SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2181,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Tato transakce ušetřila % na poplatcích pomocí SegWit a mohla by ušetřit o % více úplným upgradem na nativní SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Tato transakce by mohla ušetřit % na poplatcích upgradem na nativní SegWit-Bech32 nebo % upgradem na SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Tato transakce podporuje funkci Replace-By-Fee (RBF), která umožňuje navýšení poplatků + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2201,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Jen ~ sat/vB bylo potřeba pro dostání se do tohoto bloku + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Přeplaceno x @@ -2221,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Právě teď + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + před rokem + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + před měsícem + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + před týdnem + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + před dnem + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + před hodinou + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + před min. + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + před minutou + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + před s. + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + před sekundou + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + před roky + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + před měsíci + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + před týdny + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + před dny + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + před hodinami + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + před min. + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + před minutami + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + před s. + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + před sekundami + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ statistiky + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Stávající částka + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Vydané množství + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Spálené množství + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Adresy + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Neutracené TXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Utracené TXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Cena + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Tržní kapitalizace + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Adresa: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Blok : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + FIltr + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Vybrat vše + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Odznačit vše + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Potvrzeno + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.de.xlf b/frontend/src/locale/messages.de.xlf index dcbdd0b7f..f1e110ab1 100644 --- a/frontend/src/locale/messages.de.xlf +++ b/frontend/src/locale/messages.de.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transaktion: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaktion @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -52,10 +84,10 @@ Inputs & Outputs - Inputs & Outputs + Inputs und Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Größe src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Virtuelle Größe + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Gewicht src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - Block + + block + Block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transaktion nicht gefunden. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ Warten bis sie im Mempool erscheint... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Vertraulich + + blocks + Blöcke - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + Vertraulich + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Basierend auf einer durchschnittlichen nativen Segwit-Transaktion von 140 vByte + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Gesamtgebühren @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +789,77 @@ block.error.loading-block-data + + Address: + Adresse: + + src/app/components/address/address.component.ts + 64 + + + + Address + Adresse + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Insgesamt empfangen + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Insgesamt gesendet + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Guthaben + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + Transaktion von + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + von Transaktionen + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Fehler beim Laden der Adressdaten. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address TXID, Blockhöhe, Hash oder Adresse @@ -707,6 +869,52 @@ search-form.searchbar-placeholder + + Search + Suche + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blöcke + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Blöcke + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Höhe @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Gefüllt - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of Multisig von @@ -818,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Über + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + Statistiken + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Grafiken + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV-Ansicht + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Vermögenswerte + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Über das Projekt @@ -923,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Gehe zu + + Navigate to https://mempool.space/about to sponsor + Um zu sponsern, Navigieren Sie zu https://mempool.space/about src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - um zu sponsern - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1033,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Umkehren + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaktion vBytes pro Sekunde (vB / s) @@ -1092,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Nächster Block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Stapel von -Mempoolblöcken + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempool-Block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Gebührenspanne @@ -1110,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Vermögenswert: + + src/app/components/asset/asset.component.ts + 73 + + Name Name @@ -1122,7 +1456,7 @@ Precision - Präzision + Nachkommastellen src/app/components/asset/asset.component.html 24 @@ -1182,7 +1516,7 @@ Issued amount - Ausgegebener Betrag + Ausgegebene Menge src/app/components/asset/asset.component.html 51 @@ -1204,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Peg In/Out- und Burn-Transaktionen + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Ausgabe und Verbrennung von Transaktionen + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Fehler beim Laden der Asset-Daten. @@ -1213,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Registrierte Vermögenswerte + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Asset suchen + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Löschen + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Ausstellerdomäne + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + Vermögenswert ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Ausgabe TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Fehler beim Laden der Daten der Vermögenswerte. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Identifiziert durch die Auszahlungsadresse: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identifiziert durch den Coinbase-Tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Unbekannt @@ -1261,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Neueste Blöcke + + API Service + API-Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TX - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Alles anzeigen » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Neueste Transaktionen - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Menge - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Gebühr - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempool Größe - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Unbestätigt - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - Block - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Eingehende Transaktionen - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Schwierigkeitsanpassung - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1559,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Blöcke - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Gibt den Bestätigungsstatus eines Blocks zurück. Verfügbare Felder: in_best_chain (boolean, false für orphaned Blöcke), next_best (der Hash des nächsten Blocks, nur für Blöcke in der best chain verfügbar). @@ -1881,287 +2216,186 @@ 272 - - Address - Adresse + + Latest blocks + Neueste Blöcke - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Insgesamt empfangen + + TXs + TX - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Insgesamt gesendet - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Guthaben - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - von - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Fehler beim Laden der Adressdaten. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - Grade eben - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - vor einer Sek. - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - vor Sek. - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - vor einer Sekunde - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - vor Sekunden - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - vor einer min. - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - vor Min. - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - vor einer Minute - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - vor Minuten - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - vor einer Stunde - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - vor Stunden - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - vor einem Tag - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - vor Tagen - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - vor einer Woche - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - vor Wochen - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - vor einem Monat - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - vor Monaten - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - vor einem Jahr - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - vor Jahren - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Alles anzeigen » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Neueste Transaktionen + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Menge + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Gebühr + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Erweitern + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Reduzieren + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempool Größe + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Unbestätigt + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + Block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + Blöcke + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Eingehende Transaktionen + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Schwierigkeitsanpassung + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Kopiert! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Diese Transaktion konnte durch natives SegWit-Bech32 % an Gebühren einsparen + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2181,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Diese Transaktion könnte mit SegWit % an Gebühren einsparen, und könnte mit einem vollständiges Upgrade auf natives SegWit-Bech32 % zusätzlich einsparen + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Diese Transaktion könne durch ein Upgrade auf natives SegWit-Bech32 % an Gebühren eingesparen, durch ein Upgrade auf SegWit-P2SH % + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Diese Transaktion unterstützt Replace-By-Fee (RBF) und ermöglicht damit Gebührenerhöhungen + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2201,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Nur ~ sat/vB wurden benötigt, um in diesen Block zu gelangen + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Überbezahlt x @@ -2221,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Gerade eben + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + vor einem Jahr + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + vor einem Monat + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + vor einer Woche + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + vor einem Tag + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + vor einer Stunde + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + vor einer Min. + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + vor einer Minute + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + vor einer Sek. + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + vor Sekunden + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + vor Jahren + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + vor Monaten + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + vor Wochen + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + vor Tagen + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + vor Stunden + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + vor Min. + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + vor Minuten + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + vor Sek. + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + vor Sekunden + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ-Statistiken + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Bestehender Menge + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Geprägte Menge + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Verbrannte Menge + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Adressen + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Preis + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Marktkapitalisierung + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Adresse: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Auswahl + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Alles Auswählen + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Auswahl aufheben + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Bestätigt + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.en_US.xlf b/frontend/src/locale/messages.en_US.xlf index 0396140a1..1cbce9ef3 100644 --- a/frontend/src/locale/messages.en_US.xlf +++ b/frontend/src/locale/messages.en_US.xlf @@ -1,12 +1,27 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -24,6 +39,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -33,6 +56,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -49,7 +80,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -58,7 +89,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -67,7 +98,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -75,16 +106,25 @@ Size src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -106,7 +146,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -119,7 +159,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -132,7 +172,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -212,7 +252,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -230,7 +270,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -261,29 +301,28 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block + + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -291,29 +330,17 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential + + blocks - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -441,6 +468,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -488,6 +519,33 @@ transactions-list.unconfirmed + + Confidential + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -530,6 +588,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -564,6 +630,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees @@ -624,10 +714,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -638,6 +724,69 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address @@ -646,6 +795,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -656,6 +848,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -676,24 +876,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of @@ -747,6 +951,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline @@ -771,6 +999,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -840,32 +1120,24 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -939,6 +1211,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -992,6 +1272,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1008,6 +1309,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1093,6 +1401,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1101,6 +1425,112 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown @@ -1145,124 +1575,13 @@ fees-box.high-priority - - Latest blocks + + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1418,15 +1737,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1701,262 +2011,167 @@ 272 - - Address + + Latest blocks - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received + + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -1975,6 +2190,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -1993,6 +2232,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2011,6 +2262,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.es.xlf b/frontend/src/locale/messages.es.xlf index 543c1b3ec..74020c2c3 100644 --- a/frontend/src/locale/messages.es.xlf +++ b/frontend/src/locale/messages.es.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transacción: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transacción @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ Entradas y salidas src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Detalles src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Detalles src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Tamaño src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Tamaño virtual + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Peso src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - bloque + + block + bloque src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transacción no encontrada src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ Esperando a que aparezca en la mempool... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Confidencial + + blocks + bloques - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + Confidencial + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Bloque : + + src/app/components/block/block.component.ts + 98 + + Genesis Génesis @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Basado en el promedio de 140 vBytes de las transacciones segwit nativas + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Total de tasas @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +789,77 @@ block.error.loading-block-data + + Address: + Dirección: + + src/app/components/address/address.component.ts + 64 + + + + Address + Dirección + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total recibido + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total enviado + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Saldo + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + Transacción of + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + Transacción de + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Errar cargando datos de dirección + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address TXID, altura de bloque, hash o dirección @@ -707,6 +869,52 @@ search-form.searchbar-placeholder + + Search + Buscar + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloques + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Bloques + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Altura @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Completado - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig de @@ -818,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Sobre nosotros + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Sin conexión @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + Estadísticas + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Gráficos + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + Vista de TV + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Activos + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Sobre el proyecto @@ -923,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Navegar a + + Navigate to https://mempool.space/about to sponsor + Vaya a https://mempool.space/about para patrocinarnos src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - Al patrocinador - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1033,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Invertir + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) vBytes de transacciones por segundo (vB/s) @@ -1092,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Siguiente bloque + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Grupo de bloques mempool + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Bloque mempool + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Rango de tasas @@ -1110,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Activo: + + src/app/components/asset/asset.component.ts + 73 + + Name Nombre @@ -1204,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Transacciones Peg In/Out y Burn + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Transacciones de emisión y quema + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Error cargando datos del activo @@ -1213,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Activos registrados + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Buscar activos + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Borrar + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Nombre + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Dominio del emisor + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ID del activo + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Emisión TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Error al cargar los datos de los activos. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Identificado por la dirección de pago: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identificado por la etiqueta de la coinbase: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Desconocido @@ -1261,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Últimos bloques + + API Service + Servicio de la API - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Ver todos » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Últimas transacciones - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Cantidad - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Tasa - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Tamaño de la mempool - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Sin confirmar - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - bloque - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Transacciones entrantes - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Ajuste de dificultad - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1559,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Bloques - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Retorna el estado de confirmación de un bloque. Campos disponibles: in_best_chain (boolean, falso para bloques huérfanos), next_best (el hash del próximo bloque, sólo disponible para bloques en la mejor cadena o "best chain"). @@ -1643,7 +1978,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. - Muestra información sobre un bloque. Campos disponibles: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, y previousblockhash. + Muestra información acerca de un bloque. Campos disponibles: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, y previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1661,7 +1996,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. - Muestra información sobre una transacción. Campos disponibles: txid, version, locktime, size, weight, fee, vin, vout, y status. + Muestra información acerca de una transacción. Campos disponibles: txid, version, locktime, size, weight, fee, vin, vout, y status. src/app/components/api-docs/api-docs.component.html 139 @@ -1743,7 +2078,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. - Returna detalles acerca de una dirección. Campos disponibles: address, chain_stats, y mempool_stats. Cada uno de los campos chain,mempool_stats contiene un objeto con tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, y spent_txo_sum. + Muestra detalles acerca de una dirección. Campos disponibles: address, chain_stats, y mempool_stats. Cada uno de los campos chain,mempool_stats contiene un objeto con tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, y spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -1793,7 +2128,7 @@ Returns information about a Liquid asset. - Muestra información sobre activos de Liquid. + Muestra información acerca de activos de Liquid. src/app/components/api-docs/api-docs.component.html 223 @@ -1881,287 +2216,186 @@ 272 - - Address - Dirección + + Latest blocks + Últimos bloques - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Total recibido + + TXs + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Total enviado - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Saldo - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - de - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Errar cargando datos de dirección - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - Ahora mismo - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - Hace segundo - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - Hace segundos - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - Hace segundo - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - Hace segundos - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - Hace minuto - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - Hace minutos - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - Hace minuto - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - Hace minutos - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - Hace hora - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - Hace horas - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - Hace día - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - Hace día - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - Hace semana - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - Hace semanas - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - Hace mes - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - Hace meses - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - Hace año - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - Hace años - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Ver todos » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Últimas transacciones + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Cantidad + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Tasa + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Expandir + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Colapsar + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Tamaño de la mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Sin confirmar + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + bloque + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + bloques + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Transacciones entrantes + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Ajuste de dificultad + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Copiado! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Esta transacción ahorró un % en tarifas al usar SegWit-Bech32 nativo + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2181,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Esta transacción ahorró un % en tasas al usar SegWit y podría ahorrar un % más actualizando a SegWit-Bech32 nativo + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Esta transacción podría ahorrar un % en tasas actualizando a SegWit-Bech32 nativo o un % actualizando a SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Esta transacción admite Replace-By-Fee (RBF) que permite el aumento de tarifas + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2201,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Solo se necesitaba ~ sat/vB para entrar en este bloque + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Pagado por demás x @@ -2221,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Justo ahora + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + Hace año + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + Hace mes + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + Hace semana + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + Hace día + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + Hace hora + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + Hace min. + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + Hace minuto + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + Hace seg. + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + Hace segundo + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + Hace año + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + Hace meses + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + Hace semanas + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + Hace días + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + Hace horas + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + Hace min. + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + Hace minutos + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + Hace seg. + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + Hace segundos + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + Estadísticas de BSQ + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Cantidad existente + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Cantidad acuñada + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Cantidad quemada + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Direcciones + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + TXO no gastadas + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + TXO gastadas + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Precio + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Capitalización de mercado + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Dirección: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Bloque : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Filtrar + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Seleccionar todas + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Deseleccionar todas + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Confirmadas + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fa.xlf b/frontend/src/locale/messages.fa.xlf index 00733aba4..747963f16 100644 --- a/frontend/src/locale/messages.fa.xlf +++ b/frontend/src/locale/messages.fa.xlf @@ -1,6 +1,18 @@ + + Transaction: + تراکنش: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction تراکنش @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -22,11 +38,19 @@ confirmation - تایید + تأیید src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ ورودی‌ها و خروجی‌ها src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ جزئیات src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ جزئیات src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ اندازه src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + اندازه مجازی + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight وزن src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,21 +174,21 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte sat/vB - sat/vB + ‏sat بر vB‏ src/app/components/transaction/transaction.component.html 81 src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ ساتوشی src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - بلاک + + block + بلاک src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. تراکنش پیدا نشد. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ منتظر دیده‌شدن در mempool... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - محرمانه + + blocks + بلاک - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + محرمانه + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + بلاک : + + src/app/components/block/block.component.ts + 98 + + Genesis پیدایش @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + بر اساس میانگین تراکنش سگویتی اصیل با اندازه 140 ساتوشی بر بایت مجازی + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees محموع کارمزدها @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,14 +789,132 @@ block.error.loading-block-data + + Address: + آدرس: + + src/app/components/address/address.component.ts + 64 + + + + Address + آدرس + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + مجموع دریافت‌ها + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + مجموع ارسال‌ها + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + موجودی + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + از تراکنش + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + از تراکنش + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + حطا در بازکردن داده‌های آدرس. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address + شناسه تراکنش، آدرس، طول یا چکیده بلاک src/app/components/search-form/search-form.component.html 4 search-form.searchbar-placeholder + + Search + جستجو + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + بلاک‌ها + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + بلاک‌ها + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height طول @@ -717,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -739,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - پُرشده - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of چندامضایی از @@ -817,6 +1037,32 @@ shared.blocks + + API + رابط برنامه‌نویسی نرم‌افزار (API) + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + درباره + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline خاموش @@ -837,12 +1083,70 @@ Layer 2 Networks + شبکه‌های لایه 2 src/app/components/master-page/master-page.component.html 19 master-page.layer2-networks-header + + Stats + آمار + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + داشبورد + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + گراف‌ها + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + نمایش تلویزیونی + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + دارایی‌ها + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project درباره پروژه @@ -921,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - برای حمایت به + + Navigate to https://mempool.space/about to sponsor + برای حامی شدن به اینجا برو https://mempool.space/about src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - برو - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1024,13 +1319,22 @@ Mempool by vBytes (sat/vByte) - وضعیت ممپول به vByte (ساتوشی به vByte) + وضعیت ممپول به vByte (ساتوشی بر vByte) src/app/components/statistics/statistics.component.html 16 statistics.memory-by-vBytes + + Invert + معکوس + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) تراکنش vByte بر ثانیه (vB بر ثانیه) @@ -1090,6 +1394,30 @@ shared.vbytes-per-second + + Next block + بلاک بعدی + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + مجموعه بلاک ممپول + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + بلاک ممپول + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span بازه‌ی کارمزد @@ -1108,6 +1436,14 @@ mempool-block.total-fees + + Asset: + دارایی: + + src/app/components/asset/asset.component.ts + 73 + + Name نام @@ -1202,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + تراکنش‌های سوزاندن و PegIn/Out + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + تراکنش‌های صدور و سوزاندن + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. خطا در بازکردن داده‌های دارایی. @@ -1211,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + دارایی‌های ثبت‌شده + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + جستجوی دارایی + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + پاک‌کردن + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + نام + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + دامنه صادرکننده + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + شناسه دارایی + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + تراکنش صادرکننده + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + خطا در بارکردن داده‌های دارایی‌ها. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + شناسایی شده با آدرس پرداخت: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + شناسایی شده با برچسب coinbase تراکنش: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown ناشناخته @@ -1259,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - آخرین بلاک‌ها + + API Service + خدمات API - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - تراکنش‌ها - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - نمایش همه » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - آخرین تراکنش‌ها - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - شناسه - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - مبلغ - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - کارمزد - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - اندازه ممپول - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - تأیید نشده - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - بلاک - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - تراکنش‌های منتشرشده - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - تنظیم سختی بلاک‌ها - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1557,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - بلاک‌ها - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). وضعیت تایید یک بلاک را برمی‌گرداند. فیلدهای در دسترس: in_best_chain(از نوع boolean و مقدارش برای بلاک‌های یتیم false است)، next_best(چکیده بلاک بعدی، فقط برای بلاک‌های بهترین زنجیره در دسترس است). @@ -1641,6 +1978,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + جزئیات بلاک را برمی‌گرداند. فیلدهای در دسترس: id,height, version,timestamp,bits,nonce,merkle_root,tx_count,size,weight,proof, و previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1698,6 +2036,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + وضعیت خرج‌شدن یک تراکنش را برمی‌گرداند. فیلدهای در دسترس: spent(boolean), txid (optional), vin (optional), و status(optional وضعیت تراکنش خرج شونده). src/app/components/api-docs/api-docs.component.html 163 @@ -1739,6 +2078,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + جزئیاتی درباره آدرس برمی‌گرداند. فیلدهای در دسترس: address, chain_stats, و mempool_stats, chain,mempool_stats که هر کدام شامل یک شیء دارای tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, و spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -1746,6 +2086,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + تاریخچه تراکنش مربوط یه یک آدرس/چکیده‌اسکریپت برمی‌گرداند که از جدید به قدیم مرتب شده‌اند. تا 50 تراکنش از ممپول به اضافه 25 تراکنش تایید شده. می‌توانید درخواست تراکنش تایید شده بیشتر را با استفاده از :last_seen_txidانجام دهید (پایین را ببینید). src/app/components/api-docs/api-docs.component.html 193,194 @@ -1769,6 +2110,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + دریافت لیست خروجی تراکنش‌های مرتبط با آدرس/چکیده‌اسکریپت. فیلدهای در دسترس: txid, vout, value, و status (به همراه وضعیت تراکنش پرداخت‌کننده). همچنین یک فیلد valuecommitmentوجود دارد که ممکن است به جای value قرار بگیرد، به اضافه این فیلدها: asset/assetcommitment, nonce/noncecommitment, surjection_proof, و range_proof. src/app/components/api-docs/api-docs.component.html 205 @@ -1794,6 +2136,7 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + تراکنش‌های مرتبط با دارایی Liquid مشخص شده را برمی‌گرداند. برای دارایی‌های اصیل شبکه، لیستی از peg-in ها، peg-outها و تراکنش‌های سوزاندن برمی‌گرداند. برای دارایی‌هایی که کاربر آن را صادر کرده است، لیستی از صدورها، باز صدورها و تراکنش‌های سوزاندن برمی‌گرداند. شامل تراکنش‌های معمولی برای انتقال این دارایی نمی‌شود. src/app/components/api-docs/api-docs.component.html 227 @@ -1801,6 +2144,11 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + مقدار کل دارایی مشخص شده را برمی‌گرداند. برای دارایی‌های اصیل (L-BTC)، به این صورت محاسبه می‌شود +[chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount +برای دارایی‌های صادر شده محاسبه آن این صورت است + [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. +برای دارایی‌های صدور کور داشته‌اند در دسترس نیست. اگر /decimal مشخص بشود، مقدار کل را به صورت decimal با توجه به تقسیم‌پذیری دارایی برمی‌گرداند. در غیر این صورت با واحدهای پایه برمی‌گرداند. src/app/components/api-docs/api-docs.component.html 231 @@ -1872,287 +2220,186 @@ 272 - - Address - آدرس + + Latest blocks + آخرین بلاک‌ها - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - مجموع دریافت‌ها + + TXs + تراکنش - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - مجموع ارسال‌ها - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - موجودی - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - از - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - حطا در بازکردن داده‌های آدرس. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - همین الان - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - ثانیه پیش - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - دقیقه پیش - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - ساعت پیش - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - ساعت پیش - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - روز پیش - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - روز پیش - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - هفته پیش - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - هفته پیش - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - ماه پیش - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - ماه پیش - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - سال پیش - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - سال پیش - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + نمایش همه » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + آخرین تراکنش‌ها + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + شناسه + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + مبلغ + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + کارمزد + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + بستن + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + بازکردن + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + اندازه ممپول + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + تأیید نشده + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + بلاک + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + بلاک + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + تراکنش‌های منتشرشده + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + تنظیم سختی بلاک‌ها + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + کپی شد! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + این تراکنش با استفاده کردن از SegWit-Bech32 حدودا درصد در کارمزد صرفه‌جویی کرده است + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2172,6 +2419,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + این تراکنش با استفاده کردن از SegWit حدودا درصد در کارمزد صرفه‌جویی کرده‌است. در صورت استفاده از SegWit-Bech32 این صرفه‌جویی تا درصد بیشتر افزایش پیدا می‌کرد! + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + این تراکنش در صورت استفاده کردن از SegWit-P2SH تا درصد یا SegWit-Bech32 تا درصد کارمزد کمتری پرداخت می‌کرد! + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + این تراکنش از امکان جایگزینی با کارمزد (RBF) پشتیبانی می‌کند و اجازه افزایش کارمزد را می‌دهد. + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2192,6 +2466,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + تنها به حدود ساتوشی بر بایت مجازی نیاز بود تا در این بلاک قرار بگیرد + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x برابر اضافه پرداخت! @@ -2212,6 +2499,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + همین الان + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + سال پیش + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + ماه پیش + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + هفته پیش + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + روز پیش + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + ساعت پیش + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + دقیقه پیش + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + دقیقه پیش + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + ثانیه پیش + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + ثانیه پیش + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + سال پیش + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + ماه پیش + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + هفته پیش + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + روز پیش + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + ساعت پیش + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + دقیقه پیش + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + دقیقه پیش + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + ثانیه پیش + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + ثانیه پیش + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + آمارهای BSQ + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + مقدار موجود + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + مقدار استخراج‌شده + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + مقدار سوزانده‌شده + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + آدرس‌ها + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + خروجی تراکنش‌های خرج‌نشده + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + خروجی تراکنش‌های خرج‌شده + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + قیمت + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + حجم بازار + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + آدرس: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + بلاک : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + پالایش + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + انتخاب همه + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + لغو انتخاب همه + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + تأیید شده + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fi_FI.xlf b/frontend/src/locale/messages.fi_FI.xlf new file mode 100644 index 000000000..9a8a1f7d4 --- /dev/null +++ b/frontend/src/locale/messages.fi_FI.xlf @@ -0,0 +1,2604 @@ + + + + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + Siirtotapahtuma + + src/app/components/transaction/transaction.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + + shared.transaction + + + This transaction has been replaced by: + Tämä siirtotapahtuma on korvattu seuraavalla: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + vahvistus + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + vahvistukset + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Vahvistamaton + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Syötteet ja Ulostulot + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Tarkemmat tiedot + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + Tarkemmat tiedot + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + Koko + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Paino + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + Aikaleima + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Siirtokulu + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + Siirtokulu vByte: ä kohti + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 153 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Sisältyy lohkoon + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Vahvistettu + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Jälkeen + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Ominaisuudet + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 136 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Ensimmäinen nähty + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Muutamassa tunnissa (tai enemmän) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minuutit + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction Minutes + transaction.minutes + + + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + shared.block + + + Transaction not found. + Siirtotapahtumaa ei löydy. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Odotetaan sen ilmestymistä mempooliin... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + + + Coinbase + Kolikkopohja + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Hiljattain Luodut Kolikot) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Kiinnitä + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nJärjestys + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Todistaja + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH lunastusskripti + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH todistajaskripti + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Edellinen ulostuloskripti + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Lataa kaikki + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Irrota + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Tyyppi + + src/app/components/transactions-list/transactions-list.component.html + 164 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + vahvistus + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + vahvistukset + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Vahvistamaton + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + Luottamuksellinen + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 112 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + + + Genesis + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Lohko + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Tiiviste + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Aikaleima + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Koko + + src/app/components/block/block.component.html + 31 + + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Paino + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Louhija + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Mediaani siirtokulu + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + + + Total fees + Siirtokulut yhteensä + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Tukipalkkio + siirtokulut: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + siirtokulu + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + siirtokulut + + src/app/components/block/block.component.html + 85 + + + src/app/components/address/address.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + shared.transaction-count.plural + + + Error loading block data. + Virhe lohkotietoja ladattaessa. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of + + src/app/components/address/address.component.html + 46 + + shared.of + + + Error loading address data. + + src/app/components/address/address.component.html + 101 + + address.error.loading-address-data + + + TXID, block height, hash or address + Siirtotunniste (TXID), lohkon järjestysnumero, tiiviste tai osoite + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Lohkot + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + + + Height + Järjestysnumero + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + + latest-blocks.height + + + Mined + Louhittu + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Siirtotapahtumat + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/master-page/master-page.component.html + 29 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + + latest-blocks.transactions + + + multisig of + multisig tai + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Kerros Irrota + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Sisään + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minuutti + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minuutit + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + lohkot + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + Offline + Pois verkosta + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Muodostaa yhteyden uudelleen... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + 2 kerroksen verkoissa + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + + + About the project + Tietoja projektista + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Mempool avoimen lähdekoodin projektin tavoitteena on toteuttaa korkealaatuinen tutkimus- ja visualisointisivusto koko Bitcoin-ekosysteemille ilman häiriötekijöitä, kuten altcoineja, mainontaa tai kolmannen osapuolen seurantalaitteita. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Ylläpitäjät + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Kehitys + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Toiminnot + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsorit ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Ryhdy sponsoriksi ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Pyydä lasku + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Käyttöehdot + + src/app/components/about/about.component.html + 206 + + + src/app/dashboard/dashboard.component.html + 143 + + + src/app/components/api-docs/api-docs.component.html + 284 + + Terms of Service + shared.terms-of-service + + + Navigate to + Navigoi + + src/app/components/about/about.component.html + 65 + + about.navigate-to + + + to sponsor + sponsorointi + + src/app/components/about/about.component.html + 65 + + about.to-sponsor + + + Amount required + Vaadittu määrä + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Vähimmäismäärä on 0,001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Jos lahjoitat 0,01 BTC tai enemmän, profiilikuvasi lisätään yllä olevaan sponsoriluetteloon :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Odotetaan siirtotapahtumaa... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Lahjoitus vahvistettu! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Kiitos! + + src/app/components/about/about.component.html + 175 + + 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... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + Transaction vBytes per second (vB/s) + Siirtotapahtuma vBytes sekunnissa (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Odotetaan lohkoja... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Siirtotapahtuma vBytes sekunnissa: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempoolin koko: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backendiä synkronoidaan + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + Fee span + Siirtokuluväli + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Siirtokulut yhteensä + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + + + Name + Nimi + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Tarkkuus + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Palanut määrä + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Liikkeeseenlaskija + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Liikkeeseenlasku siirtotapahtuma + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Kiinnitetty + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Irrotettu + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Liikkeeseenlaskettu määrä + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Kierrossa oleva määrä + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + Omaisuustietojen lataamisessa tapahtui virhe. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Unknown + Tuntematon + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Matala tärkeys + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Keskitasoinen prioriteetti + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Korkea prioriteetti + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + Latest blocks + Viimeisimmät lohkot + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + Siirtotapahtumat + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Näytä kaikki » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Viimeisimmät siirtotapahtumat + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + Siirtotunniste + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Määrä + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Siirtokulu + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Collapse + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.collapse + + + Expand + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.expand + + + Mempool size + Mempoolin koko + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Vahvistamaton + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Saapuvat siirtotapahtumat + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Vaikeudensäätö + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Päätepiste + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Kuvaus + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Oletuspainike: toiminto: 'want', data: ['blocks', ...] ilmaisemaan mitä haluat painettavan. Saatavana: lohkot, mempool-lohko, live-2h-kaavio ja tilastot. Paina osoitteeseen liittyviä siirtotapahtumia: 'track-address': '3PbJ ... bF9B' saadaksesi kaikki uudet siirtotapahtumat, jotka sisältävät kyseisen osoitteen syötteenä tai ulostulona. Palauttaa joukon siirtotapahtumia. osoite-siirtotapahtumat uusille mempool-siirtotapahtumille ja lohko-siirtotapahtumat uusille lohkovahvistetuille siirtotapahtumille. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Siirtokulut + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Palauttaa tällä hetkellä ehdotetut siirtokulut uusista siirtotapahtumista. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Palauttaa nykyisen mempoolin ennustettuina lohkoina. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Palauttaa nykyisen mempool-backlogin tilastot. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Hanki täysi luettelo siirtotunnisteista mempoolissa taulukkona. Siirtotunnisteiden järjestys on mielivaltainen eikä vastaa bitcoind:tä. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Hanki luettelo 10 viimeisestä siirtotapahtumasta, jotta pääset mempooliin. Jokainen siirtotapahtumaobjekti sisältää yksinkertaistettua yleistietoa seuraavilla kentillä: siirtotunniste, siirtokulu, vkoko ja arvo. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Palauttaa lohkon vahvistustilan. Käytettävissä olevat kentät: in_best_chain (totuusarvo, väärä orvoille lohkoille), next_best (seuraavan lohkon tiiviste, käytettävissä vain parhaan ketjun lohkoille). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Palauttaa lohkon siirtotapahtumaluettelon (enintään 25 siirtotapahtumaa alkaen start_index). Täällä palautetuilla siirtotapahtumilla ei ole tila-kenttää, koska kaikilla siirtotapahtumilla on sama lohko ja vahvistustila. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Palauttaa luettelon kaikista lohkossa olevista siirtotunnisteista (txid). + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Palauttaa siirtotapahtuman indeksissä: indeksi määritetyn lohkon sisällä. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Palauttaa raakalohkon esityksen binäärisenä. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Palauttaa lohkon tiivisteen järjestysnumerolla. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Palauttaa 10 uusinta lohkoa alkaen kärjestä tai osoitteesta: start_height, jos määritetty. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Palauttaa viimeisen lohkon järjestysnumeron. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Palauttaa viimeisen lohkon tiivisteen. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Palauttaa lohkon tiedot. Käytettävissä olevat kentät: tunnus, järjestysnumero, versio, aikaleima, bitit, nonssi, merkle-juuri, siirtotapahtumien määrä, koko, paino, todiste ja edellinen lohkotiiviste. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Siirtotapahtumat + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Palauttaa siirtotapahtuman tiedot. Saatavilla olevat kentät: siirtotunniste, versio, lukitusaika, koko, paino, siirtokulu, vin, vout ja tila. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Palauttaa siirtotapahtuman vahvistustilan. Käytettävissä olevat kentät: vahvistettu (totuusarvo), lohkon_järjestysnumero (valinnainen) ja lohkon_tiiviste (valinnainen). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Palauttaa siirtotapahtuman, joka on sarjoitettu heksalla. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Palauttaa siirtotapahtuman binääritietona. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Palauttaa merkle-todistuksen siirtotapahtumalle käyttäen Electrumin blockchain.transaction.get_merkle -muotoa. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Palauttaa siirtotapahtuma ulostulon kulutustilan. Käytettävissä olevat kentät: käytetty (totuusarvo), siirtotunniste (valinnainen), vin (valinnainen) ja tila (valinnainen, kulutetun siirtotapahtuman tila). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Palauttaa kaikkien siirtotapahtumien ulostulon kulutustilan. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Lähetä raaka siirtotapahtuma verkkoon. Siirtotapahtuma tulee ilmoittaa heksoina pyynnön rungossa. Siirtotunniste (txid) palautetaan onnistumisen yhteydessä. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Palauttaa merkle-todisteen siirtotapahtumalle käyttäen bitcoind:n merkleblock-muotoa. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Osoitteet + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Palauttaa osoitteen tiedot. Saatavilla olevat kentät: osoite, ketjun tilat ja mempoolin tilat. ketju, mempoolin tilat sisältäen kukin objektin, jossa on siirtotapahtumien määrä, rahoitettujen siirtotapahtumaobjektien määrä, rahoitettujen siirtotapahtumien summa, käytettyjen siirtotapahtumien määrä ja käytettyjen siirtotapahtumaobjektien summa. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.fr.xlf b/frontend/src/locale/messages.fr.xlf index cd3d5cf18..810ace42c 100644 --- a/frontend/src/locale/messages.fr.xlf +++ b/frontend/src/locale/messages.fr.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaction @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +86,7 @@ Entrées & Sorties src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +96,7 @@ Détails src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +106,7 @@ Détails src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,23 +115,33 @@ Taille src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Poids src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight Timestamp + Horodatage src/app/components/transaction/transaction.component.html 42 @@ -117,7 +158,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -131,7 +172,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -145,7 +186,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -229,7 +270,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -249,7 +290,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -283,31 +324,29 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - bloc + + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transaction introuvable. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -316,30 +355,17 @@ Veuillez patienter pendant que nous attendons qu'elle apparaisse dans le mempool src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Confidentiel + + blocks - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -361,6 +387,7 @@ Peg-in + Peg-in src/app/components/transactions-list/transactions-list.component.html 41 @@ -369,6 +396,7 @@ nSequence + nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -377,6 +405,7 @@ ScriptSig (ASM) + ScriptSig (ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -386,6 +415,7 @@ ScriptSig (HEX) + ScriptSig (HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -404,6 +434,7 @@ P2SH redeem script + Script de rachat P2SH src/app/components/transactions-list/transactions-list.component.html 84 @@ -412,6 +443,7 @@ P2WSH witness script + Script témoin PW2SH src/app/components/transactions-list/transactions-list.component.html 88 @@ -442,6 +474,7 @@ Peg-out to + Peg-out à src/app/components/transactions-list/transactions-list.component.html 125 @@ -450,6 +483,7 @@ ScriptPubKey (ASM) + ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html 168 @@ -459,6 +493,7 @@ ScriptPubKey (HEX) + ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html 172 @@ -473,6 +508,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -525,8 +564,37 @@ transactions-list.unconfirmed + + Confidential + Confidentiel + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis + Genèse src/app/components/block/block.component.html 4 @@ -535,6 +603,7 @@ Block + Bloc src/app/components/block/block.component.html 4 @@ -552,6 +621,7 @@ Timestamp + Horodatage src/app/components/block/block.component.html 22 @@ -569,6 +639,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -606,6 +684,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Frais totaux @@ -622,6 +724,7 @@ Subsidy + fees: + Subvention + frais: src/app/components/block/block.component.html 57 @@ -669,10 +772,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -684,14 +783,126 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + Adresse + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Total reçu + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Total envoyé + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Erreur dans le chargement des données de l'adresse + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address + TXID, hauteur de bloc, hash ou addresse src/app/components/search-form/search-form.component.html 4 search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Hauteur @@ -703,6 +914,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -725,27 +944,31 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Remplis - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of + multisig de src/app/components/address-labels/address-labels.component.html 1 @@ -754,6 +977,7 @@ Layer Peg-out + Couche Peg-out src/app/components/address-labels/address-labels.component.html 2 @@ -801,6 +1025,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Hors-ligne @@ -821,12 +1069,65 @@ Layer 2 Networks + Réseaux de couche 2 src/app/components/master-page/master-page.component.html 19 master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project À propos du projet @@ -838,7 +1139,7 @@ The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. - Le projet open-source mempool vise à implémenter un explorateur de haute qualité pour l'entièreté de l'éco-système Bitcoin, sans distraction comme des altcoins, des publicités, our des traqueurs tiers. + Le projet open-source mempool vise à implémenter un explorateur de haute qualité pour l'entièreté de l'éco-système Bitcoin, sans distraction telles que les altcoins, les publicités, ou les traqueurs tiers. src/app/components/about/about.component.html 16 @@ -846,6 +1147,7 @@ Maintainers + Mainteneurs src/app/components/about/about.component.html 22 @@ -890,6 +1192,7 @@ Request invoice + Demander une facture src/app/components/about/about.component.html 85 @@ -903,33 +1206,24 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Naviguer vers + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1012,6 +1306,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaction vBytes par seconde (vB/s) @@ -1071,8 +1373,30 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span + L'envergure des frais src/app/components/mempool-block/mempool-block.component.html 20 @@ -1088,6 +1412,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Nom @@ -1120,6 +1451,7 @@ Issuer + Émetteur/trice src/app/components/asset/asset.component.html 28 @@ -1129,6 +1461,7 @@ Issuance TX + TX d'émission src/app/components/asset/asset.component.html 32 @@ -1138,6 +1471,7 @@ Pegged in + Pegged in src/app/components/asset/asset.component.html 43 @@ -1147,6 +1481,7 @@ Pegged out + Pegged in src/app/components/asset/asset.component.html 47 @@ -1156,6 +1491,7 @@ Issued amount + Montant émis src/app/components/asset/asset.component.html 51 @@ -1177,6 +1513,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Erreur dans le chargement des données de l'asset @@ -1186,6 +1538,112 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Inconnue @@ -1234,138 +1692,13 @@ fees-box.high-priority - - Latest blocks - Derniers blocs + + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Tout voir >> - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Dernières transactions - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Montant - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Frais - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Taille du mempool - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Non confirmées - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - bloc - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Transactions entrantes - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Ajustement de la difficulté - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1525,15 +1858,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1810,269 +2134,180 @@ 272 - - Address - Adresse + + Latest blocks + Derniers blocs - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Total reçu + + TXs + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Total envoyé - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Balance - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - De - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Erreur dans le chargement des données de l'adresse - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - À l'instant - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Tout voir >> + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Dernières transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Montant + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Frais + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Taille du mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Non confirmées + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Transactions entrantes + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Ajustement de la difficulté + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2092,6 +2327,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2111,6 +2370,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2129,6 +2400,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nn.xlf b/frontend/src/locale/messages.hr.xlf similarity index 77% rename from frontend/src/locale/messages.nn.xlf rename to frontend/src/locale/messages.hr.xlf index 8800500d6..1328d5730 100644 --- a/frontend/src/locale/messages.nn.xlf +++ b/frontend/src/locale/messages.hr.xlf @@ -1,18 +1,33 @@ - + + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction - Transaksjon + Transakcija src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction This transaction has been replaced by: - Denne transaksjonen har blitt byttet ut med: + Ova transakcija je zamijenja od: src/app/components/transaction/transaction.component.html 5 @@ -22,27 +37,43 @@ confirmation - Bekreftelse + potvrda src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular confirmations - Bekreftelser + potvrde src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural Unconfirmed - Ubekreftet + Nepotvrđeno src/app/components/transaction/transaction.component.html 18 @@ -52,56 +83,66 @@ Inputs & Outputs - Inputs og Outputs + Ulazi & Izlazi src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs Details - Detaljer + Detalji src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details Details - Detaljer + Detalji src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details Size - Størrelse + Veličina src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size - - Weight - Vekt + + Virtual size + Virtualna veličina src/app/components/transaction/transaction.component.html - 182 + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Težina + + src/app/components/transaction/transaction.component.html + 185 Transaction Weight transaction.weight Timestamp - Tidspunkt + Vremenski otisak src/app/components/transaction/transaction.component.html 42 @@ -111,28 +152,28 @@ Fee - Avgift + Naknada src/app/components/transaction/transaction.component.html 75 src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee Fee per vByte - Avgift per vByte + Naknada po vByte-u src/app/components/transaction/transaction.component.html 79 src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +187,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -193,7 +234,7 @@ Included in block - Inkludert i blokk + Uključen u bloku src/app/components/transaction/transaction.component.html 51 @@ -203,7 +244,7 @@ Confirmed - Bekreftet + Potvrđena src/app/components/transaction/transaction.component.html 58 @@ -213,7 +254,7 @@ After - Etter + Poslje src/app/components/transaction/transaction.component.html 59 @@ -223,21 +264,19 @@ Features - Funksjoner src/app/components/transaction/transaction.component.html 63 src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features ETA - ETA src/app/components/transaction/transaction.component.html 115 @@ -250,14 +289,14 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat First seen - Først sett + Prvo viđeno src/app/components/transaction/transaction.component.html 109 @@ -267,7 +306,6 @@ In several hours (or more) - Om flere timer(eller mer) src/app/components/transaction/transaction.component.html 122 @@ -277,74 +315,55 @@ minutes - minutter src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - blokker + + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. - Transaksjon ikke funnet src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found Waiting for it to appear in the mempool... - Venter på at den kommer inn i mempool... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Konfidensiell + + blocks - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase - Coinbase src/app/components/transactions-list/transactions-list.component.html 39 @@ -353,7 +372,6 @@ (Newly Generated Coins) - (Nygenererte Mynter) src/app/components/transactions-list/transactions-list.component.html 39 @@ -362,7 +380,6 @@ Peg-in - Peg-in src/app/components/transactions-list/transactions-list.component.html 41 @@ -371,7 +388,6 @@ nSequence - nSequence src/app/components/transactions-list/transactions-list.component.html 92 @@ -380,7 +396,6 @@ ScriptSig (ASM) - ScriptSig(ASM) src/app/components/transactions-list/transactions-list.component.html 71 @@ -390,7 +405,6 @@ ScriptSig (HEX) - ScriptSig(HEX) src/app/components/transactions-list/transactions-list.component.html 75 @@ -400,7 +414,6 @@ Witness - Vitne src/app/components/transactions-list/transactions-list.component.html 80 @@ -409,7 +422,6 @@ P2SH redeem script - P2SH redeem script src/app/components/transactions-list/transactions-list.component.html 84 @@ -418,7 +430,6 @@ P2WSH witness script - P2WSH witness script src/app/components/transactions-list/transactions-list.component.html 88 @@ -427,7 +438,6 @@ Previous output script - Forrige output script src/app/components/transactions-list/transactions-list.component.html 96 @@ -436,7 +446,6 @@ Load all - Last alt src/app/components/transactions-list/transactions-list.component.html 106 @@ -449,7 +458,6 @@ Peg-out to - Peg-out til src/app/components/transactions-list/transactions-list.component.html 125 @@ -458,7 +466,6 @@ ScriptPubKey (ASM) - ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html 168 @@ -468,7 +475,6 @@ ScriptPubKey (HEX) - ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html 172 @@ -478,16 +484,18 @@ Type - Type src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type data - data src/app/components/transactions-list/transactions-list.component.html 176 @@ -496,7 +504,6 @@ sat - sat src/app/components/transactions-list/transactions-list.component.html 196 @@ -506,7 +513,6 @@ confirmation - bekreftelse src/app/components/transactions-list/transactions-list.component.html 201 @@ -515,7 +521,6 @@ confirmations - bekreftelser src/app/components/transactions-list/transactions-list.component.html 201 @@ -524,7 +529,6 @@ Unconfirmed - Ubekreftet src/app/components/transactions-list/transactions-list.component.html 203 @@ -535,9 +539,35 @@ transactions-list.unconfirmed + + Confidential + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis - Genesis src/app/components/block/block.component.html 4 @@ -546,7 +576,6 @@ Block - Blokk src/app/components/block/block.component.html 4 @@ -555,7 +584,6 @@ Hash - Hash src/app/components/block/block.component.html 18 @@ -564,7 +592,6 @@ Timestamp - Tidspunkt src/app/components/block/block.component.html 22 @@ -577,11 +604,18 @@ Size - Størrelse src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -590,7 +624,6 @@ Weight - Vekt src/app/components/block/block.component.html 35 @@ -599,7 +632,6 @@ Miner - Miner src/app/components/block/block.component.html 74 @@ -608,7 +640,6 @@ Median fee - Medianavgift src/app/components/block/block.component.html 45 @@ -619,9 +650,32 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees - Totale avgifter src/app/components/block/block.component.html 50 @@ -635,7 +689,6 @@ Subsidy + fees: - Subsidie + avgifter: src/app/components/block/block.component.html 57 @@ -649,7 +702,6 @@ transaction - transaksjon src/app/components/block/block.component.html 85 @@ -666,7 +718,6 @@ transactions - transaksjoner src/app/components/block/block.component.html 85 @@ -683,21 +734,79 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural Error loading block data. - Lasting av blokk data feilet. src/app/components/block/block.component.html 165 block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address @@ -706,9 +815,51 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height - Høyde src/app/components/latest-blocks/latest-blocks.component.html 9 @@ -717,11 +868,18 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height Mined - Mined src/app/components/latest-blocks/latest-blocks.component.html 11 @@ -734,33 +892,34 @@ Transactions - Transaksjon src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Fyllingsgrad - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of - multisig av src/app/components/address-labels/address-labels.component.html 1 @@ -769,7 +928,6 @@ Layer Peg-out - Lag Peg-out src/app/components/address-labels/address-labels.component.html 2 @@ -778,7 +936,6 @@ In - Inn src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -792,7 +949,6 @@ minute - minutt src/app/components/mempool-blocks/mempool-blocks.component.html 17 @@ -801,7 +957,6 @@ minutes - minutter src/app/components/mempool-blocks/mempool-blocks.component.html 20 @@ -810,16 +965,38 @@ blocks - blokker src/app/components/mempool-blocks/mempool-blocks.component.html 24 shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline - Offline src/app/components/master-page/master-page.component.html 7 @@ -828,7 +1005,6 @@ Reconnecting... - Kobler til igjen... src/app/components/master-page/master-page.component.html 8 @@ -843,9 +1019,60 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project - Om prosjektet src/app/components/about/about.component.html 13 @@ -854,7 +1081,6 @@ The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. - Mempool åpen-kildekode prosjektet prøver å implementere en utforsker og visualiserings webside av høy kvalitet for hele Bitcoin økosystemet, uten distraksjoner som altcoins, reklame eller tredjeparts trackere. src/app/components/about/about.component.html 16 @@ -862,7 +1088,6 @@ Maintainers - Vedlikeholdere src/app/components/about/about.component.html 22 @@ -871,7 +1096,6 @@ Development - Utviklere src/app/components/about/about.component.html 32 @@ -880,7 +1104,6 @@ Operations - Operasjoner src/app/components/about/about.component.html 40 @@ -889,7 +1112,6 @@ Sponsors ❤️ - Sponsorer ❤️ src/app/components/about/about.component.html 47 @@ -898,7 +1120,6 @@ Become a sponsor ❤️ - Bli en sponsor ❤️ src/app/components/about/about.component.html 63 @@ -907,7 +1128,6 @@ Request invoice - Be om faktura src/app/components/about/about.component.html 85 @@ -916,43 +1136,31 @@ Terms of Service - Vilkår for bruk src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Naviger til + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - for å sponse - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required - Sum som kreves src/app/components/about/about.component.html 82 @@ -961,7 +1169,6 @@ Minimum amount is 0.001 BTC - Minimum sum er 0.001 BTC src/app/components/about/about.component.html 83 @@ -970,7 +1177,6 @@ If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) - Hvis du donerer 0.01 BTC eller mer, så blir ditt profilbilde lagt til i listen av sponsorer ovenfor :) src/app/components/about/about.component.html 92 @@ -979,7 +1185,6 @@ Waiting for transaction... - Venter på transaksjon... src/app/components/about/about.component.html 170 @@ -988,7 +1193,6 @@ Donation confirmed! - Donasjon bekreftet! src/app/components/about/about.component.html 175 @@ -997,7 +1201,6 @@ Thank you! - Tusen takk! src/app/components/about/about.component.html 175 @@ -1006,7 +1209,6 @@ 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 nå være synlig på denne siden når du reloader. src/app/components/about/about.component.html 176 @@ -1015,7 +1217,6 @@ Loading graphs... - Laster grafer... src/app/components/statistics/statistics.component.html 6 @@ -1024,16 +1225,22 @@ Mempool by vBytes (sat/vByte) - Mempool by vBytes (sat/vByte) src/app/components/statistics/statistics.component.html 16 statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) - Transaksjon vBytes per sekund (vB/s) src/app/components/statistics/statistics.component.html 57 @@ -1042,7 +1249,6 @@ Waiting for blocks... - Venter på blokker... src/app/components/blockchain/blockchain.component.html 11 @@ -1052,7 +1258,6 @@ Tx vBytes per second: - Tx vBytes per sekund: src/app/components/footer/footer.component.html 5 @@ -1061,7 +1266,6 @@ Mempool size: - Mempool størrelse src/app/components/footer/footer.component.html 20 @@ -1070,7 +1274,6 @@ Backend is synchronizing - Baksiden synkroniserer src/app/components/footer/footer.component.html 7 @@ -1083,16 +1286,35 @@ vBytes/s - vBytes/s src/app/components/footer/footer.component.html 11 shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span - Avgiftsintervall src/app/components/mempool-block/mempool-block.component.html 20 @@ -1101,16 +1323,21 @@ Total fees - Totale avgifter src/app/components/mempool-block/mempool-block.component.html 24 mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name - Navn src/app/components/asset/asset.component.html 20 @@ -1120,7 +1347,6 @@ Precision - Presisjon src/app/components/asset/asset.component.html 24 @@ -1130,7 +1356,6 @@ Burned amount - Sum brent src/app/components/asset/asset.component.html 55 @@ -1140,7 +1365,6 @@ Issuer - Utsteder src/app/components/asset/asset.component.html 28 @@ -1150,7 +1374,6 @@ Issuance TX - Utsteder TX src/app/components/asset/asset.component.html 32 @@ -1160,7 +1383,6 @@ Pegged in - Pegged inn src/app/components/asset/asset.component.html 43 @@ -1170,7 +1392,6 @@ Pegged out - Pegged out src/app/components/asset/asset.component.html 47 @@ -1180,7 +1401,6 @@ Issued amount - Utstedt sum src/app/components/asset/asset.component.html 51 @@ -1190,7 +1410,6 @@ Circulating amount - Sirkulerende sum src/app/components/asset/asset.component.html 59 @@ -1202,18 +1421,138 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. - Lasting av ressurs data feilet. src/app/components/asset/asset.component.html 132 asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown - Ukjent src/app/components/miner/miner.component.html 10 @@ -1222,7 +1561,6 @@ Low priority - Lav prioritet src/app/components/fees-box/fees-box.component.html 4 @@ -1235,7 +1573,6 @@ Medium priority - Medium prioritet src/app/components/fees-box/fees-box.component.html 10 @@ -1248,7 +1585,6 @@ High priority - Høy prioritet src/app/components/fees-box/fees-box.component.html 16 @@ -1259,142 +1595,16 @@ fees-box.high-priority - - Latest blocks - Nyeste blokker + + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Se alt » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Nyeste transaksjoner - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Sum - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Avgift - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempool størrelse - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Ubekreftet - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - blokk - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Innkommende transaksjoner - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Vanskelighetsjustering - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket - Websocket src/app/components/api-docs/api-docs.component.html 9 @@ -1404,7 +1614,6 @@ Endpoint - Endepunkt src/app/components/api-docs/api-docs.component.html 14 @@ -1442,7 +1651,6 @@ Description - Beskrivelse src/app/components/api-docs/api-docs.component.html 15 @@ -1480,7 +1688,6 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. - Standard push: operasjon: 'want', data: ['blocks', ...] til å uttrykke hva du vil pushe. Tilgjengelig: blocks , mempool-block , live-2h-chart , og stats . Push transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' til å motta alle nye transaksjoner som inneholder den adressen som input eller output. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner. src/app/components/api-docs/api-docs.component.html 19 @@ -1489,7 +1696,6 @@ Fees - Avgifter src/app/components/api-docs/api-docs.component.html 27 @@ -1499,7 +1705,6 @@ Returns our currently suggested fees for new transactions. - Returnerer vår nåværende foreslåtte avgift for nye transaksjoner. src/app/components/api-docs/api-docs.component.html 37 @@ -1509,7 +1714,6 @@ Returns current mempool as projected blocks. - Returnerer nåværende mempool som anslåtte blokker. src/app/components/api-docs/api-docs.component.html 41 @@ -1519,7 +1723,6 @@ Mempool - Mempool src/app/components/api-docs/api-docs.component.html 49 @@ -1529,7 +1732,6 @@ Returns current mempool backlog statistics. - Returnerer nåværende mempool ettersleps-statistikk. src/app/components/api-docs/api-docs.component.html 59 @@ -1539,7 +1741,6 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. - Får en full liste over txider i det nåværende mempool som en tabell. Sorteringen av txidene er tilfeldig og er ikke lik bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1549,7 +1750,6 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. - Får en liste over de siste 10 transaksjoner som går inn i mempool. Hvert transaksjons-objekt inneholder en forenklet oversikt, med følgende felt: txid , avgift , vsize , and verdi . src/app/components/api-docs/api-docs.component.html 67 @@ -1557,19 +1757,8 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Blokker - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). - Returnerer bekreftelsesstatus for en blokk. Tilgjengelige felt: in_best_chain (boolean, false for foreldreløse blokker), next_best (hashen for den neste blokken, bare tilgjengelig for blokker i den beste kjeden). src/app/components/api-docs/api-docs.component.html 89 @@ -1577,7 +1766,6 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. - Returnerer en liste av transaksjoner i blkken (opp til 25 transaksjoner som begynner på start_index ). Transaksjoner som blir returnert her har ikke status felt, siden alle transaksjoner deler den samme blokken og bekreftelsesstatus. src/app/components/api-docs/api-docs.component.html 93 @@ -1585,7 +1773,6 @@ Returns a list of all txids in the block. - Returnerer en liste av alle txider i blokken. src/app/components/api-docs/api-docs.component.html 97 @@ -1593,7 +1780,6 @@ Returns the transaction at index :index within the specified block. - Returnerer transaksonen på indeks :index i den spesifiserte blokken. src/app/components/api-docs/api-docs.component.html 101 @@ -1601,7 +1787,6 @@ Returns the raw block representation in binary. - Returnerer blokk representasjonen i binær. src/app/components/api-docs/api-docs.component.html 105 @@ -1609,7 +1794,6 @@ Returns the hash of the block currently at :height. - Returnerer hashen til blokken som for tiden er :height . src/app/components/api-docs/api-docs.component.html 109 @@ -1617,7 +1801,6 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. - Returnerer de 10 nyeste blokkene starter fra toppen eller fra :start_height hvis spesifisert. src/app/components/api-docs/api-docs.component.html 113 @@ -1625,7 +1808,6 @@ Returns the height of the last block. - Returnerer høyden på den siste blokken. src/app/components/api-docs/api-docs.component.html 117 @@ -1633,7 +1815,6 @@ Returns the hash of the last block. - Returnerer hashen av den siste blokken. src/app/components/api-docs/api-docs.component.html 121 @@ -1641,7 +1822,6 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. - Returnerer detaljer om en blokk. Tilgjengelige felt: id , høyde , versjon , tidspunkt , bits , nonce , merkle_root , antall_tx , størrelse, vekt , bevis , og forrige_blokkhash . src/app/components/api-docs/api-docs.component.html 85 @@ -1649,7 +1829,6 @@ Transactions - Transaksjoner src/app/components/api-docs/api-docs.component.html 129 @@ -1659,7 +1838,6 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. - Returnerer detaljer om en transaksjon, Tilgjengelige felt: txid , versjon , locktime , størrelse , vekt , avgift , vin , vout , og status . src/app/components/api-docs/api-docs.component.html 139 @@ -1667,7 +1845,6 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). - Returnerer bekreftelsesstatusen til en transaksjon. Tilgjengelige felt: bekreftet (boolean), blokk_høyde (valgfri), og blokk_hash (valgfri). src/app/components/api-docs/api-docs.component.html 143 @@ -1675,7 +1852,6 @@ Returns a transaction serialized as hex. - Returnerer en transaksjon serialisert som hex. src/app/components/api-docs/api-docs.component.html 147 @@ -1683,7 +1859,6 @@ Returns a transaction as binary data. - Returnerer en transaksjon som binær data. src/app/components/api-docs/api-docs.component.html 151 @@ -1691,7 +1866,6 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. - Returnerer ett merkle inkluderingsbevis for transaksjonen som bruker Electrum's blockchain.transaction.get_merkle format. src/app/components/api-docs/api-docs.component.html 159 @@ -1699,7 +1873,6 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). - Returnerer spendingstatusen til en transaksjon output. Tilgjengelige felt: brukt (boolean), txid (valgfri), vin (valgfri), og status (valgfri, statusen til spending-transaksonen). src/app/components/api-docs/api-docs.component.html 163 @@ -1707,7 +1880,6 @@ Returns the spending status of all transaction outputs. - Returnerer spending status fra alle transakjons outputs. src/app/components/api-docs/api-docs.component.html 167 @@ -1715,7 +1887,6 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. - Kringkast en rå transaksjon til nettverket. Transaksjonen må være gitt som hex. txid blir returnert. src/app/components/api-docs/api-docs.component.html 171 @@ -1723,7 +1894,6 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. - Returnerer ett merkle inkluderingsbevis for transaksjonen som bruker bitcoind's merkleblock format. src/app/components/api-docs/api-docs.component.html 155 @@ -1731,7 +1901,6 @@ Addresses - Adresser src/app/components/api-docs/api-docs.component.html 179 @@ -1741,7 +1910,6 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. - Returnerer detaljer om en adresse. Tilgjengelige felt: adresse , chain_stats , og mempool_stats . chain, mempool _stats alle inneholder ett objekt med tx_count , funded_txo_count , funded_txo_sum , spend_txo_count , og spend_txo_sum . src/app/components/api-docs/api-docs.component.html 189 @@ -1749,7 +1917,6 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). - Få transaksjonshistorien til den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer opp til 50 mempool transaksjoner pluss de første 25 bekreftede transaksjonene. Du kan be om flere bekreftede transaksjoner hvis du bruker :last_seen_txid (se nedenfor). src/app/components/api-docs/api-docs.component.html 193,194 @@ -1757,7 +1924,6 @@ Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. - Få bekreftet transaksjonshistorie for den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer 25 transaksjoner per side. Flere kan bli bedt om hvis du spesifiserer den siste txid som er sett av den forrige. src/app/components/api-docs/api-docs.component.html 197 @@ -1765,7 +1931,6 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). - Få ubekreftet transaksjonshistorie av den spesifiserte adressen/scripthash. Returnerer opp til 50 transaksjoner (ingen paging). src/app/components/api-docs/api-docs.component.html 201 @@ -1773,7 +1938,6 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. - Får en liste av ubrukte transaksjon-outputs assosiert med adressen/scripthash. Tilgjengelige felt: txid , vout, verdi , og status (med statusen for finansieringstransaksjonen). Det er også en verdiforpliktelse felt som kan vises istedenfor verdi , pluss følgende ytterligere felt: ressurs /ressrsforpliktelse , nonce /nonceforpliktelse , overgivelse_bevis , og intervall_bevis . src/app/components/api-docs/api-docs.component.html 205 @@ -1781,7 +1945,6 @@ Assets - Assets src/app/components/api-docs/api-docs.component.html 213 @@ -1791,7 +1954,6 @@ Returns information about a Liquid asset. - Returnerer informasjon om en Liquid ressurs. src/app/components/api-docs/api-docs.component.html 223 @@ -1799,7 +1961,6 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. - Returnerer transaksjoner assosiert med den spesifiserte Liquid ressurs. For nettverkets native ressurs, returnerer en liste av peg in, peg out, og burn transaksjoner. For brukerutsdedte ressurser, returnerer en liste av utstedelse, gjenutstedelse, og brenn transaksjoner. Inkluderer ikke normale transaksjoner som overfører denne ressursen. src/app/components/api-docs/api-docs.component.html 227 @@ -1807,7 +1968,6 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. - Får den nåværende totale forsyningen for den spesifiserte ressursen. For den native ressursen (L-BTC), dette er kalkulert slik [kjede,mempool]_stats.peg_in_mengde - [kjede,mempool]_stats.peg_out_mengde - [kjede,mempool]_stats.brent_mengde. For utstedte ressurser er det kalkulert slik [kjede,mempool]_stats.utstedt_mengde - [kjede,mempool]_stats.brent_mengde. Ikke tilgjengelig for ressurser med blindet utstedelse. Hvis /decimal er spesifisert, returnerer forsyningen som en desimal i henhold til ressursens delbarhet. Ellers, returnerer i baseenheter. src/app/components/api-docs/api-docs.component.html 231 @@ -1815,7 +1975,6 @@ BSQ - BSQ src/app/components/api-docs/api-docs.component.html 238 @@ -1825,7 +1984,6 @@ Returns statistics about all Bisq transactions. - Returnerer statistikk om alle Bisq transaksjoner. src/app/components/api-docs/api-docs.component.html 248 @@ -1833,7 +1991,6 @@ Returns details about a Bisq transaction. - Returnerer detaljer om en Bisq transaksjon. src/app/components/api-docs/api-docs.component.html 252 @@ -1841,7 +1998,6 @@ Returns :length of latest Bisq transactions, starting from :index. - Returnerer :lengde av siste Bisq transaksjoner, starter fra :indeks. src/app/components/api-docs/api-docs.component.html 256 @@ -1849,7 +2005,6 @@ Returns all Bisq transactions that exist in a Bitcoin block. - Returnerer alle Bisq transaksjoner som eksisterer i en Bitcoin blokk. src/app/components/api-docs/api-docs.component.html 260 @@ -1857,7 +2012,6 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. - Returnerer :lengde Bitcoin blokker som inneholder Bisq transaksjoner, starter fra :index. src/app/components/api-docs/api-docs.component.html 264 @@ -1865,7 +2019,6 @@ Returns the most recently processed Bitcoin block height processed by Bisq. - Returnerer den nyeste prosesserte Bitcoin blokkhøyde prosessert av Bisq. src/app/components/api-docs/api-docs.component.html 268 @@ -1873,297 +2026,175 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. - Returnerer alle Bisq transaksjoner som tilhører en Bitcoin adresse, med 'B' prefikset foran adressen. src/app/components/api-docs/api-docs.component.html 272 - - Address - Adresse + + Latest blocks - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Totalt mottatt + + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Totalt sendt - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Balanse - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - av - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Lasting av adressedata feilet. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - Akkurat nå - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - sek siden - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - sek siden - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - sekund siden - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - sekunder siden - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - min siden - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - min siden - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - minutt siden - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - minutter siden - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - time siden - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - timer siden - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - dag siden - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - dager siden - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - uke siden - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - uker siden - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - måned siden - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - måneder siden - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - år siden - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - år siden - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit - SegWit src/app/components/tx-features/tx-features.component.html 1 @@ -2179,9 +2210,32 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF - RBF src/app/components/tx-features/tx-features.component.html 8 @@ -2191,7 +2245,6 @@ Optimal - Optimal src/app/components/tx-fee-rating/tx-fee-rating.component.html 1 @@ -2199,9 +2252,20 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x - Overbetalt x src/app/components/tx-fee-rating/tx-fee-rating.component.html 2 @@ -2211,7 +2275,6 @@ Overpaid x - Overbetalt x src/app/components/tx-fee-rating/tx-fee-rating.component.html 3 @@ -2219,6 +2282,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.ja.xlf b/frontend/src/locale/messages.ja.xlf index 7783b8dd5..fb3581000 100644 --- a/frontend/src/locale/messages.ja.xlf +++ b/frontend/src/locale/messages.ja.xlf @@ -1,6 +1,18 @@ + + Transaction: + トランザクション: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction トランザクション @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ インプットとアウトプット src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ 詳細 src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ 詳細 src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ サイズ src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + 仮想サイズ + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight 重み src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ サトシ src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - ブロック + + block + ブロック src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. トランザクションが見つかりません。 src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ mempoolに表示されるのを待っています... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - 機密 + + blocks + ブロック - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + 機密 + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + ブロック + + src/app/components/block/block.component.ts + 98 + + Genesis ジェネシス @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + 140vBytesの平均ネイティブsegwitトランザクションに基づく + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees 合計料金 @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,15 +789,132 @@ block.error.loading-block-data + + Address: + アドレス: + + src/app/components/address/address.component.ts + 64 + + + + Address + アドレス + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + 受領合計 + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + 送金合計 + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + 残高 + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + / トランザクション + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + / トランザクション + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + アドレスデータを読み込み中にエラーが発生しました。 + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address - TXID、アドレス、ブロックハッシュなど + TXID, アドレス, ブロックハッシュなど src/app/components/search-form/search-form.component.html 4 search-form.searchbar-placeholder + + Search + 検索 + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + ブロック + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + ブロック + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height 高さ @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - サイズ - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of / マルチシグ @@ -818,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + このアプリについて + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline オフライン @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + 統計 + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + ダッシュボード + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + グラフ + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + テレビ + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + 資産 + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project プロジェクトについて @@ -923,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - 案内する + + Navigate to https://mempool.space/about to sponsor + スポンサーになるには、https://mempool.space/aboutに移動します。 src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - スポンサーに対して - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1033,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + 反転 + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) トランザクションvバイト毎秒(vB/s) @@ -1092,6 +1394,30 @@ shared.vbytes-per-second + + Next block + 次のブロック + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + mempoolブロックのスタック + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempoolブロック + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span 料金スパン @@ -1110,6 +1436,14 @@ mempool-block.total-fees + + Asset: + アセット: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1204,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + ペグイン/アウトおよびバーントランザクション + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + 発行およびバーントランザクション + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. アセットデータを読み込み中にエラーが発生しました。 @@ -1213,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + 登録アセット + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + アセット検索 + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + クリアー + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + アセット名 + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + ティッカー + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + 発行者ドメイン名 + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + アセットID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + 発行トランザクション + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + アセットデータの読み込み中にエラーが発生しました。 + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + コインベースアドレスで識別: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + コインベースタグで識別: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown 未知 @@ -1261,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - 最新のブロック + + API Service + APIサービス - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - すべてを表示» - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - 最新のトランザクション - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - 金額 - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - 手数料 - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - 米ドル - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempoolサイズ - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - 未確認 - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - ブロック - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - 着信トランザクション - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - 難易度調整 - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1559,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - ブロック - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1881,291 +2216,190 @@ 272 - - Address - アドレス + + Latest blocks + 最新のブロック - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - 受領合計 + + TXs + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - 送金合計 - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - 残高 - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - / - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - アドレスデータを読み込み中にエラーが発生しました。 - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - ちょうど今 - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - 分前 - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - 時間前 - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - 時間前 - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - 日前 - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - 日前 - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - 週間前 - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - 週間前 - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - ヶ月前 - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - ヶ月前 - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - 年前 - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - 年前 - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + すべてを表示» + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + 最新のトランザクション + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + 金額 + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + 手数料 + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + 米ドル + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + 展開 + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + 折りたたみ + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempoolサイズ + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + 未確認 + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + ブロック + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + ブロック + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + 着信トランザクション + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + 難易度調整 + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + コピー されました! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + このトランザクションでは、ネイティブのSegWit-Bech32を使用することで、手数料を%節約できました。 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit - セグウィット + SegWit src/app/components/tx-features/tx-features.component.html 1 @@ -2181,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + このトランザクションでは、SegWitを使用することで料金を%節約し、ネイティブSegWit-Bech32に完全にアップグレードすることで%をさらに節約できました。 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + このトランザクションでは、ネイティブSegWit-Bech32にアップグレードすることで料金を%節約でき、SegWit-P2SHにアップグレードすることで%を節約できます。 + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + このトランザクションは、手数料の引き上げを可能にする手数料による交換(RBF)をサポートします + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2201,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + このブロックに入るのに必要なのは〜 sat / vBだけですした + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x 過払い @@ -2221,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + ちょうど今 + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + 年前 + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + ヶ月前 + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + 週間前 + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + 日前 + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + 時間前 + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + 分前 + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + 分前 + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + 年前 + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + ヶ月前 + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + 週間前 + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + 日前 + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + 時間前 + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + 分前 + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + 分前 + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ統計 + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + 既存量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + 発行量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + 破壊量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + アドレス + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + UTXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + STXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + 価格 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + 時価総額 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + アドレス: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + ブロック + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + フィルタ + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + すべて選択 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + すべて選択解除 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + 承認済み + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.ka.xlf b/frontend/src/locale/messages.ka.xlf new file mode 100644 index 000000000..78691d126 --- /dev/null +++ b/frontend/src/locale/messages.ka.xlf @@ -0,0 +1,2763 @@ + + + + + Transaction: + ტრანსაქცია: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + ტრანზაქცია + + src/app/components/transaction/transaction.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + + shared.transaction + + + This transaction has been replaced by: + ტრანსაქცია ჩანაცვლდა: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + დადასტურება + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + დადასტურებული + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + დაუდასტურებული + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + შემავალი & გამომავალი + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + დეტალები + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + დეტალები + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + ზომა + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + ვირტუალური ზომა + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + წონა + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + დროის ნიშნული + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + საკომისიო + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + საკომისიო ყოველ vByte-ზე + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + სატ/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 153 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + შედის ამ ბლოკში + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + დადასტურებული + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + შემდეგ + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + მეთოდი + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 136 + + Transaction features + transaction.features + + + ETA + სავარაუდო ლოდინის დრო + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + სატ + + src/app/components/transaction/transaction.component.html + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + პირველი + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + რამდენიმე საათში (ან მეტი) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + წუთები + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction Minutes + transaction.minutes + + + block + ბლოკი + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + shared.block + + + Transaction not found. + ტრანსაქცია ვერ მოიძებნა. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + დაელოდეთ mempool-ში რომ გამოჩნდეს... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + blocks + ბლოკები + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (ახალი ქოინები) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + მიბმული + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + ყველა ჩატვირთვა + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + ტიპი + + src/app/components/transactions-list/transactions-list.component.html + 164 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + + transactions-list.vout.scriptpubkey-type + + + data + მონაცემები + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + სატ + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + დადასტურება + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + დადასტურებები + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + დაუდასტურებელი + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + კონფიდენციალური + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + ბლოკი : + + src/app/components/block/block.component.ts + 98 + + + + Genesis + პირველწყარო + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + ბლოკი + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + ჰაში + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + დროის ნიშნული + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + ზომა + + src/app/components/block/block.component.html + 31 + + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + წონა + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + მაინერი + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + საშუალო საკომისიო + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Based on average native segwit transaction of 140 vBytes + გამომდინარე საშუალო native segwit 140 vByte ტრანსაქციიდან + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + + + Total fees + შეკრებილი საკომისიო + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + სუბსიდია + საკომისიო: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + ტრანზაქცია + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + ტრანზაქციები + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + shared.transaction-count.plural + + + Error loading block data. + შეცდომა მონაცემების მოძებვნაზე + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address: + მისამართი: + + src/app/components/address/address.component.ts + 64 + + + + Address + მისამართი + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + სულ მიღებული + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + სულ გაგზავნილი + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Ბალანსი + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + ის ტრანსაქცია + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + ის ტრანსაქციები + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + შეცდომა მისამართის მონაცემების მოძებვნისას. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + + + TXID, block height, hash or address + TXID, ბლოკის სიმაღლე, ჰაში ან მისამართი + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + მოძებვნა + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + ბლოკები + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + ბლოკები + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + + + Height + სიმაღლე + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + + latest-blocks.height + + + Mined + მოპოვებული + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + ტრანსაქციები + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/master-page/master-page.component.html + 29 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + + latest-blocks.transactions + + + multisig of + მულტისიგ ის + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + შესვლა + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + წუთი + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + წუთი + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + ბლოკები + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + ჩვენს შესახებ + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + Offline + ოფლაინ + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + უკავშირდება... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + ქსელის 2-ე ფენა + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + სტატისტიკა + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + დაფა + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + დიაგრამები + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + სატელევიზიო ხედვა + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + აქტივები + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + + + About the project + პროექტის შესახებ + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + mempool open-source პროექტია, რომლის მიზანია მაღალი ხარისხის ექსპლორერის შექმნა და ბლოქჩეინის ვიზუალიზაცია ბიტკოინ ეკოსისტემისთვის, შემაწუხებელი ალტკოინების, რეკლამის, და third-party ტრეკერების გარეშე + + src/app/components/about/about.component.html + 16 + + + + Maintainers + შემნახველები + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + დეველოპმენტი + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Ოპერაციები + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + სპონსორები ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + გახდი სპონსორი ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + მოითხოვეთ ინვოისი + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Მომსახურების პირობები + + src/app/components/about/about.component.html + 206 + + + src/app/components/api-docs/api-docs.component.html + 284 + + + src/app/dashboard/dashboard.component.html + 143 + + Terms of Service + shared.terms-of-service + + + Navigate to https://mempool.space/about to sponsor + სპონსორობისთვის გადადით https://mempool.space/about - ზე + + src/app/components/about/about.component.html + 65 + + about.navigate-to-sponsor + + + Amount required + საჭირო თანხა + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + მინიმალური თანხაა 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + თუ თქვენ გადარიცხავთ 0.01 BTC ან მეტს, თქვენი პროფილი დაემატება სპონსორების სიას :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + ტრანსაქციის მოლოდინში... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + გადარიცხვა დადასტურებულია! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + დიდი მადლობა! + + src/app/components/about/about.component.html + 175 + + 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... + დაელოდეთ გრაფიკებს... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool by vBytes (sat / vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + შებრუნება + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + Transaction vBytes per second (vB/s) + ტრანზაქცია vBytes წამში (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + ბლოკების მოლოდინში... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + ტრანსაქცია vBytes წამში: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + მემპულის ზომა: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backend სინქრონდება + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/წამში + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Next block + შემდეგი ბლოკი + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + mempool ბლოკების რაოდენობა + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + მემპულის ბლოკი + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + Fee span + საკომისიოს დიაპაზონი + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + შეკრებილი საკომისიო + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Asset: + აქტივი: + + src/app/components/asset/asset.component.ts + 73 + + + + Name + სახელი + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + სიზუსტე + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + დამწვარი რაოდენობა + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + გამცემი + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + გამცემის TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + მიბმული + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + განცალკევებული + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + გაცემული რაოდენობა + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + ცირკულირებული რაოდენობა + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + ემისია და დამწვარი ტრანზაქციები + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + აქტივის მონაცემების მოძებვნისას მოხდა შეცდომა. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Registered assets + დარეგისტრირებული ქოინები + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + ქოინების მოძებვნა + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + წაშლა + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + სახელი + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + ნიშანი + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + გამომცემის მისამართი + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ქოინის ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + გამოცემის TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + ქოინების მონაცემების მოძებვნისას მოხდა შეცდომა. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + იდენტიფიცირებულია გადახდის მისამართით: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + იდენტიფიცირებულია coinbase-ის მისამართით: '' + + src/app/components/miner/miner.component.ts + 52 + + + + Unknown + უცნობი + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + დაბალი პრიორიტეტი + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + საშუალო პრიორიტეტი + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Მაღალი პრიორიტეტი + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + API Service + API სერვისი + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + დასასრული + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + აღწერა + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + საკომისიოები + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + აბრუნებს ჩვენ მიერ დათვლილ საკომისიოს ახალი ტრანზაქციისთვის + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + აბრუნებს მიმდინარე mempool-ს, როგორც გამოსახულ ბლოკებად + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + მემპული + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + აბრუნებს მიმდინარე mempool-ის backlog სტატისტიკას + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + მიიღეთ ტრანზაქციების ID-ის სტულია სია mempool-ი დან. ტრანზაქციები განრიგი არ ემთხვევა bitcoind-ს. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + ტრანზაქციები + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + მისამართები + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + ქოინები + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Latest blocks + ბოლო ბლოკები + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + ტრანზაქციები წამში + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + ყველას ნახვა » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + ბოლო ტრანზაქციები + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + ტრანსაქციის ID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + რაოდენობა + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + საკომისიო + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + დოლარი + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + მეტის ნახვა + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + დახურვა + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + მემპულის ზომა + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + დაუდასტურებული + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + ბლოკი + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + ბლოკები + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + მიმდინარე ტრანზაქციები + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + სირთულე + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + დაკოპირდა + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + ამ ტრანზაქციამ დაზოგა % საკომისიოებზე native SegWit-Bech32 გამოყენებით + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + ამ ტრანზაქციამ დაზოგა % საკომისიოებზე SegWit-ის გამოყენებით და შეიძლება კიდევ %-ით მეტის დაზოგვა მთლიანად native SegWit-Bech32-ის აფგრეიდით + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + ამ ტრანზაქციას შეეძლო დაეზოგა % საკომისიოებზე native SegWit-Bech32-ზე აფგრეიდით ან % SegWit-P2SH-ის აფგრეიდით + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + ამ ტრანზაქციით შესაძლებელია Replace-By-Fee (RBF) რაც შესაძლებელს საკომისიოს გაზრდას + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + ნებაყოფლობითი + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Only ~ sat/vB was needed to get into this block + მინიმუმ ~ sat/vB იყო საჭირო ამ ბლოკში მოსახვედრად + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + + + Overpaid x + ზედმეტი საკომისიო x-ით + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + ზედმეტი საკომისიო x-ით + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + Just now + ზუსტად ახლა + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + წლის წინ + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + თვის წინ + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + კვირის წინ + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + დღის წინ + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + საათის წინ + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + წლის წინ + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + თვის წინ + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + კვირის წინ + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + დღის წინ + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + საათის წინ + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + წუთის წინ + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + წამის წინ + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ სტატისტიკა + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + არსებული რაოდენობა + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + მოპოვებული რაოდენობა + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + დამწვარი რაოდენობა + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + მისამართები + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + დაუხარჯავი TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + დახარჯული TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + ფასი + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + კაპიტალიზაცია + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + მისამართი: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + ბლოკი : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + გაფილტვრა + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + ყველას მონიშვნა + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + ყველას განვნიშვნა + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + დადასტურებული + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nb.xlf b/frontend/src/locale/messages.nb.xlf new file mode 100644 index 000000000..cdf10b23d --- /dev/null +++ b/frontend/src/locale/messages.nb.xlf @@ -0,0 +1,2812 @@ + + + + + Transaction: + Transaksjon: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + Transaksjon + + src/app/components/transaction/transaction.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + + shared.transaction + + + This transaction has been replaced by: + Denne transaksjonen har blitt byttet ut med: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + Bekreftelse + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + Bekreftelser + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Ubekreftet + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Inndata og Utdata + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Detaljer + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + Detaljer + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + Størrelse + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + Virtuell størrelse + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Vekt + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + Tidspunkt + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Avgift + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + Avgift per vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 153 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Inkludert i blokk + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Bekreftet + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Etter + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Funksjoner + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 136 + + Transaction features + transaction.features + + + ETA + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + sat + + src/app/components/transaction/transaction.component.html + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Først sett + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Om flere timer(eller mer) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + minutter + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction Minutes + transaction.minutes + + + block + blokk + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + shared.block + + + Transaction not found. + Transaksjon ikke funnet + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Venter på at den kommer inn i mempool... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + blocks + blokker + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + + + Coinbase + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Nygenererte Mynter) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + Peg-inn + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + ScriptSig(ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + ScriptSig(HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Forrige output script + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Last alt + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + Peg-ut til + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Type + + src/app/components/transactions-list/transactions-list.component.html + 164 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + + transactions-list.vout.scriptpubkey-type + + + data + data + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + bekreftelse + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + bekreftelser + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + Ubekreftet + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + Konfidensiell + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Blokk : + + src/app/components/block/block.component.ts + 98 + + + + Genesis + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + Blokk + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + Tidspunkt + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + Størrelse + + src/app/components/block/block.component.html + 31 + + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + Vekt + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + Utvinner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + Medianavgift + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Based on average native segwit transaction of 140 vBytes + Basert på gjennomsnittlig native segwit-transaksjon på 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + + + Total fees + Totale avgifter + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + Subsidie + avgifter: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + transaksjon + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + transaksjoner + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + shared.transaction-count.plural + + + Error loading block data. + Lasting av blokkdata feilet. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address: + Adresse: + + src/app/components/address/address.component.ts + 64 + + + + Address + Adresse + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Totalt mottatt + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Totalt sendt + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balanse + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + av transaksjon + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + av transaksjoner + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Lasting av adressedata feilet. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + + + TXID, block height, hash or address + TXID, blokkhøyde, hash eller adresse + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + Søk + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blokker + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Blokker + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + + + Height + Høyde + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + + latest-blocks.height + + + Mined + Utvunnet + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + Transaksjoner + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/master-page/master-page.component.html + 29 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + + latest-blocks.transactions + + + multisig of + multisig av + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + Lag Peg-ut + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + Om + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + minutt + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + minutter + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + blokker + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Om + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + Offline + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + Kobler til igjen... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + Lag 2-nettverk + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + Statistikk + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Dashbord + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Grafer + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV-modus + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Ressurser + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + + + About the project + Om prosjektet + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Åpen-kildekode prosjektet Mempool prøver å implementere en utforsker og visualiserings webside av høy kvalitet for hele Bitcoin økosystemet, uten distraksjoner som altcoins, reklame eller tredjeparts trackere. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + Vedlikeholdere + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + Utviklere + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + Operasjoner + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + Sponsorer ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + Bli en sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + Be om faktura + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + Vilkår for bruk + + src/app/components/about/about.component.html + 206 + + + src/app/components/api-docs/api-docs.component.html + 284 + + + src/app/dashboard/dashboard.component.html + 143 + + Terms of Service + shared.terms-of-service + + + Navigate to https://mempool.space/about to sponsor + Gå til https://mempool.space/about for å sponse + + src/app/components/about/about.component.html + 65 + + about.navigate-to-sponsor + + + Amount required + Beløp som kreves + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + Minimum beløp er 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Hvis du donerer 0.01 BTC eller mer, så blir ditt profilbilde lagt til i listen av sponsorer ovenfor :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + Venter på transaksjon... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + Donasjon bekreftet! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + Tusen takk! + + src/app/components/about/about.component.html + 175 + + 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... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + Mempool i vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + Inverter + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + Transaction vBytes per second (vB/s) + Transaksjoner per sekund (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + Venter på blokker... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + Tx vBytes per sekund: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + Mempool størrelse + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + Backend synkroniserer + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Next block + Neste blokk + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Bunke med mempool blokker + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempool-blokk + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + Fee span + Avgiftsintervall + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + Totale avgifter + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Asset: + Ressurs: + + src/app/components/asset/asset.component.ts + 73 + + + + Name + Navn + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + Presisjon + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + Beløp som er brent + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + Utsteder + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + Utstedelse TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + Pegged inn + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + Pegged ut + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + Beløp som er utstedt + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + Sirkulerende beløp + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Peg In/Out and Burn Transactions + Peg inn / ut og brenn transaksjoner + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Utstedelse og forbrennings transaksjoner + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + Lasting av ressursdata feilet. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Registered assets + Registrerte ressurser + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Søk ressurs + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Fjern + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Navn + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Utsteder-domene + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + Ressurs-ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Utstedelse TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Feil ved innlasting av ressursdata. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Identifisert av utbetalingsadresse: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identifisert av coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + + + Unknown + Ukjent + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + Lav prioritet + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + Medium prioritet + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + Høy prioritet + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + API Service + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + + + Websocket + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + Endepunkt + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + Beskrivelse + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Standard push: operasjon: 'want', data: ['blocks', ...] til å uttrykke hva du vil pushe. Tilgjengelig: blocks , mempool-block , live-2h-chart , og stats . Push transaksjoner relatert til adresse: 'track-address': '3PbJ...bF9B' til å motta alle nye transaksjoner som inneholder den adressen som inndata eller utdata. Returnerer en tabell av transaksjoner. adress-transactions for nye mempool transaksjoner, og block-transactions for nye blokkbekreftede transaksjoner. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + Avgifter + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + Returnerer vår nåværende foreslåtte avgift for nye transaksjoner. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + Returnerer nåværende mempool som anslåtte blokker. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + Returnerer statistikk for nåværende mempool. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Gir deg en full liste over txider i det nåværende mempoolet. Sorteringen av txidene er tilfeldig og er ikke lik bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Gir deg en liste over de 10 siste transaksjonene som har gått inn i mempool. Hvert transaksjons-objekt inneholder en forenklet oversikt, med følgende felt: txid , fee , vsize , and value . + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Returnerer bekreftelsesstatus for en blokk. Tilgjengelige felt: in_best_chain (boolsk verdi, false for foreldreløse blokker), next_best (hashen for den neste blokken, bare tilgjengelig for blokker i den beste kjeden). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Returnerer en liste av transaksjoner i blokken (opp til 25 transaksjoner som begynner på start_index ). Transaksjoner som blir returnert har ikke status felt, siden alle transaksjoner har samme blokk og bekreftelsesstatus. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + Returnerer en liste over alle txider i blokken. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + Returnerer transaksonen på indeks :index i den spesifiserte blokken. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + Returnerer en blokk i binær. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + Returnerer hashen til blokken som for tiden er :height . + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Returnerer de 10 nyeste blokkene som starter fra toppen eller fra :start_height hvis spesifisert. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + Returnerer høyden til den siste blokken. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + Returnerer hashen til den siste blokken. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Returnerer detaljer om en blokk. Tilgjengelige felt: id , height , version , timestamp , bits , nonce , merkle_root , tx_count , size, weight , proof , og previousblockhash . + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + Transaksjoner + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Returnerer detaljer om en transaksjon, Tilgjengelige felt: txid , version , locktime , size , weight , fee , vin , vout , og status . + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Returnerer bekreftelsesstatusen til en transaksjon. Tilgjengelige felt: confirmed (boolsk verdi), block_height (valgfri), og block_hash (valgfri). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + Returnerer en transaksjon serialisert som hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + Returnerer en transaksjon som binær data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Returnerer ett merkle inkluderingsbevis for transaksjonen som bruker Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Returnerer bruktstatusen til en transaksjons utdata. Tilgjengelige felt: spent (boolsk verdi), txid (valgfri), vin (valgfri), og status (valgfri, statusen til transaksonen som brukte den). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + Returnerer brukt status for alle transakjons-utdata. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + Send en rå transaksjon ut på nettverket. Transaksjonen må være gitt som hex. txid blir returnert hvis det er vellykket. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Returnerer et merkle-inkluderingsbevis for transaksjonen, den bruker bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + Adresser + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Returnerer detaljer om en adresse. Tilgjengelige felt: address , chain_stats , og mempool_stats . chain,mempool_stats, alle inneholder ett objekt med tx_count , funded_txo_count , funded_txo_sum, spent_txo_count, og spend_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Gir deg transaksjonshistorien til den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer opp til 50 mempool transaksjoner pluss de første 25 bekreftede transaksjonene. Du kan be om flere bekreftede transaksjoner hvis du bruker :last_seen_txid (se nedenfor). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Gir deg den bekreftede transaksjonshistorien for den spesifiserte adressen/scripthash, sortert med nyeste først. Returnerer 25 transaksjoner per side. Flere kan bli bedt om hvis du spesifiserer den siste txiden som ble sett av det forrige kallet. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Gir deg ubekreftet transaksjonshistorie for den spesifiserte adressen/scripthash. Returnerer opp til 50 transaksjoner (ingen paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Gir deg en liste av ubrukte transaksjons-utdata assosiert med adressen/scripthash. Tilgjengelige felt: txid , vout, value , og status (med statusen for finansieringstransaksjonen). Det er også et valuecommitment felt som kan vises istedenfor value , pluss de følgende felter: asset /assetcommitment , nonce /noncecommitment , surjection_proof , og range_proof . + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + Ressurser + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + Returnerer informasjon om en Liquid ressurs. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Returnerer transaksjoner assosiert med den spesifiserte Liquid ressursen. For nettverkets native ressurs, returneres en liste av peg in, peg out, og brenn transaksjoner. For brukerutsdedte ressurser, returneres en liste av utstedelse, gjenutstedelse, og brenn transaksjoner. Inkluderer ikke normale transaksjoner som overfører denne ressursen. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Gir deg den nåværende totale forsyningen for den spesifiserte ressursen. For den native ressursen (L-BTC), dette er kalkulert slik [kjede,mempool]_stats.peg_in_mengde - [kjede,mempool]_stats.peg_out_mengde - [kjede,mempool]_stats.brent_mengde. For utstedte ressurser er det kalkulert slik [kjede,mempool]_stats.utstedt_mengde - [kjede,mempool]_stats.brent_mengde. Ikke tilgjengelig for ressurser med blindet utstedelse. Hvis /decimal er spesifisert, returneres forsyningen som en desimal i henhold til ressursens delbarhet, ellers returneres den i baseenheter. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + Returnerer statistikk om alle Bisq transaksjoner. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + Returnerer detaljer om en Bisq transaksjon. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + Returnerer :length av de siste Bisq transaksjonene, starter fra :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + Returnerer alle Bisq transaksjoner som eksisterer i en Bitcoin blokk. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Returnerer :length Bitcoin blokker som inneholder Bisq transaksjoner, starter fra :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + Returnerer den nyeste prosesserte Bitcoin blokkhøyden som er prosessert av Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Returnerer alle Bisq transaksjoner som hører til en Bitcoin adresse, med 'B' prefikset foran adressen. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Latest blocks + Nyeste blokker + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Se alt » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Nyeste transaksjoner + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Beløp + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Avgift + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Utvid + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Slå sammen + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempool størrelse + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Ubekreftet + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blokk + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + blokker + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Innkommende transaksjoner + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Vanskelighetsgradjustering + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Kopiert! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Denne transaksjonen sparte % på avgifter ved å bruke native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains + + + SegWit + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Denne transaksjonen sparte % på avgifter ved å bruke SegWit, men kunne spart % mer ved å oppgradere til native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Denne transaksjonen kunne spart % på avgifter ved å oppgradere til native SegWit-Bech32 eller % ved å oppgradere til SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Denne transaksjonen støtter Replace-By-Fee (RBF) som gjør at du kan endre avgift + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + + + RBF + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Only ~ sat/vB was needed to get into this block + Bare ~ sat / vB var nødvendig for å bli inkludert i denne blokken + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + + + Overpaid x + Overbetalte x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + Overbetalte x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + Just now + Akkurat nå + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + år siden + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + måned siden + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + uke siden + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + dag siden + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + time siden + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + min siden + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + minutt siden + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + sek siden + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + sekund siden + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + år siden + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + måneder siden + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + uker siden + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + dager siden + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + timer siden + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + min siden + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + minutter siden + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + sek siden + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + sekunder siden + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ statistikk + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Eksisterende beløp + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Utstedt beløp + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Brent beløp + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Adresser + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Ubrukte TXOer + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Brukte TXOer + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Pris + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Markedsverdi + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Adresse: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Blokk : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Velg alle + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Avmarker alle + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Bekreftet + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.nl.xlf b/frontend/src/locale/messages.nl.xlf index 8b693bbd4..030c0b3b2 100644 --- a/frontend/src/locale/messages.nl.xlf +++ b/frontend/src/locale/messages.nl.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transactie @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +86,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +96,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +106,7 @@ Details src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +115,26 @@ Grootte src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Gewicht src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +158,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +172,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +186,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,14 +270,14 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features ETA - ETA + Verwacht src/app/components/transaction/transaction.component.html 115 @@ -250,7 +290,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +324,29 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transactie niet gevonden. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +355,17 @@ Wachten tot het in de mempool verschijnt... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Vertrouwelijk + + blocks - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -435,6 +460,7 @@ Load all + Laad alles src/app/components/transactions-list/transactions-list.component.html 106 @@ -478,6 +504,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -530,8 +560,37 @@ transactions-list.unconfirmed + + Confidential + Vertrouwelijk + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis + Genesis src/app/components/block/block.component.html 4 @@ -540,6 +599,7 @@ Block + Blok src/app/components/block/block.component.html 4 @@ -575,6 +635,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -612,6 +680,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Totale vergoedingen @@ -676,10 +768,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -691,14 +779,127 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + adres + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Totaal ontvangen + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Totaal verstuurd + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balans + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Fout bij het laden van adresdata. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address + TXID, blokhoogte, hash of adres src/app/components/search-form/search-form.component.html 4 search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blokken + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Hoogte @@ -710,6 +911,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -732,25 +941,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Gevuld - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig van @@ -810,6 +1022,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Offline @@ -830,12 +1066,65 @@ Layer 2 Networks + Laag-2-netwerken src/app/components/master-page/master-page.component.html 19 master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Over het project @@ -847,6 +1136,7 @@ The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Het (open source) mempool project heeft als doel om een hoge kwaliteit explorer en visaulisatie te bieden voor het gehele Bitcoin-ecosysteem, zonder afleidingen als altcoins, reclame of trackers. src/app/components/about/about.component.html 16 @@ -913,34 +1203,24 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Navigeer naar + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1023,6 +1303,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transactie-vBytes per seconde (vB/s) @@ -1082,6 +1370,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1099,6 +1408,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Naam @@ -1190,6 +1506,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Fout bij het laden van activagegevens. @@ -1199,6 +1531,112 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Onbekend @@ -1247,138 +1685,13 @@ fees-box.high-priority - - Latest blocks - Laatste blokken + + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TX's - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Bekijk alles » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Laatste transacties - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Bedrag - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Vergoeding - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempoolgrootte - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Onbevestigd - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - blok - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Inkomende transacties - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Moeilijkheidsaanpassing - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1526,6 +1839,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Geeft de volledige lijst txids als een array. Deze is niet gesorteerd en komt niet overeen met bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1535,6 +1849,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Lijst van laatste 10 transacties die in de mempool komen. Elk transactieobject bevat gesimplificeerde data, met de velden: txid, fee, vgrootte, en waarde src/app/components/api-docs/api-docs.component.html 67 @@ -1542,18 +1857,9 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Blokken - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Geeft de bevesigingsstatus van een blok. Beschikbare velden: in_best_chain (boolean, false voor wees-blokken), next_best (hash van het volgende blok, enkel beschikbaar voor blokken in de 1-na-beste chain) src/app/components/api-docs/api-docs.component.html 89 @@ -1561,6 +1867,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Geeft een lijst van transacties in het blok (tot 25 transacties beginnend bij start_index). Teruggegeven transacties hebben geen status-veld, aangezien deze allemaal hetzelfde blok en bevestigingsstatus delen. src/app/components/api-docs/api-docs.component.html 93 @@ -1568,6 +1875,7 @@ Returns a list of all txids in the block. + Geeft een lijst van alle txids in het blok. src/app/components/api-docs/api-docs.component.html 97 @@ -1575,6 +1883,7 @@ Returns the transaction at index :index within the specified block. + Geeft de transactie op index :index binnen het opgegeven blok. src/app/components/api-docs/api-docs.component.html 101 @@ -1582,6 +1891,7 @@ Returns the raw block representation in binary. + Geeft rauwe block, in binaire vorm. src/app/components/api-docs/api-docs.component.html 105 @@ -1589,6 +1899,7 @@ Returns the hash of the block currently at :height. + Geeft de hash van het blok op hoogte :height. src/app/components/api-docs/api-docs.component.html 109 @@ -1596,6 +1907,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Geeft de 10 laatste blokken vanaf het einde of vanaf :start_height, als meegegeven. src/app/components/api-docs/api-docs.component.html 113 @@ -1603,6 +1915,7 @@ Returns the height of the last block. + Geeft de hoogte van het laatste blok. src/app/components/api-docs/api-docs.component.html 117 @@ -1610,6 +1923,7 @@ Returns the hash of the last block. + Geeft de hash van het laatste blok. src/app/components/api-docs/api-docs.component.html 121 @@ -1617,6 +1931,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Geeft de details van een blok. Beschikbare velden: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1624,6 +1939,7 @@ Transactions + Transacties src/app/components/api-docs/api-docs.component.html 129 @@ -1828,268 +2144,180 @@ 272 - - Address - adres + + Latest blocks + Laatste blokken - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Totaal ontvangen + + TXs + TX's - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Totaal verstuurd - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Balans - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - van - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Fout bij het laden van adresdata. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Bekijk alles » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Laatste transacties + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Bedrag + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Vergoeding + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempoolgrootte + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Onbevestigd + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Inkomende transacties + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Moeilijkheidsaanpassing + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2109,6 +2337,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2129,6 +2381,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Te veel betaald x @@ -2149,6 +2413,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.pl.xlf b/frontend/src/locale/messages.pl.xlf index 556fac6c0..b7dc9c557 100644 --- a/frontend/src/locale/messages.pl.xlf +++ b/frontend/src/locale/messages.pl.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakcja @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +86,7 @@ Wejścia i Wyjścia src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +96,7 @@ Szczegóły src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +106,7 @@ Szczegóły src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +115,26 @@ Rozmiar src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Waga src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +158,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +172,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +186,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +270,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +290,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +324,29 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transakcja nie odnaleziona src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,29 +355,17 @@ Oczekiwanie aż pojawi się w mempool src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential + + blocks - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -471,6 +497,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -518,6 +548,33 @@ transactions-list.unconfirmed + + Confidential + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -560,6 +617,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -594,6 +659,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees @@ -654,10 +743,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -668,6 +753,69 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address @@ -676,6 +824,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -686,6 +877,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -706,24 +905,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of @@ -777,6 +980,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline @@ -801,6 +1028,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -870,32 +1149,24 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -969,6 +1240,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -1022,6 +1301,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1038,6 +1338,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1123,6 +1430,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1131,6 +1454,112 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown @@ -1175,124 +1604,13 @@ fees-box.high-priority - - Latest blocks + + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1448,15 +1766,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1731,262 +2040,167 @@ 272 - - Address + + Latest blocks - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received + + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2005,6 +2219,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -2023,6 +2261,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2041,6 +2291,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.pt.xlf b/frontend/src/locale/messages.pt.xlf index 69be4cf97..199ae986a 100644 --- a/frontend/src/locale/messages.pt.xlf +++ b/frontend/src/locale/messages.pt.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transação: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transação @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ Entradas & Saídas src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Detalhes src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Detalhes src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Tamanho src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Tamanho virtual + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Peso src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - bloco + + block + bloco src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transação não encontrada. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,10 +358,19 @@ Aguardando que apareça no mempool... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear + + blocks + blocos + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + Coinbase Conteúdo no bloco @@ -462,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -527,7 +581,7 @@ src/app/components/address/address.component.html - 112 + 116 src/app/components/asset/asset.component.html @@ -535,8 +589,17 @@ shared.confidential + + Block : + Blocos : + + src/app/components/block/block.component.ts + 98 + + Genesis + Gênesis src/app/components/block/block.component.html 4 @@ -545,6 +608,7 @@ Block + Bloco src/app/components/block/block.component.html 4 @@ -580,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -617,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Com base na transação segwit nativa média de 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Total de taxas @@ -669,10 +766,6 @@ src/app/components/block/block.component.html 85 - - src/app/components/address/address.component.html - 46 - src/app/components/mempool-blocks/mempool-blocks.component.html 14 @@ -696,6 +789,14 @@ block.error.loading-block-data + + Address: + Endereço: + + src/app/components/address/address.component.ts + 64 + + Address Endereço @@ -732,24 +833,88 @@ address.balance - - of - de + + of transaction + de transação src/app/components/address/address.component.html - 46 + 48 - shared.of + X of X Address Transaction + + + of transactions + de transações + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) Error loading address data. Erro ao carregar os dados do endereço. src/app/components/address/address.component.html - 101 + 105 address.error.loading-address-data + + TXID, block height, hash or address + ID da transação, altura, hash ou endereço + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + Busca + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Blocos + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Blocos + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Altura @@ -761,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -783,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Preenchido - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig de @@ -861,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Sobre + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Sem conexão @@ -879,6 +1081,72 @@ master-page.reconnecting + + Layer 2 Networks + Rede 2ª Camada + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + Estatísticas + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Painel de controle + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Gráficos + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + Visualização da TV + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Ativos + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Sobre o projeto @@ -957,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Navegar para + + Navigate to https://mempool.space/about to sponsor + Acesse https://mempool.space/about para patrocinar src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - patrocinar - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1067,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Inverter + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transação vBytes por segundo (vB/s) @@ -1126,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Próximo bloco + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Pilha de blocos do mempool + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Bloco no mempool + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Extensão da taxa @@ -1144,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Ativo: + + src/app/components/asset/asset.component.ts + 73 + + Name Nome @@ -1238,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Transações Indexadas/Atreladas e Queimadas + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Transações emitidas e queimadas + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Erro ao carregar os dados do ativo. @@ -1247,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Ativos registrados + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Ativo buscado + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Limpar + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Nome + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Domínio do emissor + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ID do ativo + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Emissão da transação + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Erro ao carregar os dados dos ativos. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Identificado pelo endereço de pagamento: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identificado pela tag no conteúdo no bloco: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Desconhecido @@ -1295,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Últimos blocos + + API Service + Serviço API - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - Transações - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Ver tudo » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Últimas transações - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - ID da transação - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Quantia - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Taxa - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - Dólar - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Tamanho do mempool - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Não confirmado - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - bloco - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Transações de entrada - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Próximo ajuste de dificuldade - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1593,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Blocos - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Retorna o status de confirmação de um bloco. Campos disponíveis: na_melhor_corrente (booleano, falso para blocos órfãos), melhor_próximo (o hash do próximo bloco, disponível apenas para blocos na melhor cadeia). @@ -1915,214 +2216,186 @@ 272 - - just now + + Latest blocks + Últimos blocos - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 + src/app/dashboard/dashboard.component.html + 75 + dashboard.latest-blocks - - sec ago + + TXs + Transações - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Ver tudo » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Últimas transações + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + ID da transação + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Quantia + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Taxa + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + Dólar + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Expandir + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Colapso + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Tamanho do mempool + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Não confirmado + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + bloco + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + blocos + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Transações de entrada + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Próximo ajuste de dificuldade + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Copiado! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Esta transação economizou % em taxas usando SegWit-Bech32 nativo + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2142,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Esta transação economizou % em taxas usando SegWit e poderia economizar mais % usando SegWit-Bech32 nativo + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Esta transação pode economizar % em taxas atualizando para SegWit-Bech32 nativo ou % atualizando para SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Essa transação suporta Replace-By-Fee permitindo aumento de taxa + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF Replace-by-fee @@ -2162,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Apenas ~ sat/vB era necessário para entrar no bloco + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Em excesso x @@ -2182,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Agora + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + ano atrás + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + mês atrás + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + semana atrás + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + dia atrás + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + hora atrás + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + min atrás + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + minuto atrás + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + seg atrás + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + segundo atrás + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + anos atrás + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + meses atrás + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + semanas atrás + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + dias atrás + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + horas atrás + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + mins atrás + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + minutos atrás + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + segs atrás + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + segundos atrás + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + Estatísticas BSQ + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Quantia existente + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Quantia criada + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Quantia queimada + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Endereços + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Saídas de transações não realizadas + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Saídas de transações realizadas + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Preço + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Capitalização de mercado + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Endereço: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Bloco : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Filtro + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Marcar tudo + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Desmarcar tudo + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Confirmado + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + - + \ No newline at end of file diff --git a/frontend/src/locale/messages.sl.xlf b/frontend/src/locale/messages.sl.xlf index 4b2471e05..140979d89 100644 --- a/frontend/src/locale/messages.sl.xlf +++ b/frontend/src/locale/messages.sl.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transakcija: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transakcija @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ Vhodi & Izhodi src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Podrobnosti src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Podrobnosti src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Velikost src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Navidezna velikost + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Utež src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - blok + + block + blok src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transakcije ni mogoče najti. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ Čakanje, da se prikaže v mempool-u... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Zaupno + + blocks + blokov - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + Zaupno + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Blok : + + src/app/components/block/block.component.ts + 98 + + Genesis Prvotni @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -608,7 +678,7 @@ Median fee - Mediana omrežnine + Mediana omrežnin src/app/components/block/block.component.html 45 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Na podlagi povprečne native segwit transakcije (140 vBajtov). + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Skupaj omrežnin @@ -666,7 +761,7 @@ transactions - transakcije + transakcij src/app/components/block/block.component.html 85 @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +789,77 @@ block.error.loading-block-data + + Address: + Naslov: + + src/app/components/address/address.component.ts + 64 + + + + Address + Naslov + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Skupaj prejeto + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Skupaj poslano + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Stanje + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + od transakcija + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + od transakcij + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Napaka pri nalaganju podatkov naslova. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address TXID, višina bloka, hash ali naslov @@ -707,6 +869,52 @@ search-form.searchbar-placeholder + + Search + Iskanje + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloki + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Bloki + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Višina @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Napolnjenost - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig od @@ -818,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + O projektu + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Brez povezave @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + Statistika + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Pregledna plošča + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Grafi + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV pogled + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Sredstva + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project O projektu @@ -856,6 +1158,7 @@ The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + Cilj odprtokodnega projekta mempool, je ustvariti visokokakovostno spletno mesto za raziskovanje in vizualizacijo celotnega Bitcoin ekosistema, brez motečih vsebin, kot so alternativne kriptovalute, oglaševanje ali sledilci tretjih ponudnikov. src/app/components/about/about.component.html 16 @@ -922,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Pojdite na + + Navigate to https://mempool.space/about to sponsor + Pojdite na https://mempool.space/about za sponzorstvo. src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - za sponzorstvo - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -971,6 +1265,7 @@ If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + Če prispevate 0.01 BTC ali več, bo vaša fotografija profila dodana na zgornji seznam sponzorjev :) src/app/components/about/about.component.html 92 @@ -1006,6 +1301,7 @@ 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 @@ -1030,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Obrni + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Pretočnost, vBajtov na sekundo (vB/s) @@ -1089,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Naslednji blok + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Sklad mempool blokov + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempool blok + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Razpon omrežnin @@ -1107,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Sredstvo: + + src/app/components/asset/asset.component.ts + 73 + + Name Naziv @@ -1129,7 +1466,7 @@ Burned amount - Umaknjeno iz obtoka (burned) + Uničeno (burned) src/app/components/asset/asset.component.html 55 @@ -1201,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Peg In/Out in Burn Transakcij + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Izdajnih in Burn Transakcij + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Napaka pri nalaganju podatkov o sredstvu. @@ -1210,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Registrirana sredstva + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Iskanje sredstev + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Počisti + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Naziv + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Oznaka + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Domena izdajatelja + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ID sredstva + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Izdajna transakcija + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Napaka pri nalaganju podatkov o sredstvih. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Prepoznano po naslovu za izplačilo: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Prepoznano po coinbase oznaki: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Neznano @@ -1221,7 +1693,7 @@ Low priority - Nizka prioriteta + Počasi src/app/components/fees-box/fees-box.component.html 4 @@ -1234,7 +1706,7 @@ Medium priority - Srednja prioriteta + Srednje src/app/components/fees-box/fees-box.component.html 10 @@ -1247,7 +1719,7 @@ High priority - Visoka prioriteta + Hitro src/app/components/fees-box/fees-box.component.html 16 @@ -1258,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Najnovejši bloki + + API Service + API Vmesnik - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Prikaži vse » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Najnovejše transakcije - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Znesek - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Omrežnina - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempool velikost - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Nepotrjeno - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - blok - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Pretočnost - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Prilagoditev težavnosti - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1479,6 +1827,7 @@ Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + Začetni potisk: action: 'want', data: ['blocks', ...] za izbiro potisnih podatkov. Razpoložljivo: blocks, mempool-block, live-2h-chart, in stats.Potisk transakcij povezanih z naslovom: 'track-address': '3PbJ...bF9B' za prejem vseh novih transakcij, ki vsebujejo ta naslov v vhodu ali izhodu. Vrne polje transakcij. address-transactions za nove transakcije v mempool-u, in block-transactions za potrjene transakcije v novem bloku. src/app/components/api-docs/api-docs.component.html 19 @@ -1497,6 +1846,7 @@ Returns our currently suggested fees for new transactions. + Vrne trenutno predlagano omrežnino za nove transakcije. src/app/components/api-docs/api-docs.component.html 37 @@ -1506,6 +1856,7 @@ Returns current mempool as projected blocks. + Vrne trenutni mempool, kot projekcijo blokov. src/app/components/api-docs/api-docs.component.html 41 @@ -1525,6 +1876,7 @@ Returns current mempool backlog statistics. + Vrne trenutno statistiko mempoola. src/app/components/api-docs/api-docs.component.html 59 @@ -1534,6 +1886,7 @@ Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + Vrne celoten seznam txid-jev v mempoolu v obliki polja. Vrstni red txid-jev je arbitraren in se ne ujema z bitcoind. src/app/components/api-docs/api-docs.component.html 63 @@ -1543,6 +1896,7 @@ Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + Vrne seznam zadnjih 10 transakcij dodanih v mempool. Vsak objekt transakcije vsebuje naslednja polja: txid, fee, vsize, in value. src/app/components/api-docs/api-docs.component.html 67 @@ -1550,18 +1904,9 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Bloki - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + Vrne stanje potrditve bloka. Razpoložljiva polja: in_best_chain (boolean, false za osirotele bloke, angl. orphaned), next_best (zgoščena vrednost oz. hash naslednjega bloka, na voljo samo za bloke v veljavni verigi). src/app/components/api-docs/api-docs.component.html 89 @@ -1569,6 +1914,7 @@ Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + Vrne seznam transakcij v bloku (do 25 transakcij z začetkomstart_index). Podatki o transakciji ne vsebujejo polja status, saj gre za transakcije istega bloka z istim številom potrditev. src/app/components/api-docs/api-docs.component.html 93 @@ -1576,6 +1922,7 @@ Returns a list of all txids in the block. + Vrne seznam vseh txid-jev v bloku. src/app/components/api-docs/api-docs.component.html 97 @@ -1583,6 +1930,7 @@ Returns the transaction at index :index within the specified block. + Vrne transakcijo z zaporedno številko :index znotraj podanega bloka. src/app/components/api-docs/api-docs.component.html 101 @@ -1590,6 +1938,7 @@ Returns the raw block representation in binary. + Vrne neobdelane podatke o bloku v binarni obliki. src/app/components/api-docs/api-docs.component.html 105 @@ -1597,6 +1946,7 @@ Returns the hash of the block currently at :height. + Vrne zgoščeno vrednost (hash) bloka na višini :height. src/app/components/api-docs/api-docs.component.html 109 @@ -1604,6 +1954,7 @@ Returns the 10 newest blocks starting at the tip or at :start_height if specified. + Vrne 10 najnovejših blokov z najvišjim na začetku ali od višine :start_height, če je podana. src/app/components/api-docs/api-docs.component.html 113 @@ -1611,6 +1962,7 @@ Returns the height of the last block. + Vrne višino zadnjega bloka. src/app/components/api-docs/api-docs.component.html 117 @@ -1618,6 +1970,7 @@ Returns the hash of the last block. + Vrne zgoščeno vrednost (hash) zadnjega bloka. src/app/components/api-docs/api-docs.component.html 121 @@ -1625,6 +1978,7 @@ Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + Vrne podatke o bloku. Razpoložljiva polja: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, in previousblockhash. src/app/components/api-docs/api-docs.component.html 85 @@ -1642,6 +1996,7 @@ Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + Vrne podatke o transakciji. Razpoložljiva polja: txid, version, locktime, size, weight, fee, vin, vout, in status. src/app/components/api-docs/api-docs.component.html 139 @@ -1649,6 +2004,7 @@ Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + Vrne stanje potrditve transakcije. Razpoložljiva polja: confirmed (boolean), block_height (opcijsko), in block_hash (opcijsko). src/app/components/api-docs/api-docs.component.html 143 @@ -1656,6 +2012,7 @@ Returns a transaction serialized as hex. + Vrne transakcijo v šestnajstiški obliki. src/app/components/api-docs/api-docs.component.html 147 @@ -1663,6 +2020,7 @@ Returns a transaction as binary data. + Vrne transakcijo v binarni obliki. src/app/components/api-docs/api-docs.component.html 151 @@ -1670,6 +2028,7 @@ Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + Vrne merkle dokaz o vsebovanosti za transakcijo (angl. merkle inclusion proof), v Electrum blockchain.transaction.get_merkle obliki. src/app/components/api-docs/api-docs.component.html 159 @@ -1677,6 +2036,7 @@ Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + Vrne stanje porabe izhoda transakcije. Razpoložljiva polja: spent (boolean), txid (opcijsko), vin (opcijsko), in status (opcijsko, stanje potrditve transakcije). src/app/components/api-docs/api-docs.component.html 163 @@ -1684,6 +2044,7 @@ Returns the spending status of all transaction outputs. + Vrne stanje porabe vseh izhodov transakcije. src/app/components/api-docs/api-docs.component.html 167 @@ -1691,6 +2052,7 @@ Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + V omrežju objavi neobdelano (raw) transakcijo. Transakcija mora biti podana v telesu zahteve v šestnajstiški obliki. Ob uspehu bo vrnjen txid. src/app/components/api-docs/api-docs.component.html 171 @@ -1698,6 +2060,7 @@ Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + Vrne merkle dokaz o vsebovanosti za transakcijo (angl. merkle inclusion proof), v bitcoind's merkleblock obliki. src/app/components/api-docs/api-docs.component.html 155 @@ -1715,6 +2078,7 @@ Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + Vrne podatke o naslovu. Razpoložljiva polja: address, chain_stats, in mempool_stats. chain,mempool_stats vsebujeta objekt z tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, in spent_txo_sum. src/app/components/api-docs/api-docs.component.html 189 @@ -1722,6 +2086,7 @@ Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + Pridobi zgodovino transakcij za podan naslov/scripthash, urejeno po času, najnovejša na začetku. Vrne do 50 mempool ter prvih 25 potrjenih transakcij. Z uporabo :last_seen_txid je mogoče pridobiti več potrjenih transakcij (glej spodaj). src/app/components/api-docs/api-docs.component.html 193,194 @@ -1729,6 +2094,7 @@ Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + Pridobi zgodovino potrjenih transakcij za podan naslov/scripthash, urejeno po času, najnovejša na začetku. Vrne 25 transakcij na stran. Več jih je mogoče pridobiti z navedbo zadnjega vrnjenega txid-ja. src/app/components/api-docs/api-docs.component.html 197 @@ -1736,6 +2102,7 @@ Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + Pridobi zgodovino nepotrjenih transakcij za podan naslov/scripthash. Vrne do 50 transakcij (brez ostranjevanja, angl. paging). src/app/components/api-docs/api-docs.component.html 201 @@ -1743,6 +2110,7 @@ Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + Vrne seznam neporabljenih izhodov transakcij povezanih z naslovom/scripthash. Razpoložljiva polja: txid, vout, value, in status (stanje potrditve transakcije). Polje valuecommitment lahko nadomešča value. Dodatna polja: asset/assetcommitment, nonce/noncecommitment, surjection_proof, in range_proof. src/app/components/api-docs/api-docs.component.html 205 @@ -1760,6 +2128,7 @@ Returns information about a Liquid asset. + Vrne podatke o Liquid sredstvu. src/app/components/api-docs/api-docs.component.html 223 @@ -1767,6 +2136,7 @@ Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + Vrne transakcije povezane s podanim Liquid sredstvom. Za izvorno sredstvo omrežja, vrne seznam peg in, peg out, in burn transakcij. Za uporabniško izdana sredstva, vrne seznam izdajnih, transakcij ponovne izdaje in burn transakcij. Ne vključuje rednih transakcij prenosa tega sredstva. src/app/components/api-docs/api-docs.component.html 227 @@ -1774,6 +2144,7 @@ Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + Pridobi trenutni znesek v obtoku za podano sredstvo. Za izvorno sredstvo (L-BTC), je izračunan kot [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. Za izdana sredstva pa [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Ni na voljo za sredstva z zaupnim zneskom izdaje. Če je podan /decimal, vrne znesek na število decimalnih mest sredstva natančno. Sicer vrnjeno v osnovnih enotah. src/app/components/api-docs/api-docs.component.html 231 @@ -1791,6 +2162,7 @@ Returns statistics about all Bisq transactions. + Vrne statistične podatke o vseh Bisq transakcijah. src/app/components/api-docs/api-docs.component.html 248 @@ -1798,6 +2170,7 @@ Returns details about a Bisq transaction. + Vrne podrobnosti o Bisq transakciji. src/app/components/api-docs/api-docs.component.html 252 @@ -1805,6 +2178,7 @@ Returns :length of latest Bisq transactions, starting from :index. + Vrne :length zadnjih Bisq transakcij, z začetkom od :index. src/app/components/api-docs/api-docs.component.html 256 @@ -1812,6 +2186,7 @@ Returns all Bisq transactions that exist in a Bitcoin block. + Vrne vse Bisq transakcije vsebovane v Bitcoin bloku. src/app/components/api-docs/api-docs.component.html 260 @@ -1819,6 +2194,7 @@ Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + Vrne :length Bitcoin blokov, ki vsebujejo Bisq transakcije, z začetkom od :index. src/app/components/api-docs/api-docs.component.html 264 @@ -1826,6 +2202,7 @@ Returns the most recently processed Bitcoin block height processed by Bisq. + Vrne višino najnovejšega Bitcoin bloka, ki vsebuje Bisq transakcije. src/app/components/api-docs/api-docs.component.html 268 @@ -1833,292 +2210,192 @@ Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + Vrne vse Bisq transakcije povezane z Bitcoin naslovom, pred naslovom se uporabi predpono 'B'. src/app/components/api-docs/api-docs.component.html 272 - - Address - Naslov + + Latest blocks + Najnovejši bloki - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Skupaj prejeto + + TXs + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Skupaj poslano - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Stanje - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - od - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Napaka pri nalaganju podatkov naslova. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - pravkar - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - pred s - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - pred min - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - pred h - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - pred h - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - pred d - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - pred d - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - pred tednom - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - pred tedni - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - pred mesecem - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - pred meseci - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - pred letom - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - pred leti - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Prikaži vse » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Najnovejše transakcije + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Znesek + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Omrežnina + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Razširi + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Strni + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempool velikost + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Nepotrjeno + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + blok + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + blokov + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Pretočnost + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Prilagoditev težavnosti + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Kopirano! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Ta transakcija je prihranila % omrežnine z uporabo native SegWit-Bech32. + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2138,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Ta transakcija je prihranila % omrežnine z uporabo SegWit in bi lahko dodatnih % s popolno nadgradnjo na native SegWit-Bech32. + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Ta transakcija bi lahko prihranila % omrežnine z nadgradnjo na native SegWit-Bech32 ali % z nadgradnjo na SegWit-P2SH. + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Ta transakcija omogoča povečanje omrežnine, Replace-By-Fee (RBF). + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2158,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Samo ~ sat/vB je bilo potrebno za vključitev v ta blok. + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x -krat preplačano @@ -2178,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Pravkar + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + pred letom + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + pred mesecem + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + pred tednom + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + pred d + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + pred h + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + pred min + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + pred min + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + pred s + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + pred s + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + pred leti + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + pred meseci + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + pred tedni + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + pred d + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + pred h + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + pred min + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + pred min + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + pred s + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + pred s + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ Statistika + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Obstoječi znesek + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Skupni znesek + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Uničeno (burned) + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Naslovi + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Neporabljeni TXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Porabljeni TXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Tečaj + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Tržna kapitalizacija + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Naslov: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Blok : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Izberi vse + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Počisti izbiro + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Potrjeno + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.sv.xlf b/frontend/src/locale/messages.sv.xlf index 01f4f38d6..4dc81667f 100644 --- a/frontend/src/locale/messages.sv.xlf +++ b/frontend/src/locale/messages.sv.xlf @@ -1,6 +1,18 @@ + + Transaction: + Transaktion: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Transaktion @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Detaljer src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Storlek src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size - - Weight - Weight + + Virtual size + Virtuell storlek src/app/components/transaction/transaction.component.html - 182 + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Viktenheter + + src/app/components/transaction/transaction.component.html + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - block + + block + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Transaktionen hittades inte src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ Väntar på den att dyka upp i mempoolen... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Konfidentiell + + blocks + block - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + Konfidentiell + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis Genesis @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + Baserat på en genomsnittlig native segwit-transaktion på 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Avgifter totalt @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +789,77 @@ block.error.loading-block-data + + Address: + Adress: + + src/app/components/address/address.component.ts + 64 + + + + Address + Adress + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Totalt mottaget + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Totalt skickat + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Balans + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + av transaktion + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + av transaktioner + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Kunde inte ladda addressdata. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address TXID, blockhöjd, hash eller address @@ -707,6 +869,52 @@ search-form.searchbar-placeholder + + Search + Sök + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Block + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Block + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Höjd @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Fylld - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig av @@ -811,13 +1030,39 @@ blocks - blocks + block src/app/components/mempool-blocks/mempool-blocks.component.html 24 shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Om + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Frånkopplad @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Instrumentbräda + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Grafer + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV-vy + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Om projektet @@ -923,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Navigera till + + Navigate to https://mempool.space/about to sponsor + Navigera till https://mempool.space/about för att sponsra src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - för att sponsra - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1033,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Invertera + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Transaktion vBytes per sekund (vB/s) @@ -1092,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Nästa block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Stack med mempoolblock + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Mempoolblock + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Avgiftspann @@ -1110,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Namn @@ -1204,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Peg-in/ut och burn-transaktioner + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Utfärdande och burn-transaktioner + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Fel vid laddandet av asset data @@ -1213,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Registrerade assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Sök asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Rensa + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Namn + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Utfärdardomän + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Utfärdande TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Fel vid inläsning av assets-data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Identiferad av utbetalningsadressen: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Identifierad av Coinbase-taggen: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Okänd @@ -1261,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Senaste blocken + + API Service + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Visa alla » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Senaste transaktionerna - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Belopp - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Avgift - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempoolstorlek - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Obekräftade - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - block - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Inkommande transaktioner - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Svårighetsjustering - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1559,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Block - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Returnerar bekräftelsestatus för ett block. Tillgängliga fält: in_best_chain (boolean, false för orphanblock), next_best (hash för nästa block, endast tillgängligt för block i den bästa kedjan). @@ -1881,287 +2216,186 @@ 272 - - Address - Address + + Latest blocks + Senaste blocken - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Totalt mottaget + + TXs + TXs - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Totalt skickat - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Balans - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - av - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Kunde inte ladda addressdata. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - Just nu - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - sek sedan - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - sek sedan - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - sekund sedan - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - sekunder sedan - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - min sedan - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - min sedan - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - minut sedan - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - minuter sedan - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - timme sedan - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - timmar sedan - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - dag sedan - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - dagar sedan - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - vecka sedan - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - veckor sedan - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - månad sedan - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - månader sedan - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - år sedan - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - år sedan - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Visa alla » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Senaste transaktionerna + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Belopp + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Avgift + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Expandera + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Kollapsa + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempoolstorlek + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Obekräftade + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Inkommande transaktioner + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Svårighetsjustering + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Kopierad! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Denna transaktion sparade % på avgifter genom att använda native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2181,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Denna transaktion sparade % på avgifter genom att använda SegWit och kunde spara % mer genom att helt uppgradera till native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Denna transaktion kan spara % på avgifter genom att uppgradera till native SegWit-Bech32 eller % genom att uppgradera till SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Denna transaktion stödjer Replace-By-Fee (RBF) som möjliggör ökning av avgiften + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2201,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Endast ~ sat/vB behövdes för att komma med i detta block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Överbetalad x @@ -2221,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Just nu + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + år sedan + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + månad sedan + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + veckor sedan + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + dag sedan + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + timmar sedan + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + min sedan + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + minut sedan + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + sek sedan + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + sekund sedan + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + år sedan + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + månad sedan + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + veckor sedan + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + dagar sedan + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + timmar sedan + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + min sedan + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + minuter sedan + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + sek sedan + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + sekunder sedan + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ-statistik + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Befintligt antal + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Myntat antal + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Antal brända + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Adresser + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Ospenderade TXO:er + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Spenderade TXO:er + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Pris + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Marknadsvärde + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Adress: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Välj alla + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Avmarkera alla + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Bekräftad + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.tr.xlf b/frontend/src/locale/messages.tr.xlf index f433cc015..0b2cebb0e 100644 --- a/frontend/src/locale/messages.tr.xlf +++ b/frontend/src/locale/messages.tr.xlf @@ -1,6 +1,17 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction İşlem @@ -8,6 +19,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +42,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +60,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +86,7 @@ Giriş ve Çıkışlar src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +96,7 @@ Detaylar src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +106,7 @@ Detaylar src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +115,26 @@ Boyut src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Ağırlık src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +158,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +172,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +186,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +270,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +290,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +324,29 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - blok + + block src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. İşlem bulunamadı. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +355,17 @@ Mempool'da (bekleyen işlem havuzu) bekliyor. src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Gizli + + blocks - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -475,6 +500,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -527,6 +556,34 @@ transactions-list.unconfirmed + + Confidential + Gizli + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -572,6 +629,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -609,6 +674,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Toplam ücret @@ -673,10 +762,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -688,6 +773,74 @@ block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + Adres + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Toplam alınan + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Toplam gönderilen + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Cari toplam + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Adres datası yüklenirken hata oluştu. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address @@ -696,6 +849,50 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Bloklar + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Yükseklik @@ -707,6 +904,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -729,25 +934,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Doldu - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of Çoklu imzanın   bölü @@ -807,6 +1015,30 @@ shared.blocks + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Çevrimdışı @@ -833,6 +1065,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Proje hakkında @@ -911,34 +1195,24 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Geç + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - Sponsora - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1021,6 +1295,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) Saniye başı vBytes (vB/s) @@ -1080,6 +1362,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Ücret aralığı @@ -1098,6 +1401,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name Isim @@ -1192,6 +1502,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Data seti yüklerken hata oldu. @@ -1201,6 +1527,112 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Bilinmeyen @@ -1249,138 +1681,13 @@ fees-box.high-priority - - Latest blocks - Son bloklar + + API Service - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - İşlemler - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Hepsini gör » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Son işlemler - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - İşlemID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Miktar - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Ücret - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Mempool (bekleyen işlem havuzu) boyutu - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Onaylanmadı - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - blok - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Gelen işlemler - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vb/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Zorluk ayarı - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1544,16 +1851,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Bloklar - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1841,268 +2138,180 @@ 272 - - Address - Adres + + Latest blocks + Son bloklar - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Toplam alınan + + TXs + İşlemler - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Toplam gönderilen - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Cari toplam - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - nun - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Adres datası yüklenirken hata oluştu. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Hepsini gör » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Son işlemler + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + İşlemID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Miktar + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Ücret + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Mempool (bekleyen işlem havuzu) boyutu + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Onaylanmadı + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Gelen işlemler + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vb/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Zorluk ayarı + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2122,6 +2331,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2142,6 +2375,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x x kadar fazla ödendi @@ -2162,6 +2407,284 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.uk.xlf b/frontend/src/locale/messages.uk.xlf index 62f5eb1f8..ff2c4857e 100644 --- a/frontend/src/locale/messages.uk.xlf +++ b/frontend/src/locale/messages.uk.xlf @@ -1,6 +1,18 @@ + + Transaction: + Транзакція: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction Транзакція @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ Входи і Виходи src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ Деталі src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ Деталі src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ Розмір src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + Віртуальний розмір + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight Вага src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ sat src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - блок + + block + блок src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. Транзакція не знайдена. src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ Чекаємо її появи в мемпулі... src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - Конфіденційна + + blocks + блоки - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -483,6 +512,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -535,6 +568,35 @@ transactions-list.unconfirmed + + Confidential + Конфіденційна + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + Блок : + + src/app/components/block/block.component.ts + 98 + + Genesis Генезис @@ -582,6 +644,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -619,6 +689,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + На основі середнього розміру segwit транзакції в 140 vByte + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees Всього комісій @@ -683,10 +778,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -698,6 +789,77 @@ block.error.loading-block-data + + Address: + Адреса: + + src/app/components/address/address.component.ts + 64 + + + + Address + Адреса + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + Всього отримано + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + Всього надіслано + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + Баланс + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + з транзакції + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + з транзакцій + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + Не вдалося завантажити дані про адресу. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address TXID, висота блоку, хеш або адреса @@ -707,6 +869,52 @@ search-form.searchbar-placeholder + + Search + Пошук + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + Блоки + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + Блоки + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height Висота @@ -718,6 +926,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -740,25 +956,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - Заповнений - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of multisig з @@ -818,6 +1037,32 @@ shared.blocks + + API + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + Про + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline Офлайн @@ -845,6 +1090,63 @@ master-page.layer2-networks-header + + Stats + Статистика + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + Панель + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + Графіки + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV перегляд + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + Активи + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project Про проект @@ -923,34 +1225,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - Перейти до + + Navigate to https://mempool.space/about to sponsor + Перейдіть до https://mempool.space/about щоб спонсорувати src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - спонсорувати - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1033,6 +1326,15 @@ statistics.memory-by-vBytes + + Invert + Інвертувати + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) vBytes за секунду транзакції (vB/s) @@ -1092,6 +1394,30 @@ shared.vbytes-per-second + + Next block + Наступний блок + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + Набір з блоків мемпулу + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + Блок мемпулу + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span Діапазон комісії @@ -1110,6 +1436,14 @@ mempool-block.total-fees + + Asset: + Актив: + + src/app/components/asset/asset.component.ts + 73 + + Name Назва @@ -1204,6 +1538,24 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + Транзакції закріплення/розкріплення та спалення + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + Транзакції випуску та спалення + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. Не вдалося завантажити дані про актив. @@ -1213,6 +1565,123 @@ asset.error.loading-asset-data + + Registered assets + Зареєстровані активи + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + Шукати актив + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + Очистити + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + Назва + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + Тікер + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + Домен емітента + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + ID активу + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + Емісійна транзакція + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + Не вдалося завантажити дані про активи. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + Ідентифікований за адресою виплати: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + Ідентифікований за coinbase тегом: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown Невідомо @@ -1261,138 +1730,14 @@ fees-box.high-priority - - Latest blocks - Останні блоки + + API Service + Сервіс API - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - Транзакцій - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - Дивитись всі » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - Останні транзакції - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - Сума - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - Комісія - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - USD - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - Розмір мемпулу - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - Непідтверджені - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - блок - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - Вхідні транзакції - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - vB/s - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - Регулювання складності - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1559,16 +1904,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - Блоки - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). Повертає статус блоку. Доступні поля: in_best_chain(boolean, false для осиротілих блоків), next_best (хеш наступного блоку, доступний тільки для блоків в найкращому ланцюжці). @@ -1843,7 +2178,7 @@ Returns :length of latest Bisq transactions, starting from :index. - Повертає :length останній транзакцій Bisq починаючи з :index. + Повертає :length останніх транзакцій Bisq починаючи з :index. src/app/components/api-docs/api-docs.component.html 256 @@ -1881,287 +2216,186 @@ 272 - - Address - Адреса + + Latest blocks + Останні блоки - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - Всього отримано + + TXs + Транзакцій - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - Всього надіслано - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - Баланс - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - з - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - Не вдалося завантажити дані про адресу. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - щойно - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - сек тому - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - сек тому - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - секунду тому - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - секунд тому - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - хв тому - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - хв тому - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - хвилину тому - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - хвилин тому - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - годину тому - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - годин тому - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - день тому - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - днів тому - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - тиждень тому - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - тижні тому - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - місяць тому - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - місяців тому - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - рік тому - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - років тому - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + Дивитись всі » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + Останні транзакції + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + Сума + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + Комісія + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + Розгорнути + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + Згорнути + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + Розмір мемпулу + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + Непідтверджені + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + блок + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + блоки + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + Вхідні транзакції + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + Регулювання складності + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + Скопійовано! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + Ця транзакція зекономила % на комісії використовуючи рідний SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2181,6 +2415,33 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + Ця транзакція зекономила % на комісії використовуючи SegWit і могла б зекономити % використовуючи рідний SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + Ця транзакція могла б зекономити % на комісії використовуючи рідний SegWit-Bech32 або % використовуючи SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + Ця транзакція підтримує Replace-By-Fee (RBF) що дозволяє збільшення комісії + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF RBF @@ -2201,6 +2462,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + Для того щоб потрапити в цей блок було достатньо ~ sat/vB + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x Переплата x @@ -2221,6 +2495,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + Щойно + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + рік тому + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + місяць тому + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + тиждень тому + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + день тому + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + годину тому + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + хв тому + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + хвилину тому + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + сек тому + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + секунду тому + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + років тому + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + місяців тому + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + тижнів тому + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + днів тому + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + годин тому + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + хв тому + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + хвилин тому + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + сек тому + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + секунд тому + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + Статистика BSQ + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + Всього + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + Створено + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + Спалено + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + Адреси + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + Невитрачені TXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + Витрачені TXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + Ціна + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + Ринкова капіталізація + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + Адреса: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + Блок : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + Фільтрувати + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + Обрати всі + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + Скасувати вибір усіх + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + Підтверджена + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/frontend/src/locale/messages.vi.xlf b/frontend/src/locale/messages.vi.xlf new file mode 100644 index 000000000..1be90c88f --- /dev/null +++ b/frontend/src/locale/messages.vi.xlf @@ -0,0 +1,2575 @@ + + + + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + + + Transaction + Giao dịch + + src/app/components/transaction/transaction.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + + shared.transaction + + + This transaction has been replaced by: + Giao dịch này đã được thay thế bằng: + + src/app/components/transaction/transaction.component.html + 5 + + RBF replacement + transaction.rbf.replacement + + + confirmation + xác nhận + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction singular confirmation count + shared.confirmation-count.singular + + + confirmations + xác nhận + + src/app/components/transaction/transaction.component.html + 15 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + + Transaction plural confirmation count + shared.confirmation-count.plural + + + Unconfirmed + Chưa xác nhận + + src/app/components/transaction/transaction.component.html + 18 + + Transaction unconfirmed state + transaction.unconfirmed + + + Inputs & Outputs + Đầu vào & Đầu ra + + src/app/components/transaction/transaction.component.html + 164 + + Transaction inputs and outputs + transaction.inputs-and-outputs + + + Details + Chi tiết + + src/app/components/transaction/transaction.component.html + 166 + + Transaction Details + transaction.details + + + Details + Chi tiết + + src/app/components/transaction/transaction.component.html + 172 + + transaction.details + + + Size + Kích thước + + src/app/components/transaction/transaction.component.html + 177 + + Transaction Size + transaction.size + + + Virtual size + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + + + Weight + Cân nặng + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Weight + transaction.weight + + + Timestamp + Dấu thời gian + + src/app/components/transaction/transaction.component.html + 42 + + Transaction Timestamp + transaction.timestamp + + + Fee + Chi phí + + src/app/components/transaction/transaction.component.html + 75 + + + src/app/components/transaction/transaction.component.html + 148 + + Transaction fee + transaction.fee + + + Fee per vByte + Phí mỗi vByte + + src/app/components/transaction/transaction.component.html + 79 + + + src/app/components/transaction/transaction.component.html + 152 + + Transaction fee + transaction.fee-per-vbyte + + + sat/vB + + src/app/components/transaction/transaction.component.html + 81 + + + src/app/components/transaction/transaction.component.html + 153 + + + src/app/components/transactions-list/transactions-list.component.html + 196 + + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 8 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 11 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 10 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 13 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + + src/app/dashboard/dashboard.component.html + 117 + + sat/vB + shared.sat-vbyte + + + Included in block + Bao gồm trong khối + + src/app/components/transaction/transaction.component.html + 51 + + Transaction included in block + transaction.included-in-block + + + Confirmed + Đã xác nhận + + src/app/components/transaction/transaction.component.html + 58 + + Transaction Confirmed state + transaction.confirmed + + + After + Sau + + src/app/components/transaction/transaction.component.html + 59 + + Transaction confirmed after + transaction.confirmed.after + + + Features + Điểm đặc trưng + + src/app/components/transaction/transaction.component.html + 63 + + + src/app/components/transaction/transaction.component.html + 136 + + Transaction features + transaction.features + + + ETA + + src/app/components/transaction/transaction.component.html + 115 + + Transaction ETA + transaction.eta + + + sat + + src/app/components/transaction/transaction.component.html + 149 + + Transaction Fee sat + transaction.fee.sat + + + First seen + Lần đầu tiên nhìn thấy + + src/app/components/transaction/transaction.component.html + 109 + + Transaction first seen + transaction.first-seen + + + In several hours (or more) + Trong vài giờ (hoặc hơn) + + src/app/components/transaction/transaction.component.html + 122 + + Transaction ETA in several hours or more + transaction.eta.in-several-hours + + + minutes + phút + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + Transaction Minutes + transaction.minutes + + + block + + src/app/components/transaction/transaction.component.html + 126 + + + src/app/components/transaction/transaction.component.html + 129 + + shared.block + + + Transaction not found. + Không tìm thấy giao dịch. + + src/app/components/transaction/transaction.component.html + 273 + + transaction.error.transaction-not-found + + + Waiting for it to appear in the mempool... + Đang đợi nó xuất hiện trong mempool ... + + src/app/components/transaction/transaction.component.html + 274 + + transaction.error.waiting-for-it-to-appear + + + blocks + + src/app/components/transaction/transaction.component.html + 289 + + shared.blocks + + + Coinbase + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.coinbase + + + (Newly Generated Coins) + (Coin mới được tạo) + + src/app/components/transactions-list/transactions-list.component.html + 39 + + transactions-list.newly-generated-coins + + + Peg-in + + src/app/components/transactions-list/transactions-list.component.html + 41 + + transactions-list.peg-in + + + nSequence + + src/app/components/transactions-list/transactions-list.component.html + 92 + + transactions-list.nsequence + + + ScriptSig (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 71 + + ScriptSig (ASM) + transactions-list.scriptsig.asm + + + ScriptSig (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 75 + + ScriptSig (HEX) + transactions-list.scriptsig.hex + + + Witness + + src/app/components/transactions-list/transactions-list.component.html + 80 + + transactions-list.witness + + + P2SH redeem script + + src/app/components/transactions-list/transactions-list.component.html + 84 + + transactions-list.p2sh-redeem-script + + + P2WSH witness script + + src/app/components/transactions-list/transactions-list.component.html + 88 + + transactions-list.p2wsh-witness-script + + + Previous output script + Tập lệnh đầu ra trước đó + + src/app/components/transactions-list/transactions-list.component.html + 96 + + transactions-list.previous-output-script + + + Load all + Tải tất cả + + src/app/components/transactions-list/transactions-list.component.html + 106 + + + src/app/components/transactions-list/transactions-list.component.html + 186 + + transactions-list.load-all + + + Peg-out to + + src/app/components/transactions-list/transactions-list.component.html + 125 + + transactions-list.peg-out-to + + + ScriptPubKey (ASM) + + src/app/components/transactions-list/transactions-list.component.html + 168 + + ScriptPubKey (ASM) + transactions-list.scriptpubkey.asm + + + ScriptPubKey (HEX) + + src/app/components/transactions-list/transactions-list.component.html + 172 + + ScriptPubKey (HEX) + transactions-list.scriptpubkey.hex + + + Type + Kiểu + + src/app/components/transactions-list/transactions-list.component.html + 164 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + + transactions-list.vout.scriptpubkey-type + + + data + dữ liệu + + src/app/components/transactions-list/transactions-list.component.html + 176 + + transactions-list.vout.scriptpubkey-type.data + + + sat + + src/app/components/transactions-list/transactions-list.component.html + 196 + + sat + shared.sat + + + confirmation + xác nhận + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.singular + + + confirmations + xác nhận + + src/app/components/transactions-list/transactions-list.component.html + 201 + + shared.confirmation-count.plural + + + Unconfirmed + + src/app/components/transactions-list/transactions-list.component.html + 203 + + + src/app/components/footer/footer.component.html + 16 + + transactions-list.unconfirmed + + + Confidential + Bảo mật + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + + + Genesis + + src/app/components/block/block.component.html + 4 + + block.genesis + + + Block + + src/app/components/block/block.component.html + 4 + + block.block + + + Hash + + src/app/components/block/block.component.html + 18 + + block.hash + + + Timestamp + + src/app/components/block/block.component.html + 22 + + + src/app/components/latest-blocks/latest-blocks.component.html + 10 + + block.timestamp + + + Size + + src/app/components/block/block.component.html + 31 + + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + + + src/app/dashboard/dashboard.component.html + 81 + + block.size + + + Weight + + src/app/components/block/block.component.html + 35 + + block.weight + + + Miner + + src/app/components/block/block.component.html + 74 + + block.miner + + + Median fee + + src/app/components/block/block.component.html + 45 + + + src/app/components/mempool-block/mempool-block.component.html + 16 + + block.median-fee + + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + + + Total fees + + src/app/components/block/block.component.html + 50 + + + src/app/components/block/block.component.html + 65 + + Total fees in a block + block.total-fees + + + Subsidy + fees: + + src/app/components/block/block.component.html + 57 + + + src/app/components/block/block.component.html + 69 + + Total subsidy and fees in a block + block.subsidy-and-fees + + + transaction + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + shared.transaction-count.singular + + + transactions + + src/app/components/block/block.component.html + 85 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 14 + + + src/app/components/blockchain-blocks/blockchain-blocks.component.html + 16 + + + src/app/components/footer/footer.component.html + 16 + + shared.transaction-count.plural + + + Error loading block data. + + src/app/components/block/block.component.html + 165 + + block.error.loading-block-data + + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + + + TXID, block height, hash or address + + src/app/components/search-form/search-form.component.html + 4 + + search-form.searchbar-placeholder + + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + + + Height + + src/app/components/latest-blocks/latest-blocks.component.html + 9 + + + src/app/dashboard/dashboard.component.html + 78 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + + latest-blocks.height + + + Mined + + src/app/components/latest-blocks/latest-blocks.component.html + 11 + + + src/app/dashboard/dashboard.component.html + 79 + + latest-blocks.mined + + + Transactions + + src/app/components/latest-blocks/latest-blocks.component.html + 12 + + + src/app/components/master-page/master-page.component.html + 29 + + + src/app/components/mempool-block/mempool-block.component.html + 28 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + + latest-blocks.transactions + + + multisig of + + src/app/components/address-labels/address-labels.component.html + 1 + + address-labels.multisig + + + Layer Peg-out + + src/app/components/address-labels/address-labels.component.html + 2 + + address-labels.upper-layer-peg-out + + + In + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + Block Frequency + mempool-blocks.eta-of-next-block + + + minute + + src/app/components/mempool-blocks/mempool-blocks.component.html + 17 + + shared.minute + + + minutes + + src/app/components/mempool-blocks/mempool-blocks.component.html + 20 + + shared.minutes + + + blocks + + src/app/components/mempool-blocks/mempool-blocks.component.html + 24 + + shared.blocks + + + API + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + + + Offline + + src/app/components/master-page/master-page.component.html + 7 + + master-page.offline + + + Reconnecting... + + src/app/components/master-page/master-page.component.html + 8 + + master-page.reconnecting + + + Layer 2 Networks + + src/app/components/master-page/master-page.component.html + 19 + + master-page.layer2-networks-header + + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + + + About the project + + src/app/components/about/about.component.html + 13 + + about.about-the-project + + + The mempool open-source project aims to implement a high quality explorer and visualization website for the entire Bitcoin ecosystem, without distractions like altcoins, advertising, or third-party trackers. + + src/app/components/about/about.component.html + 16 + + + + Maintainers + + src/app/components/about/about.component.html + 22 + + about.maintainers + + + Development + + src/app/components/about/about.component.html + 32 + + about.development + + + Operations + + src/app/components/about/about.component.html + 40 + + about.operations + + + Sponsors ❤️ + + src/app/components/about/about.component.html + 47 + + about.sponsors.withHeart + + + Become a sponsor ❤️ + + src/app/components/about/about.component.html + 63 + + about.become-a-sponsor + + + Request invoice + + src/app/components/about/about.component.html + 85 + + about.sponsor.request-invoice + + + Terms of Service + + src/app/components/about/about.component.html + 206 + + + src/app/components/api-docs/api-docs.component.html + 284 + + + src/app/dashboard/dashboard.component.html + 143 + + Terms of Service + shared.terms-of-service + + + Navigate to https://mempool.space/about to sponsor + + src/app/components/about/about.component.html + 65 + + about.navigate-to-sponsor + + + Amount required + + src/app/components/about/about.component.html + 82 + + about.sponsor.amount-required + + + Minimum amount is 0.001 BTC + + src/app/components/about/about.component.html + 83 + + about.sponsor.minimum-amount + + + If you donate 0.01 BTC or more, your profile photo will be added to the list of sponsors above :) + + src/app/components/about/about.component.html + 92 + + about.sponsor.description + + + Waiting for transaction... + + src/app/components/about/about.component.html + 170 + + about.sponsor.waiting-for-transaction + + + Donation confirmed! + + src/app/components/about/about.component.html + 175 + + about.sponsor.donation-confirmed + + + Thank you! + + src/app/components/about/about.component.html + 175 + + 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... + + src/app/components/statistics/statistics.component.html + 6 + + statistics.loading-graphs + + + Mempool by vBytes (sat/vByte) + + src/app/components/statistics/statistics.component.html + 16 + + statistics.memory-by-vBytes + + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + + + Transaction vBytes per second (vB/s) + + src/app/components/statistics/statistics.component.html + 57 + + statistics.transaction-vbytes-per-second + + + Waiting for blocks... + + src/app/components/blockchain/blockchain.component.html + 11 + + Loading text + blockchain.waiting-for-blocks + + + Tx vBytes per second: + + src/app/components/footer/footer.component.html + 5 + + footer.tx-vbytes-per-second + + + Mempool size: + + src/app/components/footer/footer.component.html + 20 + + footer.mempool-size + + + Backend is synchronizing + + src/app/components/footer/footer.component.html + 7 + + + src/app/dashboard/dashboard.component.html + 181 + + footer.backend-is-synchronizing + + + vBytes/s + + src/app/components/footer/footer.component.html + 11 + + shared.vbytes-per-second + + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + + + Fee span + + src/app/components/mempool-block/mempool-block.component.html + 20 + + mempool-block.fee-span + + + Total fees + + src/app/components/mempool-block/mempool-block.component.html + 24 + + mempool-block.total-fees + + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + + + Name + + src/app/components/asset/asset.component.html + 20 + + Liquid Asset name + asset.name + + + Precision + + src/app/components/asset/asset.component.html + 24 + + Liquid Asset precision + asset.precision + + + Burned amount + + src/app/components/asset/asset.component.html + 55 + + Liquid Asset burned amount + asset.burned-amount + + + Issuer + + src/app/components/asset/asset.component.html + 28 + + Liquid Asset issuer + asset.issuer + + + Issuance TX + + src/app/components/asset/asset.component.html + 32 + + Liquid Asset issuance TX + asset.issuance-tx + + + Pegged in + + src/app/components/asset/asset.component.html + 43 + + Liquid Asset pegged-in amount + asset.pegged-in + + + Pegged out + + src/app/components/asset/asset.component.html + 47 + + Liquid Asset pegged-out amount + asset.pegged-out + + + Issued amount + + src/app/components/asset/asset.component.html + 51 + + Liquid Asset issued amount + asset.issued-amount + + + Circulating amount + + src/app/components/asset/asset.component.html + 59 + + + src/app/components/asset/asset.component.html + 63 + + Liquid Asset circulating amount + asset.circulating-amount + + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + + + Error loading asset data. + + src/app/components/asset/asset.component.html + 132 + + asset.error.loading-asset-data + + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + + + Unknown + + src/app/components/miner/miner.component.html + 10 + + miner.tag.unknown-miner + + + Low priority + + src/app/components/fees-box/fees-box.component.html + 4 + + + src/app/components/fees-box/fees-box.component.html + 27 + + fees-box.low-priority + + + Medium priority + + src/app/components/fees-box/fees-box.component.html + 10 + + + src/app/components/fees-box/fees-box.component.html + 31 + + fees-box.medium-priority + + + High priority + + src/app/components/fees-box/fees-box.component.html + 16 + + + src/app/components/fees-box/fees-box.component.html + 35 + + fees-box.high-priority + + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + + + Websocket + + src/app/components/api-docs/api-docs.component.html + 9 + + API Docs tab for Websocket + api-docs.tab.websocket + + + Endpoint + + src/app/components/api-docs/api-docs.component.html + 14 + + + src/app/components/api-docs/api-docs.component.html + 32 + + + src/app/components/api-docs/api-docs.component.html + 54 + + + src/app/components/api-docs/api-docs.component.html + 80 + + + src/app/components/api-docs/api-docs.component.html + 134 + + + src/app/components/api-docs/api-docs.component.html + 184 + + + src/app/components/api-docs/api-docs.component.html + 218 + + + src/app/components/api-docs/api-docs.component.html + 243 + + API Docs Endpoint + api-docs.shared.endpoint + + + Description + + src/app/components/api-docs/api-docs.component.html + 15 + + + src/app/components/api-docs/api-docs.component.html + 33 + + + src/app/components/api-docs/api-docs.component.html + 55 + + + src/app/components/api-docs/api-docs.component.html + 81 + + + src/app/components/api-docs/api-docs.component.html + 135 + + + src/app/components/api-docs/api-docs.component.html + 185 + + + src/app/components/api-docs/api-docs.component.html + 219 + + + src/app/components/api-docs/api-docs.component.html + 244 + + API Docs Description + api-docs.shared.description + + + Default push: action: 'want', data: ['blocks', ...] to express what you want pushed. Available: blocks, mempool-block, live-2h-chart, and stats.Push transactions related to address: 'track-address': '3PbJ...bF9B' to receive all new transactions containing that address as input or output. Returns an array of transactions. address-transactions for new mempool transactions, and block-transactions for new block confirmed transactions. + + src/app/components/api-docs/api-docs.component.html + 19 + + api-docs.websocket.websocket + + + Fees + + src/app/components/api-docs/api-docs.component.html + 27 + + API Docs tab for Fees + api-docs.tab.fees + + + Returns our currently suggested fees for new transactions. + + src/app/components/api-docs/api-docs.component.html + 37 + + API Docs for /api/v1/fees/recommended + api-docs.fees.recommended + + + Returns current mempool as projected blocks. + + src/app/components/api-docs/api-docs.component.html + 41 + + API Docs for /api/v1/fees/mempool-blocks + api-docs.fees.mempool-blocks + + + Mempool + + src/app/components/api-docs/api-docs.component.html + 49 + + API Docs tab for Mempool + api-docs.tab.mempool + + + Returns current mempool backlog statistics. + + src/app/components/api-docs/api-docs.component.html + 59 + + API Docs for /api/mempool + api-docs.mempool.mempool + + + Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind. + + src/app/components/api-docs/api-docs.component.html + 63 + + API Docs for /api/mempool/txids + api-docs.mempool.txids + + + Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: txid, fee, vsize, and value. + + src/app/components/api-docs/api-docs.component.html + 67 + + API Docs for /api/mempool/recent + api-docs.mempool.recent + + + Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). + + src/app/components/api-docs/api-docs.component.html + 89 + + + + Returns a list of transactions in the block (up to 25 transactions beginning at start_index). Transactions returned here do not have the status field, since all the transactions share the same block and confirmation status. + + src/app/components/api-docs/api-docs.component.html + 93 + + + + Returns a list of all txids in the block. + + src/app/components/api-docs/api-docs.component.html + 97 + + + + Returns the transaction at index :index within the specified block. + + src/app/components/api-docs/api-docs.component.html + 101 + + + + Returns the raw block representation in binary. + + src/app/components/api-docs/api-docs.component.html + 105 + + + + Returns the hash of the block currently at :height. + + src/app/components/api-docs/api-docs.component.html + 109 + + + + Returns the 10 newest blocks starting at the tip or at :start_height if specified. + + src/app/components/api-docs/api-docs.component.html + 113 + + + + Returns the height of the last block. + + src/app/components/api-docs/api-docs.component.html + 117 + + + + Returns the hash of the last block. + + src/app/components/api-docs/api-docs.component.html + 121 + + + + Returns details about a block. Available fields: id, height, version, timestamp, bits, nonce, merkle_root, tx_count, size, weight,proof, and previousblockhash. + + src/app/components/api-docs/api-docs.component.html + 85 + + + + Transactions + + src/app/components/api-docs/api-docs.component.html + 129 + + API Docs tab for Transactions + api-docs.tab.transactions + + + Returns details about a transaction. Available fields: txid, version, locktime, size, weight, fee, vin, vout, and status. + + src/app/components/api-docs/api-docs.component.html + 139 + + + + Returns the confirmation status of a transaction. Available fields: confirmed (boolean), block_height (optional), and block_hash (optional). + + src/app/components/api-docs/api-docs.component.html + 143 + + + + Returns a transaction serialized as hex. + + src/app/components/api-docs/api-docs.component.html + 147 + + + + Returns a transaction as binary data. + + src/app/components/api-docs/api-docs.component.html + 151 + + + + Returns a merkle inclusion proof for the transaction using Electrum's blockchain.transaction.get_merkle format. + + src/app/components/api-docs/api-docs.component.html + 159 + + + + Returns the spending status of a transaction output. Available fields: spent (boolean), txid (optional), vin (optional), and status (optional, the status of the spending tx). + + src/app/components/api-docs/api-docs.component.html + 163 + + + + Returns the spending status of all transaction outputs. + + src/app/components/api-docs/api-docs.component.html + 167 + + + + Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The txid will be returned on success. + + src/app/components/api-docs/api-docs.component.html + 171 + + + + Returns a merkle inclusion proof for the transaction using bitcoind's merkleblock format. + + src/app/components/api-docs/api-docs.component.html + 155 + + + + Addresses + + src/app/components/api-docs/api-docs.component.html + 179 + + API Docs tab for Addresses + api-docs.tab.addresses + + + Returns details about an address. Available fields: address, chain_stats, and mempool_stats. chain,mempool_stats each contain an object with tx_count, funded_txo_count, funded_txo_sum, spent_txo_count, and spent_txo_sum. + + src/app/components/api-docs/api-docs.component.html + 189 + + + + Get transaction history for the specified address/scripthash, sorted with newest first. Returns up to 50 mempool transactions plus the first 25 confirmed transactions. You can request more confirmed transactions using :last_seen_txid (see below). + + src/app/components/api-docs/api-docs.component.html + 193,194 + + + + Get confirmed transaction history for the specified address/scripthash, sorted with newest first. Returns 25 transactions per page. More can be requested by specifying the last txid seen by the previous query. + + src/app/components/api-docs/api-docs.component.html + 197 + + + + Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging). + + src/app/components/api-docs/api-docs.component.html + 201 + + + + Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: txid, vout, value, and status (with the status of the funding tx).There is also a valuecommitment field that may appear in place of value, plus the following additional fields: asset/assetcommitment, nonce/noncecommitment, surjection_proof, and range_proof. + + src/app/components/api-docs/api-docs.component.html + 205 + + + + Assets + + src/app/components/api-docs/api-docs.component.html + 213 + + API Docs tab for Assets + api-docs.tab.assets + + + Returns information about a Liquid asset. + + src/app/components/api-docs/api-docs.component.html + 223 + + + + Returns transactions associated with the specified Liquid asset. For the network's native asset, returns a list of peg in, peg out, and burn transactions. For user-issued assets, returns a list of issuance, reissuance, and burn transactions. Does not include regular transactions transferring this asset. + + src/app/components/api-docs/api-docs.component.html + 227 + + + + Get the current total supply of the specified asset. For the native asset (L-BTC), this is calculated as [chain,mempool]_stats.peg_in_amount - [chain,mempool]_stats.peg_out_amount - [chain,mempool]_stats.burned_amount. For issued assets, this is calculated as [chain,mempool]_stats.issued_amount - [chain,mempool]_stats.burned_amount. Not available for assets with blinded issuances. If /decimal is specified, returns the supply as a decimal according to the asset's divisibility. Otherwise, returned in base units. + + src/app/components/api-docs/api-docs.component.html + 231 + + + + BSQ + + src/app/components/api-docs/api-docs.component.html + 238 + + API Docs tab for BSQ + api-docs.tab.bsq + + + Returns statistics about all Bisq transactions. + + src/app/components/api-docs/api-docs.component.html + 248 + + + + Returns details about a Bisq transaction. + + src/app/components/api-docs/api-docs.component.html + 252 + + + + Returns :length of latest Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 256 + + + + Returns all Bisq transactions that exist in a Bitcoin block. + + src/app/components/api-docs/api-docs.component.html + 260 + + + + Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index. + + src/app/components/api-docs/api-docs.component.html + 264 + + + + Returns the most recently processed Bitcoin block height processed by Bisq. + + src/app/components/api-docs/api-docs.component.html + 268 + + + + Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address. + + src/app/components/api-docs/api-docs.component.html + 272 + + + + Latest blocks + + src/app/dashboard/dashboard.component.html + 75 + + dashboard.latest-blocks + + + TXs + + src/app/dashboard/dashboard.component.html + 80 + + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains + + + SegWit + + src/app/components/tx-features/tx-features.component.html + 1 + + + src/app/components/tx-features/tx-features.component.html + 3 + + + src/app/components/tx-features/tx-features.component.html + 5 + + SegWit + tx-features.tag.segwit + + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + + + RBF + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF + tx-features.tag.rbf + + + Optimal + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 1 + + TX Fee Rating is Optimal + tx-fee-rating.optimal + + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + TX Fee Rating is Warning + tx-fee-rating.overpaid.warning + + + Overpaid x + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + TX Fee Rating is Danger + tx-fee-rating.overpaid.danger + + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + + + + \ No newline at end of file diff --git a/frontend/src/locale/messages.xlf b/frontend/src/locale/messages.xlf index 84a8da4a6..461bad2a5 100644 --- a/frontend/src/locale/messages.xlf +++ b/frontend/src/locale/messages.xlf @@ -2,12 +2,31 @@ + + Transaction: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 3 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -19,20 +38,44 @@ RBF replacement transaction.rbf.replacement - - confirmation + + confirmation src/app/components/transaction/transaction.component.html - 15 + 17 + + + src/app/components/transactions-list/transactions-list.component.html + 205 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 69 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 9 Transaction singular confirmation count shared.confirmation-count.singular - - confirmations + + confirmations src/app/components/transaction/transaction.component.html - 15 + 18 + + + src/app/components/transactions-list/transactions-list.component.html + 206 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 70 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 10 Transaction plural confirmation count shared.confirmation-count.plural @@ -41,7 +84,7 @@ Unconfirmed src/app/components/transaction/transaction.component.html - 18 + 22 Transaction unconfirmed state transaction.unconfirmed @@ -50,7 +93,15 @@ Inputs & Outputs src/app/components/transaction/transaction.component.html - 165 + 168 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 88 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 148 Transaction inputs and outputs transaction.inputs-and-outputs @@ -59,7 +110,7 @@ Details src/app/components/transaction/transaction.component.html - 167 + 170 Transaction Details transaction.details @@ -68,7 +119,19 @@ Details src/app/components/transaction/transaction.component.html - 173 + 176 + + + src/app/components/transaction/transaction.component.html + 252 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 81 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 127 transaction.details @@ -76,16 +139,25 @@ Size src/app/components/transaction/transaction.component.html - 178 + 181 Transaction Size transaction.size + + Virtual size + + src/app/components/transaction/transaction.component.html + 185 + + Transaction Virtual Size + transaction.vsize + Weight src/app/components/transaction/transaction.component.html - 182 + 189 Transaction Weight transaction.weight @@ -94,7 +166,19 @@ Timestamp src/app/components/transaction/transaction.component.html - 42 + 46 + + + src/app/bisq/bisq-block/bisq-block.component.html + 21 + + + src/app/bisq/bisq-block/bisq-block.component.html + 84 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 27 Transaction Timestamp transaction.timestamp @@ -103,24 +187,41 @@ Fee src/app/components/transaction/transaction.component.html - 75 + 79 src/app/components/transaction/transaction.component.html - 149 + 152 Transaction fee transaction.fee + + sat + + src/app/components/transaction/transaction.component.html + 80 + + + src/app/components/transaction/transaction.component.html + 153 + + Transaction Fee sat + transaction.fee.sat + Fee per vByte src/app/components/transaction/transaction.component.html - 79 + 83 src/app/components/transaction/transaction.component.html - 153 + 156 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 62 Transaction fee transaction.fee-per-vbyte @@ -129,15 +230,15 @@ sat/vB src/app/components/transaction/transaction.component.html - 81 + 85 src/app/components/transaction/transaction.component.html - 154 + 157 src/app/components/transactions-list/transactions-list.component.html - 196 + 198 src/app/components/block/block.component.html @@ -159,6 +260,14 @@ src/app/components/blockchain-blocks/blockchain-blocks.component.html 13 + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/mempool-block/mempool-block.component.html + 21 + src/app/components/fees-box/fees-box.component.html 6 @@ -182,7 +291,11 @@ Included in block src/app/components/transaction/transaction.component.html - 51 + 55 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 36 Transaction included in block transaction.included-in-block @@ -191,16 +304,16 @@ Confirmed src/app/components/transaction/transaction.component.html - 58 + 62 Transaction Confirmed state transaction.confirmed - - After + + After src/app/components/transaction/transaction.component.html - 59 + 63 Transaction confirmed after transaction.confirmed.after @@ -209,11 +322,15 @@ Features src/app/components/transaction/transaction.component.html - 63 + 67 src/app/components/transaction/transaction.component.html - 137 + 140 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 42 Transaction features transaction.features @@ -222,25 +339,16 @@ ETA src/app/components/transaction/transaction.component.html - 115 + 119 Transaction ETA transaction.eta - - sat - - src/app/components/transaction/transaction.component.html - 150 - - Transaction Fee sat - transaction.fee.sat - First seen src/app/components/transaction/transaction.component.html - 109 + 113 Transaction first seen transaction.first-seen @@ -249,42 +357,16 @@ In several hours (or more) src/app/components/transaction/transaction.component.html - 122 + 126 Transaction ETA in several hours or more transaction.eta.in-several-hours - - minutes - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 130 - - Transaction Minutes - transaction.minutes - - - block - - src/app/components/transaction/transaction.component.html - 126 - - - src/app/components/transaction/transaction.component.html - 130 - - Transaction ETA (X blocks) - transaction.eta.block - Transaction not found. src/app/components/transaction/transaction.component.html - 266 + 277 transaction.error.transaction-not-found @@ -292,29 +374,63 @@ Waiting for it to appear in the mempool... src/app/components/transaction/transaction.component.html - 267 + 278 transaction.error.waiting-for-it-to-appear - - Confidential + + In ~ minutes - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 293 - src/app/components/transactions-list/transactions-list.component.html - 208 + src/app/components/mempool-blocks/mempool-blocks.component.html + 41 + + Block Frequency (plural) + mempool-blocks.eta-of-next-block-plural + + + In ~ minute + + src/app/components/transaction/transaction.component.html + 295 - src/app/components/asset/asset.component.html - 143 + src/app/components/mempool-blocks/mempool-blocks.component.html + 43 + + Block Frequency + mempool-blocks.eta-of-next-block + + + block + + src/app/components/transaction/transaction.component.html + 297 - src/app/components/address/address.component.html - 112 + src/app/dashboard/dashboard.component.html + 165 - shared.confidential + shared.block + + + blocks + + src/app/components/transaction/transaction.component.html + 298 + + + src/app/components/mempool-blocks/mempool-blocks.component.html + 30 + + + src/app/dashboard/dashboard.component.html + 166 + + shared.blocks Coinbase @@ -406,12 +522,12 @@ src/app/components/transactions-list/transactions-list.component.html - 186 + 188 transactions-list.load-all - - Peg-out to + + Peg-out to src/app/components/transactions-list/transactions-list.component.html 125 @@ -422,7 +538,7 @@ ScriptPubKey (ASM) src/app/components/transactions-list/transactions-list.component.html - 168 + 170 ScriptPubKey (ASM) transactions-list.scriptpubkey.asm @@ -431,7 +547,7 @@ ScriptPubKey (HEX) src/app/components/transactions-list/transactions-list.component.html - 172 + 174 ScriptPubKey (HEX) transactions-list.scriptpubkey.hex @@ -440,7 +556,15 @@ Type src/app/components/transactions-list/transactions-list.component.html - 164 + 166 + + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 25 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 transactions-list.vout.scriptpubkey-type @@ -448,7 +572,7 @@ data src/app/components/transactions-list/transactions-list.component.html - 176 + 178 transactions-list.vout.scriptpubkey-type.data @@ -456,32 +580,16 @@ sat src/app/components/transactions-list/transactions-list.component.html - 196 + 198 sat shared.sat - - confirmation - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.singular - - - confirmations - - src/app/components/transactions-list/transactions-list.component.html - 201 - - shared.confirmation-count.plural - Unconfirmed src/app/components/transactions-list/transactions-list.component.html - 203 + 209 src/app/components/footer/footer.component.html @@ -489,6 +597,33 @@ transactions-list.unconfirmed + + Confidential + + src/app/components/transactions-list/transactions-list.component.html + 214 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + + src/app/components/block/block.component.ts + 98 + + Genesis @@ -503,6 +638,10 @@ src/app/components/block/block.component.html 4 + + src/app/bisq/bisq-block/bisq-block.component.html + 4 + block.block @@ -511,6 +650,14 @@ src/app/components/block/block.component.html 18 + + src/app/bisq/bisq-block/bisq-block.component.html + 17 + + + src/app/bisq/bisq-block/bisq-block.component.html + 80 + block.hash @@ -531,6 +678,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -565,6 +720,30 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees @@ -591,43 +770,51 @@ Total subsidy and fees in a block block.subsidy-and-fees - - transaction + + transaction src/app/components/block/block.component.html - 85 + 87 src/app/components/mempool-blocks/mempool-blocks.component.html - 14 + 16 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 16 + 18 + + + src/app/bisq/bisq-address/bisq-address.component.html + 48 + + + src/app/bisq/bisq-block/bisq-block.component.html + 49 shared.transaction-count.singular - - transactions + + transactions src/app/components/block/block.component.html - 85 + 88 src/app/components/mempool-blocks/mempool-blocks.component.html - 14 + 17 src/app/components/blockchain-blocks/blockchain-blocks.component.html - 16 + 19 - src/app/components/footer/footer.component.html - 16 + src/app/bisq/bisq-address/bisq-address.component.html + 49 - src/app/components/address/address.component.html - 46 + src/app/bisq/bisq-block/bisq-block.component.html + 50 shared.transaction-count.plural @@ -635,10 +822,93 @@ Error loading block data. src/app/components/block/block.component.html - 165 + 169 block.error.loading-block-data + + Address: + + src/app/components/address/address.component.ts + 64 + + + + Address + + src/app/components/address/address.component.html + 2 + + + src/app/bisq/bisq-address/bisq-address.component.html + 2 + + shared.address + + + Total received + + src/app/components/address/address.component.html + 20 + + + src/app/bisq/bisq-address/bisq-address.component.html + 20 + + address.total-received + + + Total sent + + src/app/components/address/address.component.html + 24 + + + src/app/bisq/bisq-address/bisq-address.component.html + 24 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 14 + + 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 + + X of X Address Transaction + + + of transactions + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address @@ -647,6 +917,49 @@ search-form.searchbar-placeholder + + Search + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height @@ -657,6 +970,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -677,24 +998,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of @@ -711,42 +1036,29 @@ address-labels.upper-layer-peg-out - - In + + API - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 + src/app/components/master-page/master-page.component.html + 56 - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - Block Frequency - mempool-blocks.eta-of-next-block - - - minute - - src/app/components/mempool-blocks/mempool-blocks.component.html - 17 - - shared.minute - - - minutes - - src/app/components/mempool-blocks/mempool-blocks.component.html - 20 - - shared.minutes - - - blocks - - src/app/components/mempool-blocks/mempool-blocks.component.html + src/app/components/api-docs/api-docs.component.ts 24 - shared.blocks + master-page.api + + + About + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about Offline @@ -772,6 +1084,58 @@ master-page.layer2-networks-header + + Stats + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project @@ -852,21 +1216,13 @@ Terms of Service shared.terms-of-service - - Navigate to + + Navigate to https://mempool.space/about to sponsor src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -940,6 +1296,14 @@ statistics.memory-by-vBytes + + Invert + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) @@ -965,6 +1329,14 @@ footer.tx-vbytes-per-second + + transactions + + src/app/components/footer/footer.component.html + 16 + + shared.transactions + Mempool size: @@ -981,7 +1353,7 @@ src/app/dashboard/dashboard.component.html - 181 + 183 footer.backend-is-synchronizing @@ -993,6 +1365,27 @@ shared.vbytes-per-second + + Next block + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span @@ -1009,6 +1402,13 @@ mempool-block.total-fees + + Asset: + + src/app/components/asset/asset.component.ts + 73 + + Name @@ -1078,6 +1478,10 @@ src/app/components/asset/asset.component.html 51 + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 15 + Liquid Asset issued amount asset.issued-amount @@ -1094,6 +1498,22 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. @@ -1102,6 +1522,112 @@ asset.error.loading-asset-data + + Registered assets + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + + src/app/components/miner/miner.component.ts + 52 + + Unknown @@ -1162,7 +1688,7 @@ src/app/dashboard/dashboard.component.html - 170 + 172 dashboard.latest-blocks.transaction-count @@ -1196,6 +1722,10 @@ src/app/dashboard/dashboard.component.html 108 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + dashboard.latest-transactions.amount @@ -1214,6 +1744,22 @@ dashboard.latest-transactions.USD + + Expand + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + Mempool size @@ -1227,24 +1773,16 @@ Unconfirmed src/app/dashboard/dashboard.component.html - 168 + 170 Unconfirmed count dashboard.unconfirmed - - block - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - Incoming transactions src/app/dashboard/dashboard.component.html - 178 + 180 dashboard.incoming-transactions @@ -1252,7 +1790,7 @@ vB/s src/app/dashboard/dashboard.component.html - 185 + 187 vB/s shared.vbytes-per-second @@ -1261,10 +1799,18 @@ Difficulty adjustment src/app/dashboard/dashboard.component.html - 194 + 196 dashboard.difficulty-adjustment + + API Service + + src/app/components/api-docs/api-docs.component.html + 4 + + api-docs.title + Websocket @@ -1419,15 +1965,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1702,262 +2239,20 @@ 272 - - Address + + Copied! - src/app/components/address/address.component.html - 2 - - shared.address - - - Total received - - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - - src/app/components/translation-strings/translation-strings.component.html + src/app/components/clipboard/clipboard.component.ts 15 - - src/app/components/time-since/time-since.component.ts - 83 - - - week ago + + This transaction saved % on fees by using native SegWit-Bech32 - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts - 80 + src/app/components/tx-features/tx-features.component.html + 1 + ngbTooltip about segwit gains SegWit @@ -1976,6 +2271,30 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF @@ -1994,6 +2313,18 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x @@ -2012,6 +2343,334 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 62 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 57 + + BSQ burnt amount + + + Addresses + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Confirmed + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 13 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + Bisq block confirmed time header + + + Inputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 7 + + transaction.inputs + + + Outputs + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 11 + + transaction.outputs + + + Version + + src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html + 29 + + transaction.version + + + Block : + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Previous hash + + src/app/bisq/bisq-block/bisq-block.component.html + 35 + + + src/app/bisq/bisq-block/bisq-block.component.html + 93 + + Transaction Previous Hash + block.previous_hash + + + Filter + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + diff --git a/frontend/src/locale/messages.zh.xlf b/frontend/src/locale/messages.zh.xlf index e3c280137..f9f3f04d5 100644 --- a/frontend/src/locale/messages.zh.xlf +++ b/frontend/src/locale/messages.zh.xlf @@ -1,6 +1,18 @@ + + Transaction: + 交易: + + src/app/components/transaction/transaction.component.ts + 48 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.ts + 46 + + Transaction 交易 @@ -8,6 +20,10 @@ src/app/components/transaction/transaction.component.html 12 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 18 + shared.transaction @@ -27,6 +43,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction singular confirmation count shared.confirmation-count.singular @@ -37,6 +61,14 @@ src/app/components/transaction/transaction.component.html 15 + + src/app/bisq/bisq-transfers/bisq-transfers.component.html + 68 + + + src/app/bisq/bisq-transaction/bisq-transaction.component.html + 7 + Transaction plural confirmation count shared.confirmation-count.plural @@ -55,7 +87,7 @@ 输入与输出 src/app/components/transaction/transaction.component.html - 165 + 164 Transaction inputs and outputs transaction.inputs-and-outputs @@ -65,7 +97,7 @@ 明细 src/app/components/transaction/transaction.component.html - 167 + 166 Transaction Details transaction.details @@ -75,7 +107,7 @@ 明细 src/app/components/transaction/transaction.component.html - 173 + 172 transaction.details @@ -84,17 +116,27 @@ 大小 src/app/components/transaction/transaction.component.html - 178 + 177 Transaction Size transaction.size + + Virtual size + 虚拟大小 + + src/app/components/transaction/transaction.component.html + 181 + + Transaction Virtual Size + transaction.vsize + Weight 权重 src/app/components/transaction/transaction.component.html - 182 + 185 Transaction Weight transaction.weight @@ -118,7 +160,7 @@ src/app/components/transaction/transaction.component.html - 149 + 148 Transaction fee transaction.fee @@ -132,7 +174,7 @@ src/app/components/transaction/transaction.component.html - 153 + 152 Transaction fee transaction.fee-per-vbyte @@ -146,7 +188,7 @@ src/app/components/transaction/transaction.component.html - 154 + 153 src/app/components/transactions-list/transactions-list.component.html @@ -230,7 +272,7 @@ src/app/components/transaction/transaction.component.html - 137 + 136 Transaction features transaction.features @@ -250,7 +292,7 @@ src/app/components/transaction/transaction.component.html - 150 + 149 Transaction Fee sat transaction.fee.sat @@ -284,31 +326,30 @@ src/app/components/transaction/transaction.component.html - 130 + 129 Transaction Minutes transaction.minutes - - block - 区块 + + block + 个区块 src/app/components/transaction/transaction.component.html 126 src/app/components/transaction/transaction.component.html - 130 + 129 - Transaction ETA (X blocks) - transaction.eta.block + shared.block Transaction not found. 交易未找到 src/app/components/transaction/transaction.component.html - 266 + 273 transaction.error.transaction-not-found @@ -317,30 +358,18 @@ 等待交易出现在内存池 src/app/components/transaction/transaction.component.html - 267 + 274 transaction.error.waiting-for-it-to-appear - - Confidential - 机密 + + blocks + 个区块 - src/app/components/amount/amount.component.html - 6 + src/app/components/transaction/transaction.component.html + 289 - - src/app/components/transactions-list/transactions-list.component.html - 208 - - - src/app/components/asset/asset.component.html - 143 - - - src/app/components/address/address.component.html - 112 - - shared.confidential + shared.blocks Coinbase @@ -472,6 +501,10 @@ src/app/components/transactions-list/transactions-list.component.html 164 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 19 + transactions-list.vout.scriptpubkey-type @@ -524,8 +557,38 @@ transactions-list.unconfirmed + + Confidential + 机密 + + src/app/components/transactions-list/transactions-list.component.html + 208 + + + src/app/components/amount/amount.component.html + 6 + + + src/app/components/address/address.component.html + 116 + + + src/app/components/asset/asset.component.html + 143 + + shared.confidential + + + Block : + 区块 + + src/app/components/block/block.component.ts + 98 + + Genesis + 创世 src/app/components/block/block.component.html 4 @@ -534,7 +597,7 @@ Block - 区块 + 区块 src/app/components/block/block.component.html 4 @@ -570,6 +633,14 @@ src/app/components/block/block.component.html 31 + + src/app/components/latest-blocks/latest-blocks.component.html + 13 + + + src/app/components/mempool-block/mempool-block.component.html + 32 + src/app/dashboard/dashboard.component.html 81 @@ -607,6 +678,31 @@ block.median-fee + + Based on average native segwit transaction of 140 vBytes + 基于平均140字节的本地segwit交易 + + src/app/components/block/block.component.html + 46 + + + src/app/components/mempool-block/mempool-block.component.html + 17 + + + src/app/components/fees-box/fees-box.component.html + 6 + + + src/app/components/fees-box/fees-box.component.html + 12 + + + src/app/components/fees-box/fees-box.component.html + 18 + + Transaction fee tooltip + Total fees 总手续费 @@ -671,10 +767,6 @@ src/app/components/footer/footer.component.html 16 - - src/app/components/address/address.component.html - 46 - shared.transaction-count.plural @@ -686,14 +778,132 @@ block.error.loading-block-data + + Address: + 地址: + + src/app/components/address/address.component.ts + 64 + + + + Address + 地址 + + src/app/components/address/address.component.html + 2 + + shared.address + + + Total received + 总接收量 + + src/app/components/address/address.component.html + 20 + + address.total-received + + + Total sent + 总发送量 + + src/app/components/address/address.component.html + 24 + + address.total-sent + + + Balance + 余额 + + src/app/components/address/address.component.html + 28 + + address.balance + + + of transaction + 个交易 / 共个交易 + + src/app/components/address/address.component.html + 48 + + X of X Address Transaction + + + of transactions + 个交易 / 共个交易 + + src/app/components/address/address.component.html + 49 + + X of X Address Transactions (Plural) + + + Error loading address data. + 在加载地址数据时出错 + + src/app/components/address/address.component.html + 105 + + address.error.loading-address-data + TXID, block height, hash or address + 交易ID、区块高度、哈希值或地址 src/app/components/search-form/search-form.component.html 4 search-form.searchbar-placeholder + + Search + 搜索 + + src/app/components/search-form/search-form.component.html + 7 + + search-form.search-title + + + Blocks + 区块 + + src/app/components/latest-blocks/latest-blocks.component.ts + 37 + + + src/app/components/api-docs/api-docs.component.html + 75 + + + + Blocks + 区块 + + src/app/components/latest-blocks/latest-blocks.component.html + 2 + + + src/app/components/master-page/master-page.component.html + 32 + + + src/app/components/master-page/master-page.component.html + 43 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.ts + 35 + + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 2 + + latest-blocks.blocks + Height 高度 @@ -705,6 +915,14 @@ src/app/dashboard/dashboard.component.html 78 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 12 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 22 + latest-blocks.height @@ -727,25 +945,28 @@ src/app/components/latest-blocks/latest-blocks.component.html 12 + + src/app/components/master-page/master-page.component.html + 29 + src/app/components/mempool-block/mempool-block.component.html 28 + + src/app/bisq/bisq-blocks/bisq-blocks.component.html + 15 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 77 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 2 + latest-blocks.transactions - - Filled - 大小 - - src/app/components/latest-blocks/latest-blocks.component.html - 13 - - - src/app/components/mempool-block/mempool-block.component.html - 32 - - latest-blocks.filled - multisig of -多重签名 @@ -757,6 +978,7 @@ Layer Peg-out + 层 Peg-out src/app/components/address-labels/address-labels.component.html 2 @@ -804,6 +1026,32 @@ shared.blocks + + API + 应用程序接口 + + src/app/components/master-page/master-page.component.html + 56 + + + src/app/components/api-docs/api-docs.component.ts + 24 + + master-page.api + + + About + 关于 + + src/app/components/master-page/master-page.component.html + 59 + + + src/app/components/about/about.component.ts + 38 + + master-page.about + Offline 离线 @@ -824,12 +1072,70 @@ Layer 2 Networks + 第2层网络 src/app/components/master-page/master-page.component.html 19 master-page.layer2-networks-header + + Stats + 统计 + + src/app/components/master-page/master-page.component.html + 35 + + master-page.stats + + + Dashboard + 仪表板 + + src/app/components/master-page/master-page.component.html + 40 + + master-page.dashboard + + + Graphs + 图表 + + src/app/components/master-page/master-page.component.html + 46 + + + src/app/components/statistics/statistics.component.ts + 55 + + master-page.graphs + + + TV view + TV模式 + + src/app/components/master-page/master-page.component.html + 49 + + + src/app/components/television/television.component.ts + 27 + + master-page.tvview + + + Assets + 资产 + + src/app/components/master-page/master-page.component.html + 53 + + + src/app/assets/assets.component.ts + 40 + + master-page.assets + About the project 项目介绍 @@ -908,33 +1214,25 @@ src/app/components/about/about.component.html 206 - - src/app/dashboard/dashboard.component.html - 143 - src/app/components/api-docs/api-docs.component.html 284 + + src/app/dashboard/dashboard.component.html + 143 + Terms of Service shared.terms-of-service - - Navigate to - 导航 + + Navigate to https://mempool.space/about to sponsor + 转到 https://mempool.space/about 成为赞助人 src/app/components/about/about.component.html 65 - about.navigate-to - - - to sponsor - - src/app/components/about/about.component.html - 65 - - about.to-sponsor + about.navigate-to-sponsor Amount required @@ -1016,6 +1314,15 @@ statistics.memory-by-vBytes + + Invert + 倒置 + + src/app/components/statistics/statistics.component.html + 43 + + statistics.component-invert.title + Transaction vBytes per second (vB/s) 交易字节/秒 (虚拟字节) @@ -1055,6 +1362,7 @@ Backend is synchronizing + 后端正在同步中... src/app/components/footer/footer.component.html 7 @@ -1074,6 +1382,30 @@ shared.vbytes-per-second + + Next block + 下一区块 + + src/app/components/mempool-block/mempool-block.component.ts + 72 + + + + Stack of mempool blocks + 内存区块堆 + + src/app/components/mempool-block/mempool-block.component.ts + 74 + + + + Mempool block + 内存区块 + + src/app/components/mempool-block/mempool-block.component.ts + 76 + + Fee span 费用范围 @@ -1092,6 +1424,14 @@ mempool-block.total-fees + + Asset: + 资产: + + src/app/components/asset/asset.component.ts + 73 + + Name 名称 @@ -1104,6 +1444,7 @@ Precision + 精确度 src/app/components/asset/asset.component.html 24 @@ -1113,6 +1454,7 @@ Burned amount + 燃烧量 src/app/components/asset/asset.component.html 55 @@ -1132,6 +1474,7 @@ Issuance TX + 发行交易 src/app/components/asset/asset.component.html 32 @@ -1181,14 +1524,147 @@ Liquid Asset circulating amount asset.circulating-amount + + Peg In/Out and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Liquid native asset transactions title + + + Issuance and Burn Transactions + + src/app/components/asset/asset.component.html + 75 + + Default asset transactions title + Error loading asset data. + 加载资产数据时出错 src/app/components/asset/asset.component.html 132 asset.error.loading-asset-data + + Registered assets + 已注册资产 + + src/app/assets/assets.component.html + 2 + + Registered assets page header + + + Search asset + 搜索资产 + + src/app/assets/assets.component.html + 9 + + Search Assets Placeholder Text + + + Clear + 清空 + + src/app/assets/assets.component.html + 11 + + Search Clear Button + + + Name + 名称 + + src/app/assets/assets.component.html + 19 + + + src/app/assets/assets.component.html + 46 + + Asset name header + + + Ticker + 代币 + + src/app/assets/assets.component.html + 20 + + + src/app/assets/assets.component.html + 47 + + Asset ticker header + + + Issuer domain + 发行人 + + src/app/assets/assets.component.html + 21 + + + src/app/assets/assets.component.html + 48 + + Asset Issuer Domain header + + + Asset ID + 资产ID + + src/app/assets/assets.component.html + 22 + + + src/app/assets/assets.component.html + 49 + + Asset ID header + + + Issuance TX + 发行交易 + + src/app/assets/assets.component.html + 23 + + + src/app/assets/assets.component.html + 50 + + Asset issuance transaction header + + + Error loading assets data. + + src/app/assets/assets.component.html + 67 + + Asset data load error + + + Identified by payout address: '' + 根据付款地址识别:“ + + src/app/components/miner/miner.component.ts + 42 + + + + Identified by coinbase tag: '' + 根据coinbase标签识别:“ + + src/app/components/miner/miner.component.ts + 52 + + Unknown 未知 @@ -1237,136 +1713,14 @@ fees-box.high-priority - - Latest blocks - 最新区块 + + API Service + API服务 - src/app/dashboard/dashboard.component.html - 75 + src/app/components/api-docs/api-docs.component.html + 4 - dashboard.latest-blocks - - - TXs - - src/app/dashboard/dashboard.component.html - 80 - - - src/app/dashboard/dashboard.component.html - 170 - - dashboard.latest-blocks.transaction-count - - - View all » - 查看全部 » - - src/app/dashboard/dashboard.component.html - 97 - - dashboard.view-all - - - Latest transactions - 最新交易 - - src/app/dashboard/dashboard.component.html - 104 - - dashboard.latest-transactions - - - TXID - - src/app/dashboard/dashboard.component.html - 107 - - dashboard.latest-transactions.txid - - - Amount - - - src/app/dashboard/dashboard.component.html - 108 - - dashboard.latest-transactions.amount - - - Fee - 费用 - - src/app/dashboard/dashboard.component.html - 110 - - dashboard.latest-transactions.fee - - - USD - 美元 - - src/app/dashboard/dashboard.component.html - 109 - - dashboard.latest-transactions.USD - - - Mempool size - 内存池大小 - - src/app/dashboard/dashboard.component.html - 162 - - Mempool size - dashboard.mempool-size - - - Unconfirmed - 未确认 - - src/app/dashboard/dashboard.component.html - 168 - - Unconfirmed count - dashboard.unconfirmed - - - block - 区块 - - src/app/dashboard/dashboard.component.html - 164 - - dashboard.block - - - Incoming transactions - 收款交易 - - src/app/dashboard/dashboard.component.html - 178 - - dashboard.incoming-transactions - - - vB/s - 字节/秒 - - src/app/dashboard/dashboard.component.html - 185 - - vB/s - shared.vbytes-per-second - - - Difficulty adjustment - 难度调整 - - src/app/dashboard/dashboard.component.html - 194 - - dashboard.difficulty-adjustment + api-docs.title Websocket @@ -1526,16 +1880,6 @@ API Docs for /api/mempool/recent api-docs.mempool.recent - - Blocks - 区块 - - src/app/components/api-docs/api-docs.component.html - 75 - - API Docs tab for Blocks - api-docs.tab.blocks - Returns the confirmation status of a block. Available fields: in_best_chain (boolean, false for orphaned blocks), next_best (the hash of the next block, only available for blocks in the best chain). @@ -1816,286 +2160,185 @@ 272 - - Address - 地址 + + Latest blocks + 最新区块 - src/app/components/address/address.component.html - 2 + src/app/dashboard/dashboard.component.html + 75 - shared.address + dashboard.latest-blocks - - Total received - 总接收量 + + TXs + 交易 - src/app/components/address/address.component.html - 20 - - address.total-received - - - Total sent - 总发送量 - - src/app/components/address/address.component.html - 24 - - address.total-sent - - - Balance - 余额 - - src/app/components/address/address.component.html - 28 - - address.balance - - - of - - src/app/components/address/address.component.html - 46 - - shared.of - - - Error loading address data. - 在加载地址数据时出错 - - src/app/components/address/address.component.html - 101 - - address.error.loading-address-data - - - just now - 刚刚 - - src/app/components/translation-strings/translation-strings.component.html - 3 - - - src/app/components/time-since/time-since.component.ts - 49 - - - - sec ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 4 - - - src/app/components/time-since/time-since.component.ts - 74 - - - - secs ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 5 - - - src/app/components/time-since/time-since.component.ts - 96 - - - - second ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 6 - - - src/app/components/time-since/time-since.component.ts - 71 - - - - seconds ago - 秒前 - - src/app/components/translation-strings/translation-strings.component.html - 7 - - - src/app/components/time-since/time-since.component.ts - 93 - - - - min ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 8 - - - src/app/components/time-since/time-since.component.ts - 67 - - - - mins ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 9 - - - src/app/components/time-since/time-since.component.ts - 89 - - - - minute ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 10 - - - src/app/components/time-since/time-since.component.ts - 64 - - - - minutes ago - 分钟前 - - src/app/components/translation-strings/translation-strings.component.html - 11 - - - src/app/components/time-since/time-since.component.ts - 86 - - - - hour ago - 小时前 - - src/app/components/translation-strings/translation-strings.component.html - 12 - - - src/app/components/time-since/time-since.component.ts - 62 - - - - hours ago - 小时前 - - src/app/components/translation-strings/translation-strings.component.html - 13 - - - src/app/components/time-since/time-since.component.ts - 84 - - - - day ago - 天前 - - src/app/components/translation-strings/translation-strings.component.html - 14 - - - src/app/components/time-since/time-since.component.ts - 61 - - - - days ago - 天前 - - src/app/components/translation-strings/translation-strings.component.html - 15 - - - src/app/components/time-since/time-since.component.ts - 83 - - - - week ago - 周前 - - src/app/components/translation-strings/translation-strings.component.html - 16 - - - src/app/components/time-since/time-since.component.ts - 60 - - - - weeks ago - 周前 - - src/app/components/translation-strings/translation-strings.component.html - 17 - - - src/app/components/time-since/time-since.component.ts - 82 - - - - month ago - 个月前 - - src/app/components/translation-strings/translation-strings.component.html - 18 - - - src/app/components/time-since/time-since.component.ts - 59 - - - - months ago - 个月前 - - src/app/components/translation-strings/translation-strings.component.html - 19 - - - src/app/components/time-since/time-since.component.ts - 81 - - - - year ago - 年前 - - src/app/components/translation-strings/translation-strings.component.html - 20 - - - src/app/components/time-since/time-since.component.ts - 58 - - - - years ago - 年前 - - src/app/components/translation-strings/translation-strings.component.html - 21 - - - src/app/components/time-since/time-since.component.ts + src/app/dashboard/dashboard.component.html 80 + + src/app/dashboard/dashboard.component.html + 170 + + dashboard.latest-blocks.transaction-count + + + View all » + 查看全部 » + + src/app/dashboard/dashboard.component.html + 97 + + dashboard.view-all + + + Latest transactions + 最新交易 + + src/app/dashboard/dashboard.component.html + 104 + + dashboard.latest-transactions + + + TXID + 交易ID + + src/app/dashboard/dashboard.component.html + 107 + + dashboard.latest-transactions.txid + + + Amount + + + src/app/dashboard/dashboard.component.html + 108 + + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 20 + + dashboard.latest-transactions.amount + + + Fee + 费用 + + src/app/dashboard/dashboard.component.html + 110 + + dashboard.latest-transactions.fee + + + USD + 美元 + + src/app/dashboard/dashboard.component.html + 109 + + dashboard.latest-transactions.USD + + + Expand + 更多 + + src/app/dashboard/dashboard.component.html + 131 + + dashboard.expand + + + Collapse + 收起 + + src/app/dashboard/dashboard.component.html + 132 + + dashboard.collapse + + + Mempool size + 内存池大小 + + src/app/dashboard/dashboard.component.html + 162 + + Mempool size + dashboard.mempool-size + + + Unconfirmed + 未确认 + + src/app/dashboard/dashboard.component.html + 168 + + Unconfirmed count + dashboard.unconfirmed + + + block + 个区块 + + src/app/dashboard/dashboard.component.html + 164 + + shared.block + + + blocks + 个区块 + + src/app/dashboard/dashboard.component.html + 164 + + shared.blocks + + + Incoming transactions + 收款交易 + + src/app/dashboard/dashboard.component.html + 178 + + dashboard.incoming-transactions + + + vB/s + 字节/秒 + + src/app/dashboard/dashboard.component.html + 185 + + vB/s + shared.vbytes-per-second + + + Difficulty adjustment + 难度调整 + + src/app/dashboard/dashboard.component.html + 194 + + dashboard.difficulty-adjustment + + + Copied! + 已复制! + + src/app/components/clipboard/clipboard.component.ts + 15 + + + + This transaction saved % on fees by using native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 1 + + ngbTooltip about segwit gains SegWit @@ -2114,8 +2357,34 @@ SegWit tx-features.tag.segwit + + This transaction saved % on fees by using SegWit and could save % more by fully upgrading to native SegWit-Bech32 + + src/app/components/tx-features/tx-features.component.html + 3 + + ngbTooltip about double segwit gains + + + This transaction could save % on fees by upgrading to native SegWit-Bech32 or % by upgrading to SegWit-P2SH + + src/app/components/tx-features/tx-features.component.html + 5 + + ngbTooltip about missed out gains + + + This transaction support Replace-By-Fee (RBF) allowing fee bumping + 此交易支持“按需付费”(RBF),可增加手续费 + + src/app/components/tx-features/tx-features.component.html + 8 + + RBF tooltip + RBF + RBF src/app/components/tx-features/tx-features.component.html 8 @@ -2133,6 +2402,19 @@ TX Fee Rating is Optimal tx-fee-rating.optimal + + Only ~ sat/vB was needed to get into this block + 只需支付〜 聪/字节即可进入此区块 + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 2 + + + src/app/components/tx-fee-rating/tx-fee-rating.component.html + 3 + + tx-fee-rating.warning-tooltip + Overpaid x 溢缴款 x @@ -2153,6 +2435,318 @@ TX Fee Rating is Danger tx-fee-rating.overpaid.danger + + Just now + 刚刚 + + src/app/components/time-since/time-since.component.ts + 49 + + + + year ago + 年前 + + src/app/components/time-since/time-since.component.ts + 58 + + + + month ago + 个月前 + + src/app/components/time-since/time-since.component.ts + 59 + + + + week ago + 周前 + + src/app/components/time-since/time-since.component.ts + 60 + + + + day ago + 天前 + + src/app/components/time-since/time-since.component.ts + 61 + + + + hour ago + 小时前 + + src/app/components/time-since/time-since.component.ts + 62 + + + + min ago + 分钟前 + + src/app/components/time-since/time-since.component.ts + 65 + + + + minute ago + 分钟前 + + src/app/components/time-since/time-since.component.ts + 67 + + + + sec ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 70 + + + + second ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 72 + + + + years ago + 年前 + + src/app/components/time-since/time-since.component.ts + 76 + + + + months ago + 个月前 + + src/app/components/time-since/time-since.component.ts + 77 + + + + weeks ago + 周前 + + src/app/components/time-since/time-since.component.ts + 78 + + + + days ago + 天前 + + src/app/components/time-since/time-since.component.ts + 79 + + + + hours ago + 小时前 + + src/app/components/time-since/time-since.component.ts + 80 + + + + mins ago + 分钟前 + + src/app/components/time-since/time-since.component.ts + 83 + + + + minutes ago + 分钟前 + + src/app/components/time-since/time-since.component.ts + 85 + + + + secs ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 88 + + + + seconds ago + 秒前 + + src/app/components/time-since/time-since.component.ts + 90 + + + + BSQ statistics + BSQ统计 + + src/app/bisq/bisq-stats/bisq-stats.component.ts + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 2 + + + + Existing amount + 现存量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 12 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 54 + + BSQ existing amount + + + Minted amount + 铸造量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 16 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 58 + + BSQ minted amount + + + Burnt amount + 燃烧量 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 20 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 62 + + BSQ burnt amount + + + Addresses + 交易 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 24 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 66 + + BSQ addresses + + + Unspent TXOs + 未用UTXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 28 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 70 + + BSQ unspent transaction outputs + + + Spent TXOs + 已用UTXO + + src/app/bisq/bisq-stats/bisq-stats.component.html + 32 + + BSQ spent transaction outputs + + + Price + 价格 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 36 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 78 + + BSQ token price + + + Market cap + 市值 + + src/app/bisq/bisq-stats/bisq-stats.component.html + 40 + + + src/app/bisq/bisq-stats/bisq-stats.component.html + 82 + + BSQ token market cap + + + Address: + 地址: + + src/app/bisq/bisq-address/bisq-address.component.ts + 39 + + + + Block : + 区块 + + src/app/bisq/bisq-block/bisq-block.component.ts + 85 + + + + Filter + 筛选 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 55 + + + + Select all + 全选 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 56 + + + + Unselect all + 取消全选 + + src/app/bisq/bisq-transactions/bisq-transactions.component.ts + 57 + + + + Confirmed + 已确认 + + src/app/bisq/bisq-transactions/bisq-transactions.component.html + 21 + + \ No newline at end of file diff --git a/production/README.md b/production/README.md index 01248b70c..51c595945 100644 --- a/production/README.md +++ b/production/README.md @@ -102,10 +102,12 @@ Log notice syslog CookieAuthentication 1 CookieAuthFileGroupReadable 1 +CookieAuthFile /var/db/tor/control_auth_cookie +DataDirectory /var/db/tor DataDirectoryGroupReadable 1 HiddenServiceDir /var/db/tor/mempool -HiddenServicePort 80 127.0.0.1:81 +HiddenServicePort 80 127.0.0.1:80 HiddenServiceVersion 3 ``` diff --git a/production/nginx-mempool.conf b/production/nginx-mempool.conf index d28f7f456..bd06fac65 100644 --- a/production/nginx-mempool.conf +++ b/production/nginx-mempool.conf @@ -33,23 +33,21 @@ # fallback for all URLs i.e. /address/foo /tx/foo /block/000 location / { - #return 302 https://mempool.space/$request_uri; - try_files /$lang/$uri /$lang/$uri/ $uri $uri/ /en-US/$uri @index; -# /$lang/index.html /en-US/index.html =404; + try_files /$lang/$uri /$lang/$uri/ $uri $uri/ /en-US/$uri @index-redirect; } - location @index { - add_header Cache-Control must-revalidate; - try_files /$lang/index.html /en-US/index.html =404; + location @index-redirect { + add_header vary accept-language; + rewrite (.*) /$lang/index.html; } # location block using regex are matched in order # used to rewrite resources from // to /en-US/ - location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/resources/ { + location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|ka|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/resources/ { rewrite ^/[a-zA-Z-]*/resources/(.*) /en-US/resources/$1; } # used for cookie override - location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/ { + location ~ ^/(ar|bg|bs|ca|cs|da|de|et|el|es|eo|eu|fa|fr|gl|ko|hr|id|it|he|ka|lv|lt|hu|mk|ms|nl|ja|ka|no|nb|nn|pl|pt|pt-BR|ro|ru|sk|sl|sr|sh|fi|sv|th|tr|uk|vi|zh)/ { try_files $uri $uri/ /$1/index.html =404; } diff --git a/production/nginx.conf b/production/nginx.conf index f14aa0b1d..cb64caa17 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -54,25 +54,37 @@ http { proxy_cache_path /var/cache/nginx keys_zone=cache:20m levels=1:2 inactive=600s max_size=500m; types_hash_max_size 2048; + # exempt localhost from rate limit + geo $limited_ip { + default 1; + 127.0.0.1 0; + } + map $limited_ip $limited_ip_key { + 1 $binary_remote_addr; + 0 ''; + } + # rate limit requests - limit_req_zone $binary_remote_addr zone=api:5m rate=200r/m; - limit_req_zone $binary_remote_addr zone=electrs:5m rate=2000r/m; + limit_req_zone $limited_ip_key zone=api:5m rate=200r/m; + limit_req_zone $limited_ip_key zone=electrs:5m rate=2000r/m; limit_req_status 429; # rate limit connections - limit_conn_zone $binary_remote_addr zone=websocket:10m; + limit_conn_zone $limited_ip_key zone=websocket:10m; limit_conn_status 429; map $http_accept_language $header_lang { default en-US; ~*^en-US en-US; ~*^en en-US; + ~*^ar ar; ~*^cs cs; ~*^de de; ~*^es es; ~*^fa fa; ~*^fr fr; ~*^ja ja; + ~*^ka ka; ~*^nl nl; ~*^nn nn; ~*^pt pt; @@ -80,6 +92,7 @@ http { ~*^sv sv; ~*^tr tr; ~*^uk uk; + ~*^vi vi; ~*^zh zh; } @@ -87,12 +100,14 @@ http { default $header_lang; ~*^en-US en-US; ~*^en en-US; + ~*^ar ar; ~*^cs cs; ~*^de de; ~*^es es; ~*^fa fa; ~*^fr fr; ~*^ja ja; + ~*^ka ka; ~*^nl nl; ~*^nn nn; ~*^pt pt; @@ -100,6 +115,7 @@ http { ~*^sv sv; ~*^tr tr; ~*^uk uk; + ~*^vi vi; ~*^zh zh; } @@ -153,7 +169,7 @@ http { } server { - listen 127.0.0.1:81; + listen 127.0.0.1:80; listen 443 ssl default http2 backlog=1024; server_name mempool.space; ssl_certificate /usr/local/etc/letsencrypt/live/mempool.space/fullchain.pem;