Compare commits

...

24 Commits

Author SHA1 Message Date
wiz
fdf15c39a6 Merge pull request #595 from knorrium/fix_docker_builds
Improvements to local and Docker builds
2021-06-27 04:20:09 +09:00
softsimon
3b020046b7 Update i18n from transifex. 2021-06-26 14:45:05 -04:00
Felipe Knorr Kuhn
8574ee6edd push both tag and latest images at the same time 2021-06-26 10:29:08 -07:00
Felipe Knorr Kuhn
f937ea5745 fix missing backslash 2021-06-26 00:38:18 -07:00
Felipe Knorr Kuhn
741a020579 add missing semicolon 2021-06-26 00:29:45 -07:00
Felipe Knorr Kuhn
33d37a9b5b update generate-config to read the short sha from docker 2021-06-25 23:47:40 -07:00
Felipe Knorr Kuhn
446bdfebea update FE Dockerfile to read short sha 2021-06-25 23:47:19 -07:00
Felipe Knorr Kuhn
ca91afe45b update GHA workflow to expose the short sha to docker 2021-06-25 23:46:56 -07:00
softsimon
33a5be5a7d Lower scroll threshold to fix load more not triggering. (#576)
* Lower scroll threshold to fix load more not triggering.

fixes #575
2021-06-24 18:20:20 -04:00
softsimon
6a4eee3711 Updated from transifex. 2021-06-22 13:56:46 -04:00
softsimon
13931ceec6 Updated from transifex. 2021-06-22 10:57:44 -04:00
softsimon
0c418a9e33 Updated from transifex. 2021-06-22 10:57:26 -04:00
softsimon
6f8b95a17f Updating i18n. 2021-06-17 11:59:11 -05:00
softsimon
389c1d794c Updated from transifex. 2021-06-17 11:09:52 -05:00
softsimon
fca66f1b9f Updating i18n. 2021-06-17 11:09:07 -05:00
Felipe Knorr Kuhn
4c7d0cd2e5 Generate config on serve and updated git revision method (#587)
* run generate-config on serve

* write the config file only if settings have changed

* read the git commit hash from the current branch, not master

* git sha is now short by default, no need to trim on the about component
2021-06-16 13:47:05 -05:00
Felipe Knorr Kuhn
1016586992 fix the block viewer for liquid (#584) 2021-06-16 11:48:46 -05:00
wiz
38c8f3acb4 More tweaking of project description on About page 2021-06-16 00:19:56 -05:00
wiz
962023fbc4 Update project description on About page 2021-06-15 23:56:49 -05:00
wiz
b4f8bb2f48 Add trademark symbols and trademark notice to About page 2021-06-15 23:23:26 -05:00
Felipe Knorr Kuhn
c26461fada Route json assets to prod (#585)
* update proxy settings to route json assets to prod
2021-06-15 17:32:36 -05:00
softsimon
1a996e1640 Adding missing space. 2021-06-13 17:56:24 -05:00
softsimon
c80532b420 Bumping mempool.js lib. 2021-06-13 15:39:40 -05:00
wiz
74c49b9ae7 Enable i18n locale for Russian (ru) 2021-06-13 15:05:21 -05:00
46 changed files with 5529 additions and 877 deletions

View File

@@ -27,6 +27,9 @@ jobs:
- name: Show set environment variables
run: |
printf " TAG: %s\n" "$TAG"
- name: Add SHORT_SHA env property with commit short sha
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
- name: Login to Docker for building
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
@@ -64,14 +67,6 @@ jobs:
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64,linux/arm/v7 \
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:$TAG \
--output "type=registry" ./${{ matrix.service }}/
- name: Run Docker buildx for ${{ matrix.service }} against latest
run: |
docker buildx build \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64,linux/arm/v7 \
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:latest \
--output "type=registry" ./${{ matrix.service }}/
--output "type=registry" ./${{ matrix.service }}/ \
--build-arg commitHash=$SHORT_SHA

View File

@@ -1,5 +1,8 @@
FROM node:12-buster-slim AS builder
ARG commitHash
ENV DOCKER_COMMIT_HASH=${commitHash}
WORKDIR /build
COPY . .
RUN apt-get update

View File

@@ -31,3 +31,4 @@ https://www.transifex.com/mempool/mempool/dashboard/
* Ukrainian @volbil
* Vietnamese @bitcoin_vietnam
* Chinese @wdljt
* Russian @TonyCrusoe @Bitconan

View File

@@ -110,6 +110,10 @@
"zh": {
"translation": "src/locale/messages.zh.xlf",
"baseHref": "/zh/"
},
"ru": {
"translation": "src/locale/messages.ru.xlf",
"baseHref": "/ru/"
}
}
},

View File

@@ -1,4 +1,5 @@
var fs = require('fs');
const { spawnSync } = require('child_process');
const CONFIG_FILE_NAME = 'mempool-frontend-config.json';
const GENERATED_CONFIG_FILE_NAME = 'generated-config.js';
@@ -11,15 +12,19 @@ let packetJsonVersion = '';
try {
const rawConfig = fs.readFileSync(CONFIG_FILE_NAME);
configContent = JSON.parse(rawConfig);
console.log(`${CONFIG_FILE_NAME} file found, using provided config`);
} catch (e) {
if (e.code !== 'ENOENT') {
throw new Error(e);
} else {
console.log(`${CONFIG_FILE_NAME} file not found, using default config`);
}
}
try {
const packageJson = fs.readFileSync('package.json');
packetJsonVersion = JSON.parse(packageJson).version;
console.log(`mempool version ${packetJsonVersion}`);
} catch (e) {
throw new Error(e);
}
@@ -31,23 +36,64 @@ for (setting in configContent) {
});
}
try {
gitCommitHash = fs.readFileSync('../.git/refs/heads/master').toString().trim();
} catch (e) {
console.log('Could not load git commit info: ' + e.message || e);
if (process.env.DOCKER_COMMIT_HASH) {
gitCommitHash = process.env.DOCKER_COMMIT_HASH;
} else {
try {
const gitRevParse = spawnSync('git', ['rev-parse', '--short', 'HEAD']);
if (!gitRevParse.error) {
gitCommitHash = gitRevParse.stdout.toString('utf-8').replace(/[\n\r\s]+$/, '');
console.log(`mempool revision ${gitCommitHash}`);
} else if (gitRevParse.error.code === 'ENOENT') {
console.log('git not found, cannot parse git hash');
gitCommitHash = '?';
}
} catch (e) {
console.log('Could not load git commit info: ' + e.message);
gitCommitHash = '?';
}
}
const code = `(function (window) {
const newConfig = `(function (window) {
window.__env = window.__env || {};${settings.reduce((str, obj) => `${str}
window.__env.${obj.key} = ${ typeof obj.value === 'string' ? `'${obj.value}'` : obj.value };`, '')}
window.__env.GIT_COMMIT_HASH = '${gitCommitHash}';
window.__env.PACKAGE_JSON_VERSION = '${packetJsonVersion}';
}(global || this));`;
try {
fs.writeFileSync(GENERATED_CONFIG_FILE_NAME, code, 'utf8');
} catch (e) {
throw new Error(e);
function readConfig(path) {
try {
const currentConfig = fs.readFileSync(path).toString().trim();
return currentConfig;
} catch (e) {
return false;
}
}
console.log('Config file generated');
function writeConfig(path, config) {
try {
fs.writeFileSync(path, config, 'utf8');
} catch (e) {
throw new Error(e);
}
}
const currentConfig = readConfig(GENERATED_CONFIG_FILE_NAME);
if (currentConfig && currentConfig === newConfig) {
console.log(`No configuration updates, skipping ${GENERATED_CONFIG_FILE_NAME} file update`);
return;
} else if (!currentConfig) {
console.log(`${GENERATED_CONFIG_FILE_NAME} file not found, creating new config file`);
console.log('CONFIG: ', newConfig);
writeConfig(GENERATED_CONFIG_FILE_NAME, newConfig);
console.log(`${GENERATED_CONFIG_FILE_NAME} file saved`);
return;
} else {
console.log(`Configuration changes detected, updating ${GENERATED_CONFIG_FILE_NAME} file`);
console.log('OLD CONFIG: ', currentConfig);
console.log('NEW CONFIG: ', newConfig);
writeConfig(GENERATED_CONFIG_FILE_NAME, newConfig);
console.log(`${GENERATED_CONFIG_FILE_NAME} file updated`);
};

View File

@@ -24,9 +24,9 @@
"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 --force",
"serve": "ng serve -c local",
"serve:stg": "ng serve -c staging",
"serve:local-prod": "ng serve -c local-prod",
"serve": "npm run generate-config && ng serve -c local",
"serve:stg": "npm run generate-config && ng serve -c staging",
"serve:local-prod": "npm run generate-config && ng serve -c local-prod",
"start": "npm run generate-config && npm run sync-assets-dev && ng serve -c local",
"start:stg": "npm run generate-config && npm run sync-assets-dev && ng serve -c staging",
"start:local-prod": "npm run generate-config && npm run sync-assets-dev && ng serve -c local-prod",
@@ -61,7 +61,7 @@
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@mempool/chartist": "^0.11.4",
"@mempool/mempool.js": "^2.2.1",
"@mempool/mempool.js": "^2.2.2",
"@ng-bootstrap/ng-bootstrap": "^7.0.0",
"@nguniversal/express-engine": "11.2.1",
"@types/qrcode": "^1.3.4",

View File

@@ -88,5 +88,20 @@
"pathRewrite": {
"^/bisq/api": "/api/v1/ws"
}
},
"/resources/assets.minimal.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/assets.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/pools.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
}
}
}

View File

@@ -83,5 +83,20 @@
"^/liquid/api/": "/liquid/api/"
},
"timeout": 3600000
},
"/resources/assets.minimal.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/assets.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/pools.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
}
}
}

View File

@@ -81,5 +81,20 @@
"^/liquid/api/": "/api/v1/liquid/"
},
"timeout": 3600000
},
"/resources/assets.minimal.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/assets.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
},
"/resources/pools.json": {
"target": "https://mempool.space",
"secure": false,
"changeOrigin": true
}
}

View File

@@ -75,7 +75,7 @@ export const languages: Language[] = [
{ code: 'pt', name: 'Português' }, // Portuguese
// { code: 'pt-BR', name: 'Português (Brazil)' }, // Portuguese (Brazil)
// { code: 'ro', name: 'Română' }, // Romanian
// { code: 'ru', name: 'Русский' }, // Russian
{ code: 'ru', name: 'Русский' }, // Russian
// { code: 'sk', name: 'Slovenčina' }, // Slovak
{ code: 'sl', name: 'Slovenščina' }, // Slovenian
// { code: 'sr', name: 'Српски / srpski' }, // Serbian

View File

@@ -1,6 +1,7 @@
<div class="container-xl about-page">
<div class="intro">
<span style="margin-left: auto; margin-right: -20px; margin-bottom: -20px">&trade;</span>
<img class="logo" src="./resources/mempool-logo-bigger.png" />
<div class="version">
v{{ packetJsonVersion }} [{{ frontendGitCommitHash }}]
@@ -8,8 +9,8 @@
</div>
<div class="about-text">
<h5 i18n="about.about-the-project">The Mempool Open Source Project</h5>
<p i18n>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</p>
<h5><ng-container i18n="about.about-the-project">The Mempool Open Source Project</ng-container> &trade;</h5>
<p i18n>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</p>
</div>
<div class="social-icons">
@@ -191,6 +192,9 @@
<p>
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the full license terms for more details.<br>
</p>
<p>
mempool.space&trade;, The Mempool Open Source Project&trade;, and the Mempool block logo are trademarks of Mempool Space K.K. in Japan.
</p>
</div>
<div class="footer-links">

View File

@@ -29,7 +29,7 @@
}
.about-text {
max-width: 490px;
max-width: 550px;
margin: auto;
padding: 10px 15px 15px;
}

View File

@@ -17,7 +17,7 @@ export class AboutComponent implements OnInit {
backendInfo$: Observable<IBackendInfo>;
sponsors$: Observable<any>;
contributors$: Observable<any>;
frontendGitCommitHash = this.stateService.env.GIT_COMMIT_HASH.substr(0, 8);
frontendGitCommitHash = this.stateService.env.GIT_COMMIT_HASH;
packetJsonVersion = this.stateService.env.PACKAGE_JSON_VERSION;
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
showNavigateToSponsor = false;

View File

@@ -73,7 +73,7 @@
<br>
<h2>
<ng-template [ngIf]="transactions?.length" i18n="asset.M_of_N">{{ (transactions?.length | number) || '?' }} of {{ txCount | number }}</ng-template>
<ng-template [ngIf]="transactions?.length" i18n="asset.M_of_N">{{ (transactions?.length | number) || '?' }} of {{ txCount | number }}&nbsp;</ng-template>
<ng-template [ngIf]="isNativeAsset" [ngIfElse]="defaultAsset" i18n="Liquid native asset transactions title">Peg In/Out and Burn Transactions</ng-template>
<ng-template #defaultAsset i18n="Default asset transactions title">Issuance and Burn Transactions</ng-template>
</h2>

View File

@@ -96,14 +96,14 @@
<td i18n="block.merkle-root">Merkle root</td>
<td><p class="break-all">{{ block.merkle_root }}</p></td>
</tr>
<tr>
<tr *ngIf="network !== 'liquid'">
<td i18n="block.bits">Bits</td>
<td>{{ block.bits | decimal2hex }}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm">
<div class="col-sm" *ngIf="network !== 'liquid'">
<table class="table table-borderless table-striped">
<tbody>
<tr>

View File

@@ -78,7 +78,7 @@ export class TransactionsListComponent implements OnInit, OnChanges {
const scrollTop = document.documentElement.scrollTop;
if (scrollHeight > 0){
const percentageScrolled = scrollTop * 100 / scrollHeight;
if (percentageScrolled > 90){
if (percentageScrolled > 70){
this.loadMore.emit();
}
}

View File

@@ -3,6 +3,7 @@
<body>
<trans-unit datatype="html" id="ngb.alert.close">
<source>Close</source>
<target>مغلق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context>
<context context-type="linenumber">74</context>
@@ -10,6 +11,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.carousel.previous">
<source>Previous</source>
<target>السابق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context>
@@ -17,6 +19,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.carousel.next">
<source>Next</source>
<target>التالي</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context>
@@ -24,6 +27,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.previous-month">
<source>Previous month</source>
<target>الشهر السابق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
<context context-type="linenumber">62,64</context>
@@ -35,6 +39,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.next-month">
<source>Next month</source>
<target>الشهر القادم</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
<context context-type="linenumber">72</context>
@@ -46,6 +51,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-month">
<source>Select month</source>
<target>اختر الشهر</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
<context context-type="linenumber">74</context>
@@ -57,6 +63,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-year">
<source>Select year</source>
<target>اختر السنه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
<context context-type="linenumber">74</context>
@@ -68,6 +75,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first">
<source>««</source>
<target>««</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -75,6 +83,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous">
<source>«</source>
<target>«</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -82,6 +91,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next">
<source>»</source>
<target>»</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -89,6 +99,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last">
<source>»»</source>
<target>»»</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -96,6 +107,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first-aria">
<source>First</source>
<target>أول</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -103,6 +115,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous-aria">
<source>Previous</source>
<target>السابق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -110,6 +123,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next-aria">
<source>Next</source>
<target>القادم</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -117,6 +131,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last-aria">
<source>Last</source>
<target>آخر</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -124,6 +139,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.progressbar.value">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context>
<context context-type="linenumber">101</context>
@@ -131,6 +147,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.HH">
<source>HH</source>
<target>ساعه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -138,6 +155,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.hours">
<source>Hours</source>
<target>ساعات</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -145,6 +163,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.MM">
<source>MM</source>
<target>دقيقه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -152,6 +171,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.minutes">
<source>Minutes</source>
<target>دقائق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -159,6 +179,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-hours">
<source>Increment hours</source>
<target>ساعات اضافيه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -166,6 +187,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-hours">
<source>Decrement hours</source>
<target>انتقاص الساعات</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -173,6 +195,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-minutes">
<source>Increment minutes</source>
<target>دقائق اضافيه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -180,6 +203,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-minutes">
<source>Decrement minutes</source>
<target>انتقاص الدقائق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -187,6 +211,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.SS">
<source>SS</source>
<target>ثانيه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -194,6 +219,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.seconds">
<source>Seconds</source>
<target>ثوان</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -201,6 +227,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-seconds">
<source>Increment seconds</source>
<target>ثواني اضافيه</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -208,6 +235,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-seconds">
<source>Decrement seconds</source>
<target>انتقاص الثوان</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -215,6 +243,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.PM">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -222,6 +251,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.AM">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -229,6 +259,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.toast.close-aria">
<source>Close</source>
<target>مغلق</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context>
<context context-type="linenumber">137</context>
@@ -315,6 +346,7 @@
</trans-unit>
<trans-unit datatype="html" id="cf1fbcd10d4be4845152f2e10d1db9bc61dd9410">
<source>Issuance TX</source>
<target>مصدر المعامله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
<context context-type="linenumber">23,26</context>
@@ -475,7 +507,7 @@
</trans-unit>
<trans-unit datatype="html" id="960cd598cbd85edb0a254ff3e59574d2c5cb888c">
<source>Hash</source>
<target>هاش</target>
<target>معرف التشفير</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
<context context-type="linenumber">17</context>
@@ -514,6 +546,7 @@
</trans-unit>
<trans-unit datatype="html" id="6d0db947a91dc4884aefa858a27fc848530e6404">
<source>Previous hash</source>
<target>معرف التشفير السابق</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
<context context-type="linenumber">35</context>
@@ -535,6 +568,7 @@
</trans-unit>
<trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2">
<source>BSQ Blocks</source>
<target>كتل BSQ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
<context context-type="linenumber">2,7</context>
@@ -622,6 +656,7 @@
</trans-unit>
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
<source>Bisq Trading Volume</source>
<target>حجم التداول في Bisq</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">3,7</context>
@@ -634,6 +669,7 @@
</trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source>
<target>الاسواق</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -646,6 +682,7 @@
</trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source>
<target>اسواق البتكوين</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -658,6 +695,7 @@
</trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source>
<target>العمله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context>
@@ -697,6 +735,7 @@
</trans-unit>
<trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff">
<source>Volume (7d)</source>
<target>حجم التداول (٧ ايام)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">29</context>
@@ -705,6 +744,7 @@
</trans-unit>
<trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6">
<source>Trades (7d)</source>
<target>التداول ( ٧ ايام )</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">30</context>
@@ -717,6 +757,7 @@
</trans-unit>
<trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3">
<source>Latest Trades</source>
<target>احدث التداولات</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">52,55</context>
@@ -733,6 +774,7 @@
</trans-unit>
<trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6">
<source>Bisq Price Index</source>
<target>مؤشر السعر Bisq</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">9,11</context>
@@ -741,6 +783,7 @@
</trans-unit>
<trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349">
<source>Bisq Market Price</source>
<target>سعر سوق Bisq</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -773,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -788,6 +831,7 @@
</trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source>
<target>طلبات الشراء</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context>
@@ -796,6 +840,7 @@
</trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source>
<target>طلبات البيع</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context>
@@ -804,6 +849,7 @@
</trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>الكمية (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context>
@@ -816,6 +862,7 @@
</trans-unit>
<trans-unit datatype="html" id="2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4">
<source>BSQ statistics</source>
<target>احصائيات BSQ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">2</context>
@@ -841,6 +888,7 @@
</trans-unit>
<trans-unit datatype="html" id="3218e6768d0d5fbc69d4931819e21451c89ba8ed">
<source>Minted amount</source>
<target>المبلغ المسكوك</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">16</context>
@@ -853,6 +901,7 @@
</trans-unit>
<trans-unit datatype="html" id="32377aae07f946d943f9361c8e518f714988c619">
<source>Burnt amount</source>
<target>المبالغ المحترقة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">20</context>
@@ -886,6 +935,7 @@
</trans-unit>
<trans-unit datatype="html" id="fb5b5aec9a6add4912de64b7bbc55884cc7f8e3a">
<source>Unspent TXOs</source>
<target>لم يتم صرف مخرجات المعامله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">28</context>
@@ -898,6 +948,7 @@
</trans-unit>
<trans-unit datatype="html" id="0f8a41c901cd606bd3389d8a022cee193264f20b">
<source>Spent TXOs</source>
<target>تم صرف مخرجات المعامله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">32</context>
@@ -919,6 +970,7 @@
</trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source>
<target>التاريخ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context>
@@ -994,6 +1046,7 @@
</trans-unit>
<trans-unit datatype="html" id="8fe73a4787b8068b2ba61f54ab7e0f9af2ea1fc9">
<source>Version</source>
<target>الاصدار</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
<context context-type="linenumber">29</context>
@@ -1017,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1039,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1057,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1156,6 +1209,7 @@
</trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source>
<target>تحويلات BSQ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context>
@@ -1163,6 +1217,7 @@
</trans-unit>
<trans-unit datatype="html" id="94c248797dd2b6af49068cb49c3b4bc26bec6a16">
<source>TXID</source>
<target>رقم الحواله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">18,19</context>
@@ -1178,6 +1233,7 @@
</trans-unit>
<trans-unit datatype="html" id="8411955056013208681">
<source>Asset listing fee</source>
<target>رسوم الإدراج</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">30</context>
@@ -1185,6 +1241,7 @@
</trans-unit>
<trans-unit datatype="html" id="4096113720451832029">
<source>Blind vote</source>
<target>التصويت المخفي</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">31</context>
@@ -1192,6 +1249,7 @@
</trans-unit>
<trans-unit datatype="html" id="8029165479004970466">
<source>Compensation request</source>
<target>طلب تعويض</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">32</context>
@@ -1199,6 +1257,7 @@
</trans-unit>
<trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source>
<target>منشأ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context>
@@ -1206,6 +1265,7 @@
</trans-unit>
<trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source>
<target>غير نظامي</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context>
@@ -1213,6 +1273,7 @@
</trans-unit>
<trans-unit datatype="html" id="1899519213652410949">
<source>Lockup</source>
<target>حجز</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">35</context>
@@ -1220,6 +1281,7 @@
</trans-unit>
<trans-unit datatype="html" id="450749685636583691">
<source>Pay trade fee</source>
<target>دفع رسوم التداول</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">36</context>
@@ -1227,6 +1289,7 @@
</trans-unit>
<trans-unit datatype="html" id="4844032232639560116">
<source>Proof of burn</source>
<target>تاكيد الحرق</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">37</context>
@@ -1234,6 +1297,7 @@
</trans-unit>
<trans-unit datatype="html" id="2011097393756618787">
<source>Proposal</source>
<target>عرض</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">38</context>
@@ -1241,6 +1305,7 @@
</trans-unit>
<trans-unit datatype="html" id="3275831985256202873">
<source>Reimbursement request</source>
<target>طلب سداد</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">39</context>
@@ -1248,6 +1313,7 @@
</trans-unit>
<trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source>
<target>نقل BSQ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context>
@@ -1255,6 +1321,7 @@
</trans-unit>
<trans-unit datatype="html" id="4545041448523656285">
<source>Unlock</source>
<target>فتح</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">41</context>
@@ -1262,6 +1329,7 @@
</trans-unit>
<trans-unit datatype="html" id="8694527859973232423">
<source>Vote reveal</source>
<target>اعلان التصويت</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">42</context>
@@ -1269,6 +1337,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-transactions.filter">
<source>Filter</source>
<target>تنقيه</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">56,55</context>
@@ -1292,6 +1361,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-graph-trades">
<source>Trades</source>
<target>تداولات</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">90</context>
@@ -1299,6 +1369,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-graph-volume">
<source>Volume</source>
<target> حجم التداول</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">91</context>
@@ -1306,25 +1377,27 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>مشروع ميم-بول مفتوح المصدر</target>
<target>مشروع Mempool مفتوح المصدر</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>بناء مستكشف mempool و سلسلة الكتل لمجتمع البتكوين ، مع التركيز على رسوم المعاملات والنظام البيئي متعدد الطبقات ، من دون أي إعلانات ، أو عملات رقمية بديلة ، أو متتبعات تابعة لجهات خارجية.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<target>رعاة المشروع 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1333,7 +1406,7 @@
<target>رعاة من المجتمع ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1342,15 +1415,16 @@
<target>كن راعياً ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<target>انتقل إلى <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/> https://mempool.space/sponsor <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> الى الرعاة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1363,31 +1437,34 @@
<target>التكامل المجتمعي</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
<trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb">
<source>Community Alliances</source>
<target>التحالفات المجتمعية</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
<trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2">
<source>Project Contributors</source>
<target>المساهمون في المشروع</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
<source>Project Maintainers</source>
<target>فريق صيانة المشروع</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1459,6 +1536,7 @@
</trans-unit>
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18">
<source><x ctype="x-i" equiv-text="&lt;i&gt;" id="START_ITALIC_TEXT"/>The number of transactions on this address exceeds the Electrum server limit<x ctype="x-i" equiv-text="&lt;/i&gt;" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/> Consider viewing this address on the official Mempool website instead: </source>
<target><x ctype="x-i" equiv-text="&lt;i&gt;" id="START_ITALIC_TEXT"/> لقد تجاوز عدد التحويلات على هذا العنوان الحد المسموح لسيرفر ايليكترم <x ctype="x-i" equiv-text="&lt;/i&gt;" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/> ضع في اعتبارك عرض هذا العنوان على موقع Mempool الرسمي بدلاً من ذلك:</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">127,130</context>
@@ -1515,6 +1593,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>نقطة النهاية</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1671,6 +1750,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>وصف</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -1838,6 +1918,7 @@
</trans-unit>
<trans-unit datatype="html" id="e12cd52eaa77b446ba97436c145b59741151adf3">
<source>Returns details about an address. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats each contain an object with <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>إعادة تفاصيل حول العنوان. الحقول المتاحة: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>العنوان <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>، <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> احصائيات السلسله <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>، و <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>احصائيات mempool <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>سلسلة، mempool <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/> كل إحصائيات تحتوي على <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> عدد الحوالات <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>، <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>عدد مخرجات الحواله المحصوره <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> ، <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> مجموع مخرجات الحواله<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>، <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> مخرجات الحواله المصروفه المسجله <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>، و <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> مخرجات الحواله المصروفه<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">26,27</context>
@@ -1845,6 +1926,7 @@
</trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
<source>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 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (see below).</source>
<target>احصل على سجل المعاملات للعنوان المحدد / scripthash ، مرتبة بالأحدث أولاً. إرجاع ما يصل إلى 50 معاملة من معاملات mempool بالإضافة إلى أول 25 معاملة مؤكدة. يمكنك طلب المزيد من المعاملات المؤكدة باستخدام <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> اخر ظهور للحواله عن طريق عنوان الحواله <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>( شاهد بالاسفل )</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context>
@@ -1852,6 +1934,7 @@
</trans-unit>
<trans-unit datatype="html" id="5676910aa3ffb568079a7499b366744fe3fd87ea">
<source>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.</source>
<target>احصل على محفوظات المعاملات المؤكدة للعنوان المحدد / scripthash ، مرتبة بالأحدث أولاً. إرجاع 25 معاملة لكل صفحة. يمكن طلب المزيد من خلال تحديد ملف رقم هوية التحويله الأخير الذي تمت رؤيته بواسطة الاستعلام السابق.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">61,63</context>
@@ -1992,6 +2075,7 @@
</trans-unit>
<trans-unit datatype="html" id="a29245620333b4788dee4c478c327d99846513c6">
<source>BSQ</source>
<target>BSQ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">368,370</context>
@@ -2229,23 +2313,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>مثال على الرمز</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2253,8 +2330,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>تنزيل المجموعة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>الاستجابة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2263,6 +2350,7 @@
</trans-unit>
<trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b">
<source>Asset</source>
<target>أصل</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">2</context>
@@ -2354,8 +2442,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -2638,6 +2726,7 @@
</trans-unit>
<trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8">
<source>Merkle root</source>
<target>جذع ميركيل</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">96,98</context>
@@ -2654,6 +2743,7 @@
</trans-unit>
<trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a">
<source>Difficulty</source>
<target>الصعوبه</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">110,113</context>
@@ -3016,6 +3106,7 @@
</trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source>
<target>الرعاة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context>
@@ -3099,6 +3190,7 @@
</trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>فقط للتفاز</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
@@ -3272,7 +3364,7 @@
<target>غير مؤكده</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3361,6 +3453,7 @@
</trans-unit>
<trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b">
<source>Descendant</source>
<target>منحدر</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">163</context>
@@ -3370,6 +3463,7 @@
</trans-unit>
<trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511">
<source>Ancestor</source>
<target>الاصل</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">177</context>
@@ -3437,6 +3531,7 @@
</trans-unit>
<trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be">
<source>Effective fee rate</source>
<target>معدل الرسوم الفعلي</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">345</context>
@@ -3594,6 +3689,7 @@
</trans-unit>
<trans-unit datatype="html" id="f85c05147b720576e50336cf26f63d3b05601699">
<source>This transaction saved <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% on fees by using native SegWit-Bech32</source>
<target>هذه التحويلة وفرة <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>٪ من الرسوم لاستخدام النيتف سيقويت Bech32</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">1</context>
@@ -3620,6 +3716,7 @@
</trans-unit>
<trans-unit datatype="html" id="975f46d122f2ca0a187308399a58b44d61ef08eb">
<source>This transaction saved <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% on fees by using SegWit and could save <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION_1"/>% more by fully upgrading to native SegWit-Bech32</source>
<target>هذه التحويله وفرة <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>٪ من رسوم التحويل عن طريق استخدام السيقويت و ممكن ان توفر <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION_1"/>٪ اكثر عن طريق التطور الى النيتف سيقويت Bech32</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">3</context>
@@ -3628,6 +3725,7 @@
</trans-unit>
<trans-unit datatype="html" id="1be04d5407059059b596f72696a3d1704ce9c0ef">
<source>This transaction could save <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION"/>% on fees by upgrading to native SegWit-Bech32 or <x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/>% by upgrading to SegWit-P2SH</source>
<target>كان من الممكن أن توفر هذه التحويله<x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION"/>٪ من الرسوم عن طريق الترقية إلى SegWit-Bech32 أو <x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/>٪ عن طريق الترقية إلى SegWit-P2SH</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">5</context>
@@ -3645,6 +3743,7 @@
</trans-unit>
<trans-unit datatype="html" id="f0e7d6d900658ee5ce66d8fef3637caf13891c53">
<source>RBF</source>
<target>استبدل بالرسوم</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">8</context>
@@ -3658,6 +3757,7 @@
</trans-unit>
<trans-unit datatype="html" id="85ce9e4f45873116b746899169cbc3445321d60c">
<source>This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method</source>
<target>لا تدعم هذه المعاملة ( الاستبدال بالرسوم ) ولا يمكن دفع الرسوم باستخدام هذه الطريقة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">9</context>
@@ -3676,6 +3776,7 @@
</trans-unit>
<trans-unit datatype="html" id="9d92d02835569b64f0dce58e81a0d22dd798f6e5">
<source>Only ~<x equiv-text="{{ medianFeeNeeded | number : '1.1-1' }}" id="INTERPOLATION"/> sat/vB was needed to get into this block</source>
<target>المتبقي فقط ~ <x equiv-text="{{ medianFeeNeeded | number : '1.1-1' }}" id="INTERPOLATION"/> سات/ في بي للدخول في هذه الكتله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context>
<context context-type="linenumber">2</context>
@@ -3711,6 +3812,7 @@
</trans-unit>
<trans-unit datatype="html" id="e6213c3f05146287cf121868d9f3d3c3ff5f9714">
<source>TXs</source>
<target>التحويلات</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">80,82</context>
@@ -3759,6 +3861,7 @@
</trans-unit>
<trans-unit datatype="html" id="e8bcb762b48cf52fbea66ce9c4f6b970b99a80fd">
<source>Collapse</source>
<target>انهيار</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">132,136</context>
@@ -3767,6 +3870,7 @@
</trans-unit>
<trans-unit datatype="html" id="1f9a922cb4010ee20eb9a241a22307b670f7628c">
<source>Minimum fee</source>
<target>الحد الادنى للعموله</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">161,162</context>
@@ -3776,6 +3880,7 @@
</trans-unit>
<trans-unit datatype="html" id="4c3955cfe5955657297481efaf3ada8c55c75b2c">
<source>Purging</source>
<target>تطهير</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">162,164</context>
@@ -3785,6 +3890,7 @@
</trans-unit>
<trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5">
<source>Memory usage</source>
<target>استخدام الذاكرة</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">174,176</context>
@@ -3812,6 +3918,7 @@
</trans-unit>
<trans-unit datatype="html" id="2799825781368047816">
<source>Transaction fee</source>
<target>رسوم التحويل</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
<context context-type="linenumber">11</context>

File diff suppressed because it is too large Load Diff

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Open source projekt Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Pro bitcoin komunitu byl vyvinut a provozován průzkumník a rozhraní API, které se zaměřují na rozvíjející se trh transakčních poplatků, aby pomohlo našemu přechodu do vícevrstvého ekosystému bez reklam, altcoinů nebo sledovačů třetích stran.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Firemní sponzoři 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Komunitní sponzoři ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Staňte se sponzorem ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1422,7 @@
<target>Přejděte na <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> a sponzorujte nás</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Komunitní integrace</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1444,7 @@
<target>Komunitní aliance</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1453,7 @@
<target>Přispěvatelé projektu</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1462,7 @@
<target>Správci projektu</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1593,6 +1591,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Endpoint</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1749,6 +1748,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Popis</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -2345,23 +2345,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Příklad kódu</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2362,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Nainstalujte balíček</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Odezva</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2471,9 +2474,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3402,7 @@
<target>Nepotvrzeno</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Das Mempool Open Source Projekt</target>
<target>Das Open-Source-Projekt Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Ein Explorer und eine API, die für die Bitcoin-Community entwickelt und betrieben werden und sich auf den entstehenden Transaktionsgebührenmarkt konzentrieren. Alles um unseren Übergang in ein mehrschichtiges Ökosystem ohne Werbung, Altcoins oder Trackern von Drittanbietern zu erleichtern.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>Aufbau eines Mempools und eines Blockchain-Explorers für die Bitcoin-Community, der sich auf den Transaktionsgebührenmarkt und das mehrschichtige Ökosystem konzentriert, ohne Werbung, Altcoins oder Drittanbieter-Tracker.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Unternehmenssponsoren</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>Community-Sponsoren ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1415,7 @@
<target>Werde ein Sponsor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1424,7 @@
<target>Gehen Sie zu <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> um zu sponsern</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Community-Integrationen</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1446,7 @@
<target>Community-Allianzen</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1455,7 @@
<target>Projektmitwirkende</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1464,7 @@
<target>Projektbetreuer</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Endpunkt</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Beschreibung</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Codebeispiel</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Installationspaket</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Antwort</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> von <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> von <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3405,7 @@
<target>Unbestätigt</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -746,7 +746,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -981,7 +981,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1002,7 +1002,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1019,7 +1019,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1262,22 +1262,22 @@
<source>The Mempool Open Source Project</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1285,7 +1285,7 @@
<source>Community Sponsors ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1293,7 +1293,7 @@
<source>Become a sponsor ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1301,7 +1301,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1313,7 +1313,7 @@
<source>Community Integrations</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1321,7 +1321,7 @@
<source>Community Alliances</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1329,7 +1329,7 @@
<source>Project Contributors</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1337,7 +1337,7 @@
<source>Project Maintainers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2157,23 +2157,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2181,6 +2173,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2274,8 +2274,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3118,7 +3118,7 @@
<source>Unconfirmed</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>El Proyecto Open Source Mempool</target>
<target>Proyecto de Código Abierto The Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Un explorador y API desarrollado y operado por la comunidad Bitcoin, enfocada en el emergente mercado de tasas de transacción para ayudar en nuestra transación un ecosistema multicapa, sin anuncios, altcoins o rastreadores de terceros.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>Construímos un explorador de mempool y cadena de bloques para la comunidad Bitcoin, con el foco en el mercado de transacciones y el ecosistema multicapa, sin anuncios, altcoins o rastreadores de terceros.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Empresas patrocinadoras 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>Patrocinadores de la comunidad ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1415,7 @@
<target>Sé patrocinador ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1424,7 @@
<target>Navega a <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> para patrocinar</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Integraciones de la comunidad</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1446,7 @@
<target>Alianzas de la comunidad</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1455,7 @@
<target>Contribuyentes al proyecto</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1464,7 @@
<target>Mantenedores del proyecto</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Endpoint</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Descripción</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Codigo de ejemplo</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Instalar Paquete</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Respuesta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3405,7 @@
<target>Sin confirmar</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1380,16 +1380,16 @@
<target>پروژهٔ متن‌باز ممپول</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>یک کاوشگر و رابط برنامه‌نویسی نرم‌افزار که برای جامعه بیت‌کوین توسعه پیدا می‌کند و اجرا می‌شود. پروژه ممپول با تمرکز بر بازار نوظهور کارمزدِ تراکنش‌ها، انتقال ما به یک زیست‌بوم چند لایه را تسهیل می‌کند. بدون تبلیغات، آلت‌کوین‌ها و مزاحمت برنامه‌های ردیاب.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>یک کاوشگر ممپول و بلاکچین که برای جامعه بیت‌کوین توسعه پیدا می‌کند. با تمرکز بر بازار کارمزدِ تراکنش‌ها و زیست‌بوم چند لایه. بدون تبلیغات، آلت‌کوین‌ها و مزاحمت برنامه‌های ردیاب.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>حامیان سازمانی 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>حامیان جامعه ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1415,7 @@
<target>حامی شوید ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1424,7 @@
<target>برای حامی شدن به اینجا برو <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>پیاده‌سازی‌ها</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1446,7 @@
<target>متحدین جامعه</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1455,7 @@
<target>مشارکت کنندگان</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1464,7 @@
<target>نگهدارندگان پروژه</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2351,25 +2351,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>بسته نصب</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>نمونه کد</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2377,6 +2368,15 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>بسته نصب</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>پاسخ دریافتی</target>
@@ -2480,9 +2480,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> از <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> از <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3409,7 +3409,7 @@
<target>تأییدنشده</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Mempool avoimen lähdekoodin projekti </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Selain ja ohjelmointirajapinta on kehitetty ja jota käytetään Bitcoin-yhteisöä varten, keskittyy kehittyviin siirtokulumarkkinoihin auttamaan siirtymistä monikerroksiseen ekosysteemiin ilman mainoksia, altcoineja tai kolmansien osapuolten seurantoja. </target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Yritys-sponsorit 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Yhteisön sponsorit ❤️ </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,15 +1413,16 @@
<target>Ryhdy sponsoriksi ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<target>Siirry osoitteeseen <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> sponsoroidaksesi</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1436,7 +1435,7 @@
<target>Yhteisön integraatiot </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1445,7 +1444,7 @@
<target>Yhteisöliittoumat </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1454,7 +1453,7 @@
<target>Projektin avustajat</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1463,7 +1462,7 @@
<target>Projektin ylläpitäjät </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1592,6 +1591,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Päätepiste</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1748,6 +1748,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Kuvaus</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -1923,6 +1924,7 @@
</trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
<source>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 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (see below).</source>
<target>Hae siirtotapahtumahistoria määritellyn osoitteen/skriptitiivisteen osalta lajiteltuna uusin ensin. Palauttaa enintään 50 mempool-siirtotapahtumaa sekä 25 ensimmäistä vahvistettua siirtotapahtumaa. Voit pyytää lisää vahvistettuja siirtotapahtumia käyttämällä <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (katso alla).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context>
@@ -2158,6 +2160,7 @@
</trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source>
<target>Palauttaa tällä hetkellä ehdotetut maksut uusille siirtotapahtumille.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context>
@@ -2167,6 +2170,7 @@
</trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source>
<target>Palauttaa nykyisen mempoolin projisoituina lohkoina.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context>
@@ -2205,6 +2209,7 @@
</trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f">
<source>Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.</source>
<target>Hae koko luettelo mempoolin siirtotunniste-tietueista array-muodossa. Siirtotunnisteiden järjestys on mielivaltainen eikä vastaa bitcoindia.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context>
@@ -2339,23 +2344,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Koodiesimerkki</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2363,8 +2361,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Asenna paketti</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Vastaus</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2465,9 +2473,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>/<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3135,6 +3142,7 @@
</trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source>
<target>Sponsoroi</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context>
@@ -3219,6 +3227,7 @@
</trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Vain TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
@@ -3392,7 +3401,7 @@
<target>Vahvistamatta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -802,7 +802,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1056,7 +1056,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1078,7 +1078,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1096,7 +1096,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1359,22 +1359,22 @@
<source>The Mempool Open Source Project</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1382,7 +1382,7 @@
<source>Community Sponsors ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1391,7 +1391,7 @@
<target>Devenir sponsor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1399,7 +1399,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1411,7 +1411,7 @@
<source>Community Integrations</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1419,7 +1419,7 @@
<source>Community Alliances</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1427,7 +1427,7 @@
<source>Project Contributors</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1435,7 +1435,7 @@
<source>Project Maintainers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2298,23 +2298,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2322,6 +2314,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2423,8 +2423,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3345,7 +3345,7 @@
<target>non confirmée</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1379,15 +1379,15 @@
<source>The Mempool Open Source Project</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1395,7 +1395,7 @@
<target>נותני חסות ארגוניים 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1404,7 +1404,7 @@
<target>נותני חסות מהקהילה ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1413,7 +1413,7 @@
<target>הצטרף כנותן חסות ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1421,7 +1421,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1434,7 +1434,7 @@
<target>שיתופי פעולה עם הקהילה</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1443,7 +1443,7 @@
<target>בני ברית מהקהילה</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1452,7 +1452,7 @@
<target>תורמי הפרוייקט</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1461,7 +1461,7 @@
<target>מתחזקי הפרוייקט</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2326,23 +2326,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2350,6 +2342,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2452,9 +2452,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> מתוך <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3380,7 +3379,7 @@
<target>טרם אושרו</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -747,7 +747,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -982,7 +982,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1003,7 +1003,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1021,7 +1021,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1268,22 +1268,22 @@
<source>The Mempool Open Source Project</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1291,7 +1291,7 @@
<source>Community Sponsors ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1299,7 +1299,7 @@
<source>Become a sponsor ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1307,7 +1307,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1319,7 +1319,7 @@
<source>Community Integrations</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1327,7 +1327,7 @@
<source>Community Alliances</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1335,7 +1335,7 @@
<source>Project Contributors</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1343,7 +1343,7 @@
<source>Project Maintainers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2163,23 +2163,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2187,6 +2179,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2280,8 +2280,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3128,7 +3128,7 @@
<target>Nepotvrđeno</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1380,16 +1380,16 @@
<target>A Mempool Nyílt Forráskódú Projekt</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Egy modern tranzakció felfedező és API, exkluzívan fejleszve és működtetve a Bitcoin közösség számára. A mempool a feltörekvő tranzakciós díjak piacára összpontosít, hogy ezzel segítsen áttérni egy többrétegű ökoszisztémába. Mindezt hirdetések, shitcoinok vagy harmadik féltől származó nyomkövető sütik nélkül. </target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>Építjük a mempool és blockchain felfedezőt a Bitcoin közösség számára, a tranzakciós díj piac és több-rétegű ekoszitszémára fokuszálva, mindez annélkül hogy bármilyen hirdetés, altcoin vagy harmadik-fél nyomkövető sütiket használnánk hozzá.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Enterprise Szponzorok 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>Közösségi Szponzorok ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1415,7 @@
<target>Legyél te is támogatónk! ❤️ </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1424,7 @@
<target>Navigálj a <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/>-ra hogy támogasd a projektet</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Közösségi Integrációk</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1446,7 @@
<target>Közösségi Szövetségesek</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1455,7 @@
<target>Projekt Kontribútorok</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1464,7 @@
<target>Projekt Fenntartók</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2347,24 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Csomag Telepítése</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Kód Példa</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2372,8 +2364,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Csomag Telepítése</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Válasz</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2474,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> a <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>-ből</target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> a <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>  </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3403,7 +3405,7 @@
<target>Nem megerősített</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Il progetto Open Source Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Un exploratore e API sviluppato e operato dalla comunità Bitcoin, incentrato sul nascente mercato delle commissioni di transazione per aiutare la transizione verso un ecosistema a più livelli, senza pubblicità, altcoins o trackers esterni.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Sponsor Aziendali 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Sponsor comunitari ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Diventa uno sponsor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1422,7 @@
<target>Vai a <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/> https://mempool.space/sponsor <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> per sponsorizzare</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Integrazioni della comunità</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1444,7 @@
<target>Alleanze della comunità</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1453,7 @@
<target>Hanno contribuito al progetto</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1462,7 @@
<target>Manutentori del progetto</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2346,23 +2344,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2370,6 +2360,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2472,9 +2470,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> di <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3401,7 +3398,7 @@
<target>Non confermata</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Mempoolオープンソースプロジェクト</target>
<target>メムプール・オープンソースプロジェクト</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>ビットコインコミュニティーによって開発、管理されるエキスプローラとAPIです。多層エコシステムへの移行を支援するため、新興トランザクション手数料市場に中心ます。広告、アルトコイン、第三者のトラッカーは含まれていません。</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>ビットコインコミュニティーため、新興トランザクション手数料市場に中心するメモリープールとブロックチェーンエキスプローラを開発しています。広告、アルトコイン、第三者のトラッカーは含まれていません。</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>企業のスポンサー 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>コミュニティーのスポンサー❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1415,7 @@
<target>スポンサーになる❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1424,7 @@
<target>スポンサーになるのに、<x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/>を訪れる</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>コミュニティーの結合</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1446,7 @@
<target>コミュニティーの提携</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1455,7 @@
<target>プロジェクト貢献者</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1464,7 @@
<target>プロジェクトメンテナー</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>エンドポイント</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>記述</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>コード例</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>インストールパッケージ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>応答</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3405,7 @@
<target>未確認</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -774,7 +774,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1023,7 +1023,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1045,7 +1045,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1063,7 +1063,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1316,22 +1316,22 @@
<source>The Mempool Open Source Project</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1339,7 +1339,7 @@
<source>Community Sponsors ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1348,7 +1348,7 @@
<target>გახდი სპონსორი ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1356,7 +1356,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1368,7 +1368,7 @@
<source>Community Integrations</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1376,7 +1376,7 @@
<source>Community Alliances</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1384,7 +1384,7 @@
<source>Project Contributors</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1392,7 +1392,7 @@
<source>Project Maintainers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2229,23 +2229,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2253,6 +2245,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2354,8 +2354,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3275,7 +3275,7 @@
<target>დაუდასტურებული</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -3,6 +3,7 @@
<body>
<trans-unit datatype="html" id="ngb.alert.close">
<source>Close</source>
<target>닫기</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context>
<context context-type="linenumber">74</context>
@@ -10,6 +11,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.carousel.previous">
<source>Previous</source>
<target>이전</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context>
@@ -17,6 +19,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.carousel.next">
<source>Next</source>
<target>다음</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context>
@@ -24,6 +27,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.previous-month">
<source>Previous month</source>
<target>지난달</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
<context context-type="linenumber">62,64</context>
@@ -35,6 +39,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.next-month">
<source>Next month</source>
<target>다음 달</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
<context context-type="linenumber">72</context>
@@ -46,6 +51,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-month">
<source>Select month</source>
<target>달/월 선택하기</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
<context context-type="linenumber">74</context>
@@ -57,6 +63,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-year">
<source>Select year</source>
<target>연/년 선택하기</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
<context context-type="linenumber">74</context>
@@ -68,6 +75,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first">
<source>««</source>
<target>««</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -75,6 +83,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous">
<source>«</source>
<target>«</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -82,6 +91,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next">
<source>»</source>
<target>»</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -89,6 +99,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last">
<source>»»</source>
<target>»»</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -96,6 +107,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first-aria">
<source>First</source>
<target>첫째</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -103,6 +115,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous-aria">
<source>Previous</source>
<target>이전</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -110,6 +123,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next-aria">
<source>Next</source>
<target>다음</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -117,6 +131,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last-aria">
<source>Last</source>
<target>마지막</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -124,6 +139,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.progressbar.value">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context>
<context context-type="linenumber">101</context>
@@ -131,6 +147,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.HH">
<source>HH</source>
<target>HH</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -138,6 +155,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.hours">
<source>Hours</source>
<target>시간</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -145,6 +163,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.MM">
<source>MM</source>
<target>MM</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -152,6 +171,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.minutes">
<source>Minutes</source>
<target>분</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -159,6 +179,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-hours">
<source>Increment hours</source>
<target>증가한 시간</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -166,6 +187,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-hours">
<source>Decrement hours</source>
<target>감소한 시간</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -173,6 +195,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-minutes">
<source>Increment minutes</source>
<target>증가한 분</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -180,6 +203,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-minutes">
<source>Decrement minutes</source>
<target>감소한 분</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -187,6 +211,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.SS">
<source>SS</source>
<target>SS</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -194,6 +219,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.seconds">
<source>Seconds</source>
<target>초</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -201,6 +227,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-seconds">
<source>Increment seconds</source>
<target>증가한 초</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -208,6 +235,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-seconds">
<source>Decrement seconds</source>
<target>감소한 초</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -229,6 +257,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.toast.close-aria">
<source>Close</source>
<target>닫기</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context>
<context context-type="linenumber">137</context>
@@ -276,6 +305,7 @@
</trans-unit>
<trans-unit datatype="html" id="4ad173c0e4010b1f25bf58e96a383edc1b59cd80">
<source>Ticker</source>
<target>시세 표시표</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/assets/assets.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -536,6 +566,7 @@
</trans-unit>
<trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2">
<source>BSQ Blocks</source>
<target>BSQ 블록들</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
<context context-type="linenumber">2,7</context>
@@ -623,6 +654,7 @@
</trans-unit>
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
<source>Bisq Trading Volume</source>
<target>Bisq 거래량</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">3,7</context>
@@ -635,6 +667,7 @@
</trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source>
<target>시장</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -647,6 +680,7 @@
</trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source>
<target>비트코인 시장</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -659,6 +693,7 @@
</trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source>
<target>화폐</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context>
@@ -698,6 +733,7 @@
</trans-unit>
<trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff">
<source>Volume (7d)</source>
<target>볼륨 (7일)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">29</context>
@@ -706,6 +742,7 @@
</trans-unit>
<trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6">
<source>Trades (7d)</source>
<target>거래 (7일)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">30</context>
@@ -718,6 +755,7 @@
</trans-unit>
<trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3">
<source>Latest Trades</source>
<target>최신 거래</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">52,55</context>
@@ -734,6 +772,7 @@
</trans-unit>
<trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6">
<source>Bisq Price Index</source>
<target>Bisq 가격 지수</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">9,11</context>
@@ -742,6 +781,7 @@
</trans-unit>
<trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349">
<source>Bisq Market Price</source>
<target>Bisq 시장 가격</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -774,7 +814,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -789,6 +829,7 @@
</trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source>
<target>오퍼 구매하기</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context>
@@ -797,6 +838,7 @@
</trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source>
<target>오퍼 판매하기</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context>
@@ -805,6 +847,7 @@
</trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>거래량 (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context>
@@ -925,6 +968,7 @@
</trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source>
<target>날짜</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context>
@@ -1024,7 +1068,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1046,7 +1090,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1064,7 +1108,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1163,6 +1207,7 @@
</trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source>
<target>BSQ 거래</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context>
@@ -1186,6 +1231,7 @@
</trans-unit>
<trans-unit datatype="html" id="8411955056013208681">
<source>Asset listing fee</source>
<target>자산 상장 수수료</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">30</context>
@@ -1193,6 +1239,7 @@
</trans-unit>
<trans-unit datatype="html" id="4096113720451832029">
<source>Blind vote</source>
<target>블라인드 투표</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">31</context>
@@ -1200,6 +1247,7 @@
</trans-unit>
<trans-unit datatype="html" id="8029165479004970466">
<source>Compensation request</source>
<target>보상 요청</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">32</context>
@@ -1207,6 +1255,7 @@
</trans-unit>
<trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source>
<target>제네시스</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context>
@@ -1214,6 +1263,7 @@
</trans-unit>
<trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source>
<target>불규칙함</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context>
@@ -1221,6 +1271,7 @@
</trans-unit>
<trans-unit datatype="html" id="1899519213652410949">
<source>Lockup</source>
<target>락업</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">35</context>
@@ -1228,6 +1279,7 @@
</trans-unit>
<trans-unit datatype="html" id="450749685636583691">
<source>Pay trade fee</source>
<target>거래 수수료 지불하기</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">36</context>
@@ -1235,6 +1287,7 @@
</trans-unit>
<trans-unit datatype="html" id="4844032232639560116">
<source>Proof of burn</source>
<target>소각 증명</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">37</context>
@@ -1242,6 +1295,7 @@
</trans-unit>
<trans-unit datatype="html" id="2011097393756618787">
<source>Proposal</source>
<target>제안</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">38</context>
@@ -1249,6 +1303,7 @@
</trans-unit>
<trans-unit datatype="html" id="3275831985256202873">
<source>Reimbursement request</source>
<target>환급 요청</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">39</context>
@@ -1256,6 +1311,7 @@
</trans-unit>
<trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source>
<target>BSQ로 변환하기 </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context>
@@ -1263,6 +1319,7 @@
</trans-unit>
<trans-unit datatype="html" id="4545041448523656285">
<source>Unlock</source>
<target>열기</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">41</context>
@@ -1270,6 +1327,7 @@
</trans-unit>
<trans-unit datatype="html" id="8694527859973232423">
<source>Vote reveal</source>
<target>투표 공개</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">42</context>
@@ -1277,6 +1335,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-transactions.filter">
<source>Filter</source>
<target>필터</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">56,55</context>
@@ -1300,6 +1359,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-graph-trades">
<source>Trades</source>
<target>거래</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">90</context>
@@ -1307,6 +1367,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-graph-volume">
<source>Volume</source>
<target>양</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">91</context>
@@ -1314,32 +1375,38 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>맴풀 오픈 소스 프로젝트</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>비트코인 커뮤니티를 위해 맴풀과 비트코인 익스플로어를 만들었습니다.
트랜잭션 비용 마켓, 멀티 레이어 체계를
광고, 알트코인, 다른 채굴자들 없이 이용하실 수 있습니다. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<target>기업 스폰서🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
<trans-unit datatype="html" id="a46e9bc519dc1c320d48635e924d444364845ca8">
<source>Community Sponsors ❤️</source>
<target>커뮤니티 스폰서❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1348,15 +1415,16 @@
<target>후원하기 ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<target>후원하려면 <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/> https://mempool.space/sponsor <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/>으로 이동하십시오.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1366,33 +1434,37 @@
</trans-unit>
<trans-unit datatype="html" id="1405c5f1a9834338ff13442c550927ab7144fdc8">
<source>Community Integrations</source>
<target>커뮤니티 통합</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
<trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb">
<source>Community Alliances</source>
<target>커뮤니티 연합</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
<trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2">
<source>Project Contributors</source>
<target>프로젝트 참여자 목록 </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
<source>Project Maintainers</source>
<target>프로젝트 관리자 목록</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1410,6 +1482,7 @@
</trans-unit>
<trans-unit datatype="html" id="9f10a0577222a7d6c35a889453fa3a794750d9c4">
<source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source>
<target>다중 사인하기 <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">5</context>
@@ -1418,6 +1491,7 @@
</trans-unit>
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
<target>라이트닝<x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">11</context>
@@ -1426,6 +1500,7 @@
</trans-unit>
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
<target>유동성<x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">17</context>
@@ -1434,6 +1509,7 @@
</trans-unit>
<trans-unit datatype="html" id="714e34125b3343df73f19ec800b43be95217d5d4">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transaction</source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> 트랜잭션</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">52,53</context>
@@ -1442,6 +1518,7 @@
</trans-unit>
<trans-unit datatype="html" id="0f6ada0cfb60aefd8f77f8a22349850ce186d666">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> transactions</source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> 트랜잭션</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">53,54</context>
@@ -1459,6 +1536,8 @@
</trans-unit>
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18">
<source><x ctype="x-i" equiv-text="&lt;i&gt;" id="START_ITALIC_TEXT"/>The number of transactions on this address exceeds the Electrum server limit<x ctype="x-i" equiv-text="&lt;/i&gt;" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/> Consider viewing this address on the official Mempool website instead: </source>
<target> <x ctype="x-i" equiv-text="&lt;i&gt;" id="START_ITALIC_TEXT"/>이 주소의 트랜잭션 수가 Electrum 서버 한도를 초과합니다.<x ctype="x-i" equiv-text="&lt;/i&gt;" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/>
공식 맴풀 웹사이트에서 이 주소를 확인하길 권고합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">127,130</context>
@@ -1515,6 +1594,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>엔드포인트</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1671,6 +1751,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>설명</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -1838,6 +1919,7 @@
</trans-unit>
<trans-unit datatype="html" id="e12cd52eaa77b446ba97436c145b59741151adf3">
<source>Returns details about an address. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats each contain an object with <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>주소에 대한 세부 정보를 보여드립니다. 사용 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 주소 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 체인_상황 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 멤풀_상황 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 체인, 맴풀 <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/> _stats each contain an object with <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> tx_count <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> funded_txo_count <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> funded_txo_sum <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> spent_txo_count <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> spent_txo_sum <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>의 객체를 포함한다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">26,27</context>
@@ -1845,6 +1927,7 @@
</trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
<source>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 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (see below).</source>
<target>지정된 주소 / 스크립트 해시에 대한 거래 내역을 최신순으로 정렬합니다. 최대 50 개의 mempool 트랜잭션과 처음 25 개의 컨펌된 트랜잭션을 반환합니다.. <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> : 마지막으로_본_txid <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (아래 참조)을 사용하여 더 많은 확인 된 트랜잭션을 요청할 수 있습니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context>
@@ -1852,6 +1935,7 @@
</trans-unit>
<trans-unit datatype="html" id="5676910aa3ffb568079a7499b366744fe3fd87ea">
<source>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.</source>
<target>지정된 주소 / 스크립트 해시에 대한 확인 된 거래 내역을 최신으로 정렬하여 가져옵니다. 페이지 당 25 개의 트랜잭션을 반환합니다. 이전 쿼리에서 본 마지막 txid를 지정하여 더 많은 것을 요청할 수 있습니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">61,63</context>
@@ -1859,6 +1943,7 @@
</trans-unit>
<trans-unit datatype="html" id="f10009779c64e19e20414fae506f27118420aa33">
<source>Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).</source>
<target>지정된 주소 / 스크립트 해시에 대한 미확인 거래 내역을 가져옵니다. 최대 50 개의 트랜잭션을 반환합니다 (페이징 없음).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">80,83</context>
@@ -1866,6 +1951,7 @@
</trans-unit>
<trans-unit datatype="html" id="4eb50557085c85bfca995b6ee0de56ec3f5e97eb">
<source>Get the list of unspent transaction outputs associated with the address/scripthash. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vout<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>value<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (with the status of the funding tx).<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/>There is also a <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>valuecommitment<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> field that may appear in place of <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>value<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, plus the following additional fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>asset<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>/<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>assetcommitment<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>/<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>noncecommitment<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>surjection_proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>range_proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/></source>
<target>주소 / 스크립트 해시와 관련된 미사용 트랜잭션 출력 목록을 가져옵니다. 사용 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> txid <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> vout <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 값 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 상태 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(tx 기금 현황과 함께).<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/> 또한<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>valuecommitment<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>필드가 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 값 대신<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>으로 나타날 수 있습니다. 추가로 따라오는 필드들: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>자산<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>/<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>asstcommitment<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>임시값<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>/noncecommitment<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>전사함수_증명<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,그리고<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>range_proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">100,101</context>
@@ -1891,6 +1977,7 @@
</trans-unit>
<trans-unit datatype="html" id="4a0bf20cf26a4f4a387bed5c3d47c23294cb606e">
<source>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.</source>
<target>지정된 유동 자산과 관련된 거래를 반환합니다. 네트워크의 기본 자산을 위해 페그 인, 페그 아웃 및 소각 트랜잭션 목록을 반환합니다. 사용자 발행 자산의 경우 발행, 재발행 및 소각 트랜잭션 목록을 반환합니다. 이 자산을 양도하는 일반 거래는 포함되지 않습니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">143,146</context>
@@ -1898,6 +1985,7 @@
</trans-unit>
<trans-unit datatype="html" id="44a238eb28145f904f3a5bbfd4050987668f78d0">
<source>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.</source>
<target>지정된 자산의 현재 총 공급량을 가져옵니다. 네이티브 자산 (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이 지정된 경우 자산의 분할 가능성에 따라 소수로 공급을 반환합니다. 그렇지 않으면 기본 단위로 반환됩니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">162,165</context>
@@ -1919,6 +2007,7 @@
</trans-unit>
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2">
<source>Returns details about a block. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>블록에 대한 세부 정보를 반환합니다. 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 아이디 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 높이 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 버전 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 타임 스탬프 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 비트 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 임시값 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 머클_루트 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> tx_count <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 크기 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 중량 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 증명 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>이전블록해시 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">187,188</context>
@@ -1942,6 +2031,7 @@
</trans-unit>
<trans-unit datatype="html" id="a2c00fbdcce9d6291c3b04c67979f9694be23f28">
<source>Returns the confirmation status of a block. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>in_best_chain<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean, false for orphaned blocks), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>next_best<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (the hash of the next block, only available for blocks in the best chain).</source>
<target>블록의 컨펌 상황을 반환합니다. 사용 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>베스트 체인에서 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (불린, 고아 블록의 경우 틀립니다), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 그 다음 베스트 체인에서<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (다음 블록의 해시, 최상의 체인의 최상의 블록에만 사용 가능합니다).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">239,240</context>
@@ -1965,6 +2055,7 @@
</trans-unit>
<trans-unit datatype="html" id="3e08815110b2e5ce8aa7256ed05a2faf6dbb7077">
<source>Returns the transaction at index <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:index<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> within the specified block.</source>
<target>지정된 블록 내의 인덱스 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> : index <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>의 트랜잭션을 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">298,299</context>
@@ -1972,6 +2063,7 @@
</trans-unit>
<trans-unit datatype="html" id="3846f2527c3c9a50bb84b2c941a876f66797449b">
<source>Returns a list of all txids in the block.</source>
<target>블록의 모든 txid 목록을 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">318,321</context>
@@ -1979,6 +2071,7 @@
</trans-unit>
<trans-unit datatype="html" id="1126cb2e03d0371d03b57047052d4ff1b6556753">
<source>Returns a list of transactions in the block (up to 25 transactions beginning at <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>). Transactions returned here do not have the <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> field, since all the transactions share the same block and confirmation status.</source>
<target>블록의 트랜잭션 목록을 반환합니다 (<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> start_index <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>에서 시작하는 최대 25 개의 트랜잭션). 여기에 반환 된 트랜잭션에는 모든 트랜잭션이 동일한 블록 및 컨펌 상황을 공유하므로 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 상태 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> 필드가 없습니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">337,338</context>
@@ -1986,6 +2079,7 @@
</trans-unit>
<trans-unit datatype="html" id="f8380186899495340cbfe7fb836ba664fb4b52af">
<source>Returns the 10 newest blocks starting at the tip or at <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:start_height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> if specified.</source>
<target>팁 or <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:start_height <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(지정된 경우) 에서 시작하는 10 개의 최신 블록을 반환합니다. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">357,358</context>
@@ -2003,6 +2097,7 @@
</trans-unit>
<trans-unit datatype="html" id="9604b870a64e6635062828425fcb801371e716ad">
<source>Returns all Bisq transactions belonging to a Bitcoin address, with 'B' prefixed in front of the address.</source>
<target>주소 앞에 'B'가 붙은 비트 코인 주소에 속하는 모든 Bisq 트랜잭션을 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">385,388</context>
@@ -2010,6 +2105,7 @@
</trans-unit>
<trans-unit datatype="html" id="e7e7c97535181ba299bc0ad02904f851088a0dd5">
<source>Returns all Bisq transactions that exist in a Bitcoin block.</source>
<target>비트 코인 블록에 존재하는 모든 Bisq 트랜잭션을 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">405,408</context>
@@ -2017,6 +2113,7 @@
</trans-unit>
<trans-unit datatype="html" id="ac234ff46c8f499399a20fb5d74005094de7cdcd">
<source>Returns the most recently processed Bitcoin block height processed by Bisq.</source>
<target>Bisq에서 가장 최근에 처리 된 비트 코인 블록 height 를 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">424,427</context>
@@ -2024,6 +2121,7 @@
</trans-unit>
<trans-unit datatype="html" id="6fdafaace68cb298c6281e89eedc704f3d8f3f6a">
<source>Returns :length Bitcoin blocks that contain Bisq transactions, starting from :index.</source>
<target> 반환하는 것: Bisq 트랜잭션을 포함한 비트 코인 블록의 length: index에서 시작</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">444,447</context>
@@ -2047,6 +2145,7 @@
</trans-unit>
<trans-unit datatype="html" id="e9a58657c410cf65dba4c3cdfb1af7099dedb241">
<source>Returns :length of latest Bisq transactions, starting from :index.</source>
<target>반환하는 것: 가장 최신 Bisq 트랜잭션 length: index에서 시작</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">506,509</context>
@@ -2064,6 +2163,7 @@
</trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source>
<target>새로운 거래에 대한 수수료를 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context>
@@ -2073,6 +2173,7 @@
</trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source>
<target>현재의 mempool을 projected 블록으로 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context>
@@ -2082,6 +2183,7 @@
</trans-unit>
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
<source>Returns the ancestors and the best descendant fees for a transaction.</source>
<target>거래에 대해 ancestors 와 최하 수수료를 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">563,565</context>
@@ -2111,6 +2213,7 @@
</trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f">
<source>Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.</source>
<target>에러 발생시 mempool에있는 txid의 전체 목록을 가져옵니다. txid의 순서는 임의적이며 bitcoind와 일치하지 않습니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context>
@@ -2120,6 +2223,8 @@
</trans-unit>
<trans-unit datatype="html" id="af1a465e50097fabbe55bf5dbcf5d0702bdbc98b">
<source>Get a list of the last 10 transactions to enter the mempool. Each transaction object contains simplified overview data, with the following fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>fee<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vsize<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>value<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>mempool에 들어가기 위해 최근 10 개의 트랜잭션 목록을 가져옵니다.
각 트랜잭션 오브젝트는 데이터에 대한 간략한 내용이 포함되어있습니다( 다음 필드들에서): <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> txid <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 수수료 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vsize <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 값<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">622,623</context>
@@ -2139,6 +2244,7 @@
</trans-unit>
<trans-unit datatype="html" id="a8ea1ec66e7bb9f92e87ae5482e50748baafffd2">
<source>Returns details about a transaction. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>locktime<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>fee<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vout<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>트랜잭션에 대한 세부 정보를 반환합니다. 사용 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> tixed <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 버전 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> locktime <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> size <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> weight <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 수수료 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 자동차 등록 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> vout <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 상태 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">647,648</context>
@@ -2154,6 +2260,7 @@
</trans-unit>
<trans-unit datatype="html" id="d51106cc898981e9862d35a4db40796f0cf464f8">
<source>Returns a merkle inclusion proof for the transaction using <x ctype="x-a" equiv-text="&lt;a href=&quot;https://bitcoin.org/en/glossary/merkle-block&quot;&gt;" id="START_LINK"/>bitcoind's merkleblock<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> format.</source>
<target><x ctype="x-a" equiv-text="&lt;a href=&quot;https://bitcoin.org/en/glossary/merkle-block&quot;&gt;" id="START_LINK"/> bitcoind의 merkleblock <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> 포멧을 사용하여 거래에 대한 merkle inclusion 증명을 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">684,685</context>
@@ -2161,6 +2268,7 @@
</trans-unit>
<trans-unit datatype="html" id="a57953199686e9980df838cb25edb51691941ac5">
<source>Returns a merkle inclusion proof for the transaction using <x ctype="x-a" equiv-text="&lt;a href=&quot;https://electrumx.readthedocs.io/en/latest/protocol-methods.html#blockchain-transaction-get-merkle&quot;&gt;" id="START_LINK"/>Electrum's blockchain.transaction.get_merkle format.<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/></source>
<target><x ctype="x-a" equiv-text="&lt;a href=&quot;https://electrumx.readthedocs.io/en/latest/protocol-methods.html#blockchain-transaction-get-merkle&quot;&gt;" id="START_LINK"/> Electrum의 blockchain.transaction.get_merkle 포멧<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/>을 사용하여 트랜잭션에 대한 merkle inclusion 증명을 반환합니다. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">704,705</context>
@@ -2168,6 +2276,7 @@
</trans-unit>
<trans-unit datatype="html" id="fe9a40b2ff9674b4ab7d82624ffed340c9ee5b89">
<source>Returns the spending status of a transaction output. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional, the status of the spending tx).</source>
<target>트랜잭션 아웃풋의 지출(소모?) 상황을 반환합니다. 사용 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 지출 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (불린), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> txid <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (선택 사항), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> vin<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (선택 사항), 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 상황<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>( 선택 사항, tx 지출 상황)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">723,724</context>
@@ -2175,6 +2284,7 @@
</trans-unit>
<trans-unit datatype="html" id="0358265aa88614843e1f5e887b94c673808c84f1">
<source>Returns the spending status of all transaction outputs.</source>
<target>모든 트랜잭션 아웃풋의 지출 상황을 반환합니다.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">742,745</context>
@@ -2190,6 +2300,7 @@
</trans-unit>
<trans-unit datatype="html" id="7e784cfa5833e7b54d4dfc723fabde94f66ebde3">
<source>Returns the confirmation status of a transaction. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>confirmed<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block_height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block_hash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional).</source>
<target>거래의 컨펌 상황을 반환합니다. 사용 가능한 필드 : <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 컨펌됨 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (부울), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> block_height <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (선택 사항) 및 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/> 블록 해시 <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (선택 사항).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">780,781</context>
@@ -2236,23 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>코드 예시</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2260,8 +2364,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>패키지 설치하기</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>응답</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2270,6 +2384,7 @@
</trans-unit>
<trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b">
<source>Asset</source>
<target>자산</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">2</context>
@@ -2361,8 +2476,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -2645,6 +2760,7 @@
</trans-unit>
<trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8">
<source>Merkle root</source>
<target>머클 루트</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">96,98</context>
@@ -2653,6 +2769,7 @@
</trans-unit>
<trans-unit datatype="html" id="fd04710d1a54d46cd1b81a13fc98e3d561b92141">
<source>Bits</source>
<target>비트</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">100,102</context>
@@ -3025,6 +3142,7 @@
</trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source>
<target>스폰서</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context>
@@ -3107,6 +3225,7 @@
</trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>TV만 이용 가능</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
@@ -3280,7 +3399,7 @@
<target>컨펌되지 않음</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3355,6 +3474,7 @@
</trans-unit>
<trans-unit datatype="html" id="3e322ffba6477484e0dd2e65650fdd70322ea6d0">
<source>Fee rate</source>
<target>수수료율</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">156</context>
@@ -3801,7 +3921,7 @@
</trans-unit>
<trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5">
<source>Memory usage</source>
<target>메모리 사용량</target>
<target>멤풀 메모리 사용량</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">174,176</context>
@@ -3829,6 +3949,7 @@
</trans-unit>
<trans-unit datatype="html" id="2799825781368047816">
<source>Transaction fee</source>
<target>트랜잭션 비용</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
<context context-type="linenumber">11</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Åpen kildekode prosjektet Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>En utforsker og API utviklet og drevet for Bitcoin-samfunnet, med fokus på det nye transaksjonsgebyr markedet og for å hjelpe oss med overgangen til et flerlagsøkosystem, uten annonser, altcoins eller tredjepartssporere.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Bedriftssponsorer 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Samfunnssponsorer ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Bli en sponsor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1423,7 +1421,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1436,7 +1434,7 @@
<target>Samfunnsintegrasjoner</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1445,7 +1443,7 @@
<target>Samfunnsallianser</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1454,7 +1452,7 @@
<target>Bidragsytere til prosjektet</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1463,7 +1461,7 @@
<target>Prosjektvedlikeholdere</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2339,23 +2337,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2363,6 +2353,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2465,9 +2463,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3392,7 +3389,7 @@
<target>Ubekreftet</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Het Mempool Open Source Project</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Een explorer en API ontwikkeld en beheerd voor de Bitcoingemeenschap, gericht op de opkomende markt voor transactiekosten om onze overgang naar een meerlagig ecosysteem te helpen, zonder advertenties, altcoins of trackers van derden.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Bedrijfssponsoren 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Community Sponsoren ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Wordt een sponsor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1422,7 @@
<target>Navigeer naar <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> om te sponsoren</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Community-integraties</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1444,7 @@
<target>Community-allianties</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1453,7 @@
<target>Projectbijdragers</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1462,7 @@
<target>Projectonderhouders</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1593,6 +1591,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Eindpunt</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1749,6 +1748,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Omschrijving</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -1916,7 +1916,7 @@
</trans-unit>
<trans-unit datatype="html" id="e12cd52eaa77b446ba97436c145b59741151adf3">
<source>Returns details about an address. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats each contain an object with <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>Geeft de details van een blok. Beschikbare velden: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, en<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats hebben alleen een object met <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> en <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<target>Geeft de details van een blok. Beschikbare velden: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>chain_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, en <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool_stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x equiv-text="{{ '{' }}" id="INTERPOLATION"/>chain,mempool<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/>_stats hebben alleen een object met <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>funded_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> en <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent_txo_sum<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">26,27</context>
@@ -1940,7 +1940,7 @@
</trans-unit>
<trans-unit datatype="html" id="f10009779c64e19e20414fae506f27118420aa33">
<source>Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).</source>
<target>Geeft de niet-bevestigde transactiehistorie voor de het gevraagde adres/scripthash. Geeft tot 50 transacties (niet-gepagineerd).</target>
<target>Geeft de niet-bevestigde transactiehistorie voor het gevraagde adres/scripthash. Geeft tot 50 transacties (niet-gepagineerd).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">80,83</context>
@@ -2004,7 +2004,7 @@
</trans-unit>
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2">
<source>Returns details about a block. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>Geeft details over een blok. Beschikbare velden: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<target>Geeft details over een blok. Beschikbare velden: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> en <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">187,188</context>
@@ -2345,23 +2345,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Codevoorbeeld</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2362,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Installeer pakket</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Reactie</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2471,9 +2474,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> van <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3402,7 @@
<target>Onbevestigd</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Mempool - Projekt Open Source</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Eksplorator oraz API napisane i prowadzone przez społeczność Bitcoina. Koncentruje się na powstającym rynku opłat transakcyjnych, aby pomóc nam przejść do wielowarstwowego ekosystemu, bez reklam, altcoinów lub zewnętrznych narzędzi śledzących. </target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Sponsorzy Korporacyjni 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Sponsorzy społecznościowy ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Zostań sponsorem ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1422,7 @@
<target>Przejdź pod adres <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> aby zostać sponsorem</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Integracje społecznościowe</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1444,7 @@
<target>Sojusze społecznościowe</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1453,7 @@
<target>Współtwórcy projektu</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1462,7 @@
<target>Opiekunowie projektu</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2341,23 +2339,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2365,6 +2355,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2467,9 +2465,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3396,7 +3393,7 @@
<target>Niepotwierdzone</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>O projeto de código aberto Mempool</target>
<target>O Projeto de código aberto da Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Um explorador e API desenvolvido e operado para a comunidade Bitcoin, com foco no mercado emergente de taxas de transação para ajudar em nossa transição para um ecossistema multicamadas, sem anúncios, altcoins ou rastreadores de terceiros.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>Construindo um explorador da mempool e blockchain para a comunidade Bitcoin, com foco nas taxas de transação e ecossistema multicamadas, sem qualquer publicidade, altcoins ou rastreadores de terceiros.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Empresas Patrocinadoras 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>Patrocinadores da comunidade ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,15 +1415,16 @@
<target>Seja um patrocinador ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<target>Navegue para <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> para patrocinar</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1436,7 +1437,7 @@
<target>Integrações da comunidade </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1445,7 +1446,7 @@
<target>Alianças da comunidade</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1454,7 +1455,7 @@
<target>Contribuidores do projeto</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1463,7 +1464,7 @@
<target>Mantenedores do projeto</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1592,6 +1593,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Terminal</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1748,6 +1750,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Descrição</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -1923,6 +1926,7 @@
</trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
<source>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 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (see below).</source>
<target>Obtenha o histórico de transações para o endereço / scripthash especificado, classificado com o mais recente primeiro. Retorna até 50 transações mempool mais as primeiras 25 transações confirmadas. Você pode solicitar mais transações confirmadas usando <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (veja abaixo).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context>
@@ -2158,6 +2162,7 @@
</trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source>
<target>Devolve as nossas taxas atuais sugeridas para novas transações.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context>
@@ -2167,6 +2172,7 @@
</trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source>
<target>Devolve o mempool atual como blocos projetados.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context>
@@ -2176,6 +2182,7 @@
</trans-unit>
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
<source>Returns the ancestors and the best descendant fees for a transaction.</source>
<target>Devolve os ancestrais e as melhores taxas descendentes para uma transação.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">563,565</context>
@@ -2205,6 +2212,7 @@
</trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f">
<source>Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.</source>
<target>Obtenha a lista completa de IDs de transação no mempool como um array. A ordem dos IDs de transação é arbitrária e não corresponde ao bitcoind.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context>
@@ -2339,23 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Exemplo de código</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2363,8 +2364,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Instalar Pacote</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Resposta</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2465,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3056,7 +3067,7 @@
</trans-unit>
<trans-unit datatype="html" id="mempool-block.block.no">
<source>Mempool block <x equiv-text="this.mempoolBlockIndex + 1" id="INTERPOLATION"/></source>
<target>Bloco no mempool <x equiv-text="this.mempoolBlockIndex + 1" id="INTERPOLATION"/></target>
<target><x equiv-text="this.mempoolBlockIndex + 1" id="INTERPOLATION"/>º bloco no mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
<context context-type="linenumber">75</context>
@@ -3135,6 +3146,7 @@
</trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source>
<target>Patrocinador</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context>
@@ -3219,6 +3231,7 @@
</trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Apenas TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
@@ -3392,7 +3405,7 @@
<target>Sem confirmar</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3413,7 +3426,7 @@
</trans-unit>
<trans-unit datatype="html" id="7917764f923dd6b723b1cff254c7f5b837d1c48a">
<source>After <x ctype="x-app_timespan" equiv-text="&lt;app-timespan [time]=&quot;tx.status.block_time - transactionTime&quot;&gt;" id="START_TAG_APP_TIMESPAN"/><x ctype="x-app_timespan" equiv-text="&lt;/app-timespan&gt;" id="CLOSE_TAG_APP_TIMESPAN"/></source>
<target>Depois <x ctype="x-app_timespan" equiv-text="&lt;app-timespan [time]=&quot;tx.status.block_time - transactionTime&quot;&gt;" id="START_TAG_APP_TIMESPAN"/><x ctype="x-app_timespan" equiv-text="&lt;/app-timespan&gt;" id="CLOSE_TAG_APP_TIMESPAN"/></target>
<target>Depois de <x ctype="x-app_timespan" equiv-text="&lt;app-timespan [time]=&quot;tx.status.block_time - transactionTime&quot;&gt;" id="START_TAG_APP_TIMESPAN"/><x ctype="x-app_timespan" equiv-text="&lt;/app-timespan&gt;" id="CLOSE_TAG_APP_TIMESPAN"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">68</context>

File diff suppressed because it is too large Load Diff

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1380,16 +1380,15 @@
<target>Odprtokodni projekt Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Raziskovalec in API razvit za Bitcoin skupnost, osredotočen na nastajajoč trg omrežnin za transakcije, kot pomoč pri prehodu v večplastni ekosistem. Brez oglaševanja, alternativnih kriptovalut in sledilcev tretjih ponudnikov.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1396,7 @@
<target>Sponzorji - podjetja 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1405,7 @@
<target>Sponzorji - posamezniki ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1414,7 @@
<target>Postanite sponzor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1423,7 @@
<target>Pojdite na <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> za sponzorstvo.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1436,7 @@
<target>Integracije</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1445,7 @@
<target>Zavezništva skupnosti</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1454,7 @@
<target>Sodelujoči</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1463,7 @@
<target>Vzdrževalci</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2347,25 +2346,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Namestitev paketa</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Primer</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2373,6 +2363,15 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Namestitev paketa</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Odziv</target>
@@ -2476,9 +2475,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> od <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> od <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3405,7 +3404,7 @@
<target>Nepotrjeno</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1380,16 +1380,16 @@
<target>Open Source-projektet Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>En utforskare och API som utvecklas och drivs för Bitcoin-communityt, med fokus på den nya marknaden för transaktionsavgifter för att hjälpa vår övergång till ett ekosystem i flera lager, utan annonser, altcoins eller tredjepartsspårare.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>En mempool och blockchain-utforskare för Bitcoin-communityt med fokus på marknaden f;r transaktionsavgifter och multi-lager ekosystem utan reklam, altcoins eller tredjepartsspårare.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Företagssponsorer 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1406,7 @@
<target>Communitysponsorer ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1415,7 @@
<target>Bli sponsor ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1424,7 @@
<target>Navigera till <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> för att sponsra</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Communityintegrationer</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1446,7 @@
<target>Communityallianser</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1455,7 @@
<target>Projektbidragare</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1464,7 @@
<target>Projektunderhållare</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2347,25 +2347,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Installera paketet</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Kodexempel</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2373,6 +2364,15 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Installera paketet</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Svar</target>
@@ -2476,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3405,7 +3405,7 @@
<target>Obekräftad</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -3,6 +3,7 @@
<body>
<trans-unit datatype="html" id="ngb.alert.close">
<source>Close</source>
<target>Kapat</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context>
<context context-type="linenumber">74</context>
@@ -10,6 +11,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.carousel.previous">
<source>Previous</source>
<target>Önceki</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context>
@@ -17,6 +19,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.carousel.next">
<source>Next</source>
<target>Sonraki</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context>
@@ -24,6 +27,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.previous-month">
<source>Previous month</source>
<target>Önceki ay</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
<context context-type="linenumber">62,64</context>
@@ -35,6 +39,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.next-month">
<source>Next month</source>
<target>Sonraki ay</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context>
<context context-type="linenumber">72</context>
@@ -46,6 +51,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-month">
<source>Select month</source>
<target>Ay seç</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
<context context-type="linenumber">74</context>
@@ -57,6 +63,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-year">
<source>Select year</source>
<target>Yıl Seç</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context>
<context context-type="linenumber">74</context>
@@ -68,6 +75,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first">
<source>««</source>
<target>««</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -75,6 +83,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous">
<source>«</source>
<target>«</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -82,6 +91,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next">
<source>»</source>
<target>»</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -89,6 +99,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last">
<source>»»</source>
<target>»»</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -96,6 +107,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first-aria">
<source>First</source>
<target>Ilk</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -103,6 +115,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous-aria">
<source>Previous</source>
<target>Önceki</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -110,6 +123,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next-aria">
<source>Next</source>
<target>Sonraki</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -117,6 +131,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last-aria">
<source>Last</source>
<target>En son</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context>
@@ -124,6 +139,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.progressbar.value">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context>
<context context-type="linenumber">101</context>
@@ -131,6 +147,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.HH">
<source>HH</source>
<target>HH</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -138,6 +155,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.hours">
<source>Hours</source>
<target>Saat</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -145,6 +163,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.MM">
<source>MM</source>
<target>MM</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -152,6 +171,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.minutes">
<source>Minutes</source>
<target>Dakika</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -159,6 +179,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-hours">
<source>Increment hours</source>
<target>Saatlik artış</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -166,6 +187,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-hours">
<source>Decrement hours</source>
<target>Saatlik azalış</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -173,6 +195,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-minutes">
<source>Increment minutes</source>
<target>Dakikalık artış</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -180,6 +203,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-minutes">
<source>Decrement minutes</source>
<target>Dakikalık azalış</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -187,6 +211,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.SS">
<source>SS</source>
<target>SS</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -194,6 +219,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.seconds">
<source>Seconds</source>
<target>Saniye</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -201,6 +227,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-seconds">
<source>Increment seconds</source>
<target>Saniyelik artış</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -208,6 +235,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-seconds">
<source>Decrement seconds</source>
<target>Saniyelik azalış</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -215,6 +243,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.PM">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -222,6 +251,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.AM">
<source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context>
@@ -229,6 +259,7 @@
</trans-unit>
<trans-unit datatype="html" id="ngb.toast.close-aria">
<source>Close</source>
<target>Kapat</target>
<context-group purpose="location">
<context context-type="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context>
<context context-type="linenumber">137</context>
@@ -537,6 +568,7 @@
</trans-unit>
<trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2">
<source>BSQ Blocks</source>
<target>BSQ Blokları</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
<context context-type="linenumber">2,7</context>
@@ -624,6 +656,7 @@
</trans-unit>
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
<source>Bisq Trading Volume</source>
<target>Bisq ticaret hacmi</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">3,7</context>
@@ -636,6 +669,7 @@
</trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source>
<target>Çiftler</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -648,6 +682,7 @@
</trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source>
<target>Bitcoin Çiftleri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -660,6 +695,7 @@
</trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source>
<target>Kur</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context>
@@ -699,6 +735,7 @@
</trans-unit>
<trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff">
<source>Volume (7d)</source>
<target>Hacim (7g)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">29</context>
@@ -707,6 +744,7 @@
</trans-unit>
<trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6">
<source>Trades (7d)</source>
<target>Alışveriş (7g)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">30</context>
@@ -719,6 +757,7 @@
</trans-unit>
<trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3">
<source>Latest Trades</source>
<target>Son alışverişler</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">52,55</context>
@@ -735,6 +774,7 @@
</trans-unit>
<trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6">
<source>Bisq Price Index</source>
<target>Bisq fiyat endeksi</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">9,11</context>
@@ -743,6 +783,7 @@
</trans-unit>
<trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349">
<source>Bisq Market Price</source>
<target>Bisq market fiyatı</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -775,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -790,6 +831,7 @@
</trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source>
<target>Alım Teklifleri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context>
@@ -798,6 +840,7 @@
</trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source>
<target>Satış Teklifleri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context>
@@ -806,6 +849,7 @@
</trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>Miktar (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context>
@@ -926,6 +970,7 @@
</trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source>
<target>Tarih</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context>
@@ -1025,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1047,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1065,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1164,6 +1209,7 @@
</trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source>
<target>Bsq işlemleri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context>
@@ -1187,6 +1233,7 @@
</trans-unit>
<trans-unit datatype="html" id="8411955056013208681">
<source>Asset listing fee</source>
<target>Varlık listeleme fiyatı</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">30</context>
@@ -1194,6 +1241,7 @@
</trans-unit>
<trans-unit datatype="html" id="4096113720451832029">
<source>Blind vote</source>
<target>Kapalı oy</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">31</context>
@@ -1201,6 +1249,7 @@
</trans-unit>
<trans-unit datatype="html" id="8029165479004970466">
<source>Compensation request</source>
<target>Bedel isteği</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">32</context>
@@ -1208,6 +1257,7 @@
</trans-unit>
<trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source>
<target>Genesis</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context>
@@ -1215,6 +1265,7 @@
</trans-unit>
<trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source>
<target>Sıradışı</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context>
@@ -1222,6 +1273,7 @@
</trans-unit>
<trans-unit datatype="html" id="1899519213652410949">
<source>Lockup</source>
<target>Kilitle</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">35</context>
@@ -1229,6 +1281,7 @@
</trans-unit>
<trans-unit datatype="html" id="450749685636583691">
<source>Pay trade fee</source>
<target>Alışveriş ücreti öde</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">36</context>
@@ -1236,6 +1289,7 @@
</trans-unit>
<trans-unit datatype="html" id="4844032232639560116">
<source>Proof of burn</source>
<target>Yakılan miktar ispatı</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">37</context>
@@ -1243,6 +1297,7 @@
</trans-unit>
<trans-unit datatype="html" id="2011097393756618787">
<source>Proposal</source>
<target>Teklif</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">38</context>
@@ -1250,6 +1305,7 @@
</trans-unit>
<trans-unit datatype="html" id="3275831985256202873">
<source>Reimbursement request</source>
<target>İade isteği</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">39</context>
@@ -1257,6 +1313,7 @@
</trans-unit>
<trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source>
<target>BSQ transfer et</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context>
@@ -1264,6 +1321,7 @@
</trans-unit>
<trans-unit datatype="html" id="4545041448523656285">
<source>Unlock</source>
<target>Kilit kaldır</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">41</context>
@@ -1271,6 +1329,7 @@
</trans-unit>
<trans-unit datatype="html" id="8694527859973232423">
<source>Vote reveal</source>
<target>Oyu göster</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">42</context>
@@ -1302,6 +1361,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-graph-trades">
<source>Trades</source>
<target>İşlemler</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">90</context>
@@ -1309,6 +1369,7 @@
</trans-unit>
<trans-unit datatype="html" id="bisq-graph-volume">
<source>Volume</source>
<target>Hacim</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">91</context>
@@ -1316,32 +1377,36 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Açık kaynak Mempool Projesi</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<target>Reklamsız, altcoinsiz ve 3. parti takipçilerin olmadığı, sadece Bitcoin komünitesine hizmet etmek amaçlı mempool ve blokzincir takibini sağlayan projeyi geliştiriyoruz.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source>
<target>Kurumsal sponsorlar</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
<trans-unit datatype="html" id="a46e9bc519dc1c320d48635e924d444364845ca8">
<source>Community Sponsors ❤️</source>
<target>Kömünite sponsorlarımız</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1350,15 +1415,16 @@
<target>Sponsor olun ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09">
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<target> <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/> linkine tıklayarak <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> sponsoru ziyaret edebilirsiniz.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1368,33 +1434,37 @@
</trans-unit>
<trans-unit datatype="html" id="1405c5f1a9834338ff13442c550927ab7144fdc8">
<source>Community Integrations</source>
<target>Kömünite Entegrasyonları</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
<trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb">
<source>Community Alliances</source>
<target>İşbirlikçi kömüniteler</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
<trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2">
<source>Project Contributors</source>
<target>Proje Destekçileri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
<source>Project Maintainers</source>
<target>Projeyi ayakta tutanlar</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1421,6 +1491,7 @@
</trans-unit>
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
<target>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">11</context>
@@ -1429,6 +1500,7 @@
</trans-unit>
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">17</context>
@@ -1464,6 +1536,7 @@
</trans-unit>
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18">
<source><x ctype="x-i" equiv-text="&lt;i&gt;" id="START_ITALIC_TEXT"/>The number of transactions on this address exceeds the Electrum server limit<x ctype="x-i" equiv-text="&lt;/i&gt;" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/> Consider viewing this address on the official Mempool website instead: </source>
<target><x ctype="x-i" equiv-text="&lt;i&gt;" id="START_ITALIC_TEXT"/> Bu adresteki maksimum işlem sayısı Electrum sunucunun limitlerini aşmakta <x ctype="x-i" equiv-text="&lt;/i&gt;" id="CLOSE_ITALIC_TEXT"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/> Bu adresi lütfen resmi Mempool sitesinden takip ediniz: </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">127,130</context>
@@ -1520,6 +1593,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Çıkış Noktası</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1676,6 +1750,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Tanım</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -1851,6 +1926,7 @@
</trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2">
<source>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 <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (see below).</source>
<target>Istenilen adres/scripthash için, en yeni başta olacak şekilde,işlem geçmişi listesini al. İlk 25 onaylanmış işlem ile birlikte mempool'a gönderilmiş 50 işlemi gösterir. Daha fazla onaylanmış işlem almak için: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:last_seen_txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>'yi kullan. (devamı aşağıda)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context>
@@ -1931,6 +2007,7 @@
</trans-unit>
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2">
<source>Returns details about a block. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>,<x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</source>
<target>Bir blok hakkındaki detayları gösterir. Kullanılabilir metrikler: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>id<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>version<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>timestamp<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>bits<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>nonce<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>merkle_root<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>tx_count<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>size<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>weight<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-ng_container" equiv-text="&lt;ng-container *ngIf=&quot;network.val === 'liquid'&quot;&gt;" id="START_TAG_NG_CONTAINER"/><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>proof<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-ng_container" equiv-text="&lt;/ng-container&gt;" id="CLOSE_TAG_NG_CONTAINER"/> ve <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>previousblockhash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">187,188</context>
@@ -1954,6 +2031,7 @@
</trans-unit>
<trans-unit datatype="html" id="a2c00fbdcce9d6291c3b04c67979f9694be23f28">
<source>Returns the confirmation status of a block. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>in_best_chain<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean, false for orphaned blocks), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>next_best<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (the hash of the next block, only available for blocks in the best chain).</source>
<target>Bir bloğun konfirmasyon durumunu gösterir. Kulanılabilir metrikler: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>in_best_chain<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean, öksüz blok için yanlış), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>next_best<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(sonraki bloğun hash'i sadece en iyi bloktaki zincirde olanlar için verilir).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">239,240</context>
@@ -1977,6 +2055,7 @@
</trans-unit>
<trans-unit datatype="html" id="3e08815110b2e5ce8aa7256ed05a2faf6dbb7077">
<source>Returns the transaction at index <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:index<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> within the specified block.</source>
<target>Seçilen bloktaki işlemi index<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:index<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> içerisinde olacak şekilde gösterir.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">298,299</context>
@@ -1992,6 +2071,7 @@
</trans-unit>
<trans-unit datatype="html" id="1126cb2e03d0371d03b57047052d4ff1b6556753">
<source>Returns a list of transactions in the block (up to 25 transactions beginning at <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>). Transactions returned here do not have the <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> field, since all the transactions share the same block and confirmation status.</source>
<target><x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>start_index<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>'ten başlayarak bloktaki (son 25) işlemi göster. Burada gösterilen işlemlerin <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> alanı boştur çünkü gösterilen bütün işlemler aynı blok sayısını ve aynı onay durumunu paylaşır.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">337,338</context>
@@ -1999,6 +2079,7 @@
</trans-unit>
<trans-unit datatype="html" id="f8380186899495340cbfe7fb836ba664fb4b52af">
<source>Returns the 10 newest blocks starting at the tip or at <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:start_height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> if specified.</source>
<target>En son 10 bloğu sondan başa doğru ya da belirlenen <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>:start_height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> içerisinde olacak şekilde gösterir.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">357,358</context>
@@ -2082,6 +2163,7 @@
</trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source>
<target>Yeni işlemler için tavsiye ettiğimiz transfer ücretlerini gösterir</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context>
@@ -2091,6 +2173,7 @@
</trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source>
<target>Halihazırdaki mempool'un dolduracağı tahmini blok sayısını gösterir.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context>
@@ -2100,6 +2183,7 @@
</trans-unit>
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
<source>Returns the ancestors and the best descendant fees for a transaction.</source>
<target>Bir işlemin ata ve en iyi varis ücretlerini gösterir.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">563,565</context>
@@ -2129,6 +2213,7 @@
</trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f">
<source>Get the full list of txids in the mempool as an array. The order of the txids is arbitrary and does not match bitcoind.</source>
<target>Mempool'daki tam txid listesini dizi olarak al. Txid sıralaması rastgeledir ve bitcoind ile eşleşmez.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context>
@@ -2174,6 +2259,7 @@
</trans-unit>
<trans-unit datatype="html" id="d51106cc898981e9862d35a4db40796f0cf464f8">
<source>Returns a merkle inclusion proof for the transaction using <x ctype="x-a" equiv-text="&lt;a href=&quot;https://bitcoin.org/en/glossary/merkle-block&quot;&gt;" id="START_LINK"/>bitcoind's merkleblock<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> format.</source>
<target><x ctype="x-a" equiv-text="&lt;a href=&quot;https://bitcoin.org/en/glossary/merkle-block&quot;&gt;" id="START_LINK"/>bitcoind'nin merkleblock <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> formatını kullanarak, işlemin merkle dahiliyet ispatını verir.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">684,685</context>
@@ -2189,6 +2275,7 @@
</trans-unit>
<trans-unit datatype="html" id="fe9a40b2ff9674b4ab7d82624ffed340c9ee5b89">
<source>Returns the spending status of a transaction output. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional, the status of the spending tx).</source>
<target>Bir işlem çıkışının harcama durumunu gösterir. Kullanılabilecek alanlar: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>spent <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(boolean), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid <x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(opsiyonel), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>vin<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (opsiyonel), ve status<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(opsiyonel, harcanmış işlemin durumu).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">723,724</context>
@@ -2212,6 +2299,7 @@
</trans-unit>
<trans-unit datatype="html" id="7e784cfa5833e7b54d4dfc723fabde94f66ebde3">
<source>Returns the confirmation status of a transaction. Available fields: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>confirmed<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (boolean), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block_height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional), and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block_hash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> (optional).</source>
<target>Bir işlemin harcama durumunu gösterir. Kullanılabilecek alanlar: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>confirmed<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(boolean), <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block_height<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(opsiyonel), ve <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block_hash<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>(opsiyonel).</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">780,781</context>
@@ -2219,6 +2307,7 @@
</trans-unit>
<trans-unit datatype="html" id="01723473ecc53cab60ef1b37dc39d8941994d56f">
<source>Broadcast a raw transaction to the network. The transaction should be provided as hex in the request body. The <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> will be returned on success.</source>
<target>Ağa ham işlem yayınla. İşlem yayınlama isteği gövdesinde hex olarak yayınlanmalı. Başarılı olması durumunda<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>txid<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> gösterilecek.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">800,801</context>
@@ -2236,6 +2325,7 @@
</trans-unit>
<trans-unit datatype="html" id="a706b1ded7506620b153dbcdea8108e6691bbbd9">
<source>Default push: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> to express what you want pushed. Available: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>.<x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/>Push transactions related to address: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/> 'track-address': '3PbJ...bF9B' <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> to receive all new transactions containing that address as input or output. Returns an array of transactions. <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> for new mempool transactions, and <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> for new block confirmed transactions.</source>
<target>Varsayılan push: Push edilmesi istenilen data için <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/>action: 'want', data: ['blocks', ...] <x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. Kullanılabilecekler: <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>blocks<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>mempool-blocks<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>, <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>live-2h-chart<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> ve <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>stats<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/>. <x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/><x ctype="lb" equiv-text="&lt;br&gt;" id="LINE_BREAK"/> <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/><x equiv-text="{{ '{' }}" id="INTERPOLATION"/>'track-address': '3PbJ...bF9B'<x equiv-text="{{ '}' }}" id="INTERPOLATION_1"/><x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> adresi ile ilişkili işlemleri push ederek bu adrese giriş/çıkış yapan bütün işlemlerin bilgisini al. Bu bilgiyi dizi olarak ver. Yeni mempool işlemleri için<x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>address-transactions<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> ve <x ctype="x-code" equiv-text="&lt;code&gt;" id="START_TAG_CODE"/>block-transactions<x ctype="x-code" equiv-text="&lt;/code&gt;" id="CLOSE_TAG_CODE"/> için onaylanmış block işlemlerini göster. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">819,820</context>
@@ -2258,23 +2348,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Örnek kod</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2282,8 +2365,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Yükleme paketi</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Cevap</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2292,6 +2385,7 @@
</trans-unit>
<trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b">
<source>Asset</source>
<target>Varlık</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">2</context>
@@ -2383,8 +2477,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>bölü<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -2668,6 +2763,7 @@
</trans-unit>
<trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8">
<source>Merkle root</source>
<target>Merkle kökü</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">96,98</context>
@@ -2676,6 +2772,7 @@
</trans-unit>
<trans-unit datatype="html" id="fd04710d1a54d46cd1b81a13fc98e3d561b92141">
<source>Bits</source>
<target>Bit</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">100,102</context>
@@ -2684,6 +2781,7 @@
</trans-unit>
<trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a">
<source>Difficulty</source>
<target>Zorluk</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">110,113</context>
@@ -2692,6 +2790,7 @@
</trans-unit>
<trans-unit datatype="html" id="a6bb63d98a8a67689070a79ccf13960c25b572ef">
<source>Nonce</source>
<target>Nonce</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">114,116</context>
@@ -3048,6 +3147,7 @@
</trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source>
<target>Sponsor</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context>
@@ -3132,6 +3232,7 @@
</trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Sadece TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
@@ -3305,7 +3406,7 @@
<target>Onaylanmamış</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3380,6 +3481,7 @@
</trans-unit>
<trans-unit datatype="html" id="3e322ffba6477484e0dd2e65650fdd70322ea6d0">
<source>Fee rate</source>
<target>Ücret değeri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">156</context>
@@ -3393,6 +3495,7 @@
</trans-unit>
<trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b">
<source>Descendant</source>
<target>Varis</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">163</context>
@@ -3402,6 +3505,7 @@
</trans-unit>
<trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511">
<source>Ancestor</source>
<target>Ata</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">177</context>
@@ -3469,6 +3573,7 @@
</trans-unit>
<trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be">
<source>Effective fee rate</source>
<target>Effektik ücret değeri</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">345</context>
@@ -3631,6 +3736,7 @@
</trans-unit>
<trans-unit datatype="html" id="f85c05147b720576e50336cf26f63d3b05601699">
<source>This transaction saved <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% on fees by using native SegWit-Bech32</source>
<target>Bu işlem native SegWit-Bech32 kullanımı ile %<x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/> daha düşük ücret karşılığında gerçekleştirilebilir.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">1</context>
@@ -3657,6 +3763,7 @@
</trans-unit>
<trans-unit datatype="html" id="975f46d122f2ca0a187308399a58b44d61ef08eb">
<source>This transaction saved <x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/>% on fees by using SegWit and could save <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION_1"/>% more by fully upgrading to native SegWit-Bech32</source>
<target>Bu işlem, Segwit-Bech32 kullanarak %<x equiv-text="{{ segwitGains.realizedGains * 100 | number: '1.0-0' }}" id="INTERPOLATION"/> daha düşük ücret karşılığında gerçekleşmiştir. native SegWit-Bech32 kullanarak %<x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION_1"/> daha da düşük fiyata gerçekleşebilir. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">3</context>
@@ -3665,6 +3772,7 @@
</trans-unit>
<trans-unit datatype="html" id="1be04d5407059059b596f72696a3d1704ce9c0ef">
<source>This transaction could save <x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION"/>% on fees by upgrading to native SegWit-Bech32 or <x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/>% by upgrading to SegWit-P2SH</source>
<target>Bu işlemi native SegWit-Bech32 kullanarak %<x equiv-text="{{ segwitGains.potentialBech32Gains * 100 | number : '1.0-0' }}" id="INTERPOLATION"/> ya da Segwit-Bech32 kullanarak %<x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/> daha düşük ücret karşılığında gerçekleştirebilirdiniz. </target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">5</context>
@@ -3696,6 +3804,7 @@
</trans-unit>
<trans-unit datatype="html" id="85ce9e4f45873116b746899169cbc3445321d60c">
<source>This transaction does NOT support Replace-By-Fee (RBF) and cannot be fee bumped using this method</source>
<target>Bu işlem ücret karşılığı değiştir (RBF)'yi desteklemediğinden ücret arttırmı yapılamaz.</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">9</context>
@@ -3714,6 +3823,7 @@
</trans-unit>
<trans-unit datatype="html" id="9d92d02835569b64f0dce58e81a0d22dd798f6e5">
<source>Only ~<x equiv-text="{{ medianFeeNeeded | number : '1.1-1' }}" id="INTERPOLATION"/> sat/vB was needed to get into this block</source>
<target>Bu blokta yer almak için sadece ~<x equiv-text="{{ medianFeeNeeded | number : '1.1-1' }}" id="INTERPOLATION"/> sat/vB ücret yeterli</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context>
<context context-type="linenumber">2</context>
@@ -3807,6 +3917,7 @@
</trans-unit>
<trans-unit datatype="html" id="1f9a922cb4010ee20eb9a241a22307b670f7628c">
<source>Minimum fee</source>
<target>Minimum ücret</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">161,162</context>
@@ -3816,6 +3927,7 @@
</trans-unit>
<trans-unit datatype="html" id="4c3955cfe5955657297481efaf3ada8c55c75b2c">
<source>Purging</source>
<target>Temizleme</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">162,164</context>
@@ -3825,6 +3937,7 @@
</trans-unit>
<trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5">
<source>Memory usage</source>
<target>Hafıza kullanımı</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">174,176</context>
@@ -3852,6 +3965,7 @@
</trans-unit>
<trans-unit datatype="html" id="2799825781368047816">
<source>Transaction fee</source>
<target>İşlem ücreti</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
<context context-type="linenumber">11</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Mempool - проект з відкритим кодом</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Експлорер та API для ком'юніті Bitcoin з фокусом на зростаючий ринок комісій розроблені та підтримувані для того, щоб допомогти з переходом до багатошарової екосистеми, без реклами, альткоїнів та сторонніх трекерів.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Підприємства-спонсори 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Спонсори з спільноти ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Стати спонсором ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1422,7 @@
<target>Перейдіть до <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> щоб стати спонсором</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Інтеграції спільноти</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1444,7 @@
<target>Союзи спільноти</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1453,7 @@
<target>Учасники проекту</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1462,7 @@
<target>Розробники проекту</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -2345,23 +2343,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,6 +2359,14 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<context-group purpose="location">
@@ -2471,9 +2469,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> з <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3397,7 @@
<target>Непідтверджена</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Dự án Mã nguồn mở Mempool</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<target>Một phần mềm và API được phát triển, vận hành cho cộng đồng Bitcoin, tập trung vào thị trường phí giao dịch mới nổi để giúp chúng ta chuyển đổi thành một hệ sinh thái nhiều lớp, không quảng cáo, không altcoin hoặc trình theo dõi của bên thứ ba.</target>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Nhà tài trợ doanh nghiệp 🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1406,7 +1404,7 @@
<target>Nhà tài trợ cộng đồng ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1415,7 +1413,7 @@
<target>Trở thành nhà tài trợ ❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1424,7 +1422,7 @@
<target>Chuyển sang <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/> https://mempool.space/sponsor <x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> để tài trợ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Tích hợp cộng đồng</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1446,7 +1444,7 @@
<target>Liên minh cộng đồng</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1455,7 +1453,7 @@
<target>Người đóng góp dự án</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1464,7 +1462,7 @@
<target>Người bảo trì dự án</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1593,6 +1591,7 @@
</trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source>
<target>Điểm cuối</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -1749,6 +1748,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>Sự miêu tả</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -2345,23 +2345,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>Ví dụ về mã</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2362,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Cài đặt gói</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>Phản ứng</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2471,9 +2474,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> trong tổng số <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3400,7 +3402,7 @@
<target>Chưa xác nhận</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -747,7 +747,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -982,7 +982,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1003,7 +1003,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1020,7 +1020,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note priority="1" from="description">shared.transaction</note>
</trans-unit>
@@ -1263,22 +1263,22 @@
<source>The Mempool Open Source Project</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note priority="1" from="description">about.about-the-project</note>
</trans-unit>
<trans-unit id="35183d36272d152e9b838a42bafbe6526a55f7ee" datatype="html">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit id="f447b21299afc5bc9dadade96dbc90114bea837a" datatype="html">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
<source>Enterprise Sponsors 🚀</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1286,7 +1286,7 @@
<source>Community Sponsors ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note priority="1" from="description">about.sponsors.withHeart</note>
</trans-unit>
@@ -1294,7 +1294,7 @@
<source>Become a sponsor ❤️</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note priority="1" from="description">about.become-a-sponsor</note>
</trans-unit>
@@ -1302,7 +1302,7 @@
<source>Navigate to <x id="START_LINK" ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;"/>https://mempool.space/sponsor<x id="CLOSE_LINK" ctype="x-a" equiv-text="&lt;/a&gt;"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1314,7 +1314,7 @@
<source>Community Integrations</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note priority="1" from="description">about.integrations</note>
</trans-unit>
@@ -1322,7 +1322,7 @@
<source>Community Alliances</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note priority="1" from="description">about.alliances</note>
</trans-unit>
@@ -1330,7 +1330,7 @@
<source>Project Contributors</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note priority="1" from="description">about.contributors</note>
</trans-unit>
@@ -1338,7 +1338,7 @@
<source>Project Maintainers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note priority="1" from="description">about.maintainers</note>
</trans-unit>
@@ -2158,23 +2158,15 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit id="d6b673097fb7e79231afc43857e376f69ab9f3e3" datatype="html">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note priority="1" from="description">API Docs install lib</note>
</trans-unit>
<trans-unit id="0a668c1c2a17e557a18fc06619998e002f50df1e" datatype="html">
<source>Code Example</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2182,6 +2174,14 @@
</context-group>
<note priority="1" from="description">API Docs code example</note>
</trans-unit>
<trans-unit id="d6b673097fb7e79231afc43857e376f69ab9f3e3" datatype="html">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note priority="1" from="description">API Docs install lib</note>
</trans-unit>
<trans-unit id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467" datatype="html">
<source>Response</source>
<context-group purpose="location">
@@ -2275,8 +2275,8 @@
<note priority="1" from="description">Liquid Asset circulating amount</note>
<note priority="1" from="meaning">asset.circulating-amount</note>
</trans-unit>
<trans-unit id="f8c95f48130898dbd3b09638813b5f61c77ef7ee" datatype="html">
<source><x id="INTERPOLATION" equiv-text="{{ (transactions?.length | number) || &apos;?&apos; }}"/> of <x id="INTERPOLATION_1" equiv-text="{{ txCount | number }}"/></source>
<trans-unit id="c3360a933cb312b395d276a2b865214cf832df58" datatype="html">
<source><x id="INTERPOLATION" equiv-text="{{ (transactions?.length | number) || &apos;?&apos; }}"/> of <x id="INTERPOLATION_1" equiv-text="{{ txCount | number }}"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3119,7 +3119,7 @@
<source>Unconfirmed</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -657,6 +657,7 @@
</trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source>
<target>市场</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context>
@@ -669,6 +670,7 @@
</trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source>
<target>比特币市场</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context>
@@ -681,6 +683,7 @@
</trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source>
<target>货币</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context>
@@ -799,7 +802,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">198,202</context>
<context context-type="linenumber">202,206</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -814,6 +817,7 @@
</trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source>
<target>购买优惠</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context>
@@ -822,6 +826,7 @@
</trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source>
<target>出售优惠</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context>
@@ -830,6 +835,7 @@
</trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>金额 (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context>
@@ -950,6 +956,7 @@
</trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source>
<target>日期</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context>
@@ -1023,6 +1030,7 @@
</trans-unit>
<trans-unit datatype="html" id="8fe73a4787b8068b2ba61f54ab7e0f9af2ea1fc9">
<source>Version</source>
<target>版本</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
<context context-type="linenumber">29</context>
@@ -1046,7 +1054,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">27</context>
<context context-type="linenumber">29</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1068,7 +1076,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">28</context>
<context context-type="linenumber">30</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1086,7 +1094,7 @@
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">13</context>
<context context-type="linenumber">14</context>
</context-group>
<note from="description" priority="1">shared.transaction</note>
</trans-unit>
@@ -1185,6 +1193,7 @@
</trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source>
<target>BSQ交易</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context>
@@ -1232,6 +1241,7 @@
</trans-unit>
<trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source>
<target>创世纪</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context>
@@ -1239,6 +1249,7 @@
</trans-unit>
<trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source>
<target>不规律的</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context>
@@ -1286,6 +1297,7 @@
</trans-unit>
<trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source>
<target>转BSQ</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context>
@@ -1349,18 +1361,17 @@
</trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source>
<target>Mempool 开源项目</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">11,12</context>
<context context-type="linenumber">12,13</context>
</context-group>
<note from="description" priority="1">about.about-the-project</note>
</trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee">
<source>An explorer and API developed and operated for the Bitcoin community, focusing on the emerging transaction fee market to help our transition into a multi-layer ecosystem, without ads, altcoins, or third-party trackers.</source>
<trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<source>Building a mempool and blockchain explorer for the Bitcoin community, focusing on the transaction fee market and multi-layer ecosystem, without any advertising, altcoins, or third-party trackers.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">12,16</context>
<context context-type="linenumber">13,17</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1368,7 +1379,7 @@
<target>企业赞助🚀</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">31,33</context>
<context context-type="linenumber">32,34</context>
</context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit>
@@ -1377,7 +1388,7 @@
<target>社区赞助❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">49,52</context>
<context context-type="linenumber">50,53</context>
</context-group>
<note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit>
@@ -1386,7 +1397,7 @@
<target>成为赞助商❤️</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">61,62</context>
<context context-type="linenumber">62,63</context>
</context-group>
<note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit>
@@ -1394,7 +1405,7 @@
<source>Navigate to <x ctype="x-a" equiv-text="&lt;a href=&quot;https://mempool.space/sponsor&quot; target=&quot;_blank&quot;&gt;" id="START_LINK"/>https://mempool.space/sponsor<x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/> to sponsor</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">62</context>
<context context-type="linenumber">63</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1407,7 +1418,7 @@
<target>社区整合</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">66,69</context>
<context context-type="linenumber">67,70</context>
</context-group>
<note from="description" priority="1">about.integrations</note>
</trans-unit>
@@ -1416,7 +1427,7 @@
<target>社区联盟</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">133,135</context>
<context context-type="linenumber">134,136</context>
</context-group>
<note from="description" priority="1">about.alliances</note>
</trans-unit>
@@ -1425,7 +1436,7 @@
<target>项目贡献者</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">148,150</context>
<context context-type="linenumber">149,151</context>
</context-group>
<note from="description" priority="1">about.contributors</note>
</trans-unit>
@@ -1434,7 +1445,7 @@
<target>项目维护人员</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context>
<context context-type="linenumber">162,164</context>
<context context-type="linenumber">163,165</context>
</context-group>
<note from="description" priority="1">about.maintainers</note>
</trans-unit>
@@ -1717,6 +1728,7 @@
</trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source>
<target>描述</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context>
@@ -2273,23 +2285,16 @@
<context context-type="linenumber">59,61</context>
</context-group>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">6,7</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source>
<target>代码示例</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">12</context>
<context context-type="linenumber">6</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">19</context>
<context context-type="linenumber">13</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2297,8 +2302,18 @@
</context-group>
<note from="description" priority="1">API Docs code example</note>
</trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>安装包</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">23,24</context>
</context-group>
<note from="description" priority="1">API Docs install lib</note>
</trans-unit>
<trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source>
<target>回复</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context>
@@ -2396,8 +2411,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></source>
<trans-unit datatype="html" id="c3360a933cb312b395d276a2b865214cf832df58">
<source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context>
@@ -3316,7 +3331,7 @@
<target>未确认</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">32</context>
<context context-type="linenumber">34</context>
</context-group>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -100,6 +100,7 @@ http {
~*^uk uk;
~*^vi vi;
~*^zh zh;
~*^ru ru;
}
map $cookie_lang $lang {
@@ -129,6 +130,7 @@ http {
~*^uk uk;
~*^vi vi;
~*^zh zh;
~*^ru ru;
}
server {

View File

@@ -111,6 +111,7 @@ http {
~*^uk uk;
~*^vi vi;
~*^zh zh;
~*^ru ru;
}
map $cookie_lang $lang {
@@ -140,6 +141,7 @@ http {
~*^uk uk;
~*^vi vi;
~*^zh zh;
~*^ru ru;
}
upstream electrs-mainnet {