Compare commits

..

32 Commits

Author SHA1 Message Date
wiz
eb6db6caf3 Bump version for v2.2.0 release 2021-07-03 14:36:10 -07:00
wiz
78c44eedbc Update from transifex 2021-07-03 14:34:47 -07:00
softsimon
b48a48a6be Updating from transifex. 2021-06-29 13:12:47 -04:00
softsimon
8e1aae1bbf Updating i18n messages. 2021-06-29 13:11:39 -04:00
Miguel Medeiros
807d4b0327 Fix tv only (#598)
* Remove TV Only container.
2021-06-29 13:10:15 -04:00
Miguel Medeiros
df588695ec Fix iinverse mempool graph also affect the TV view (#580) 2021-06-29 13:08:11 -04:00
softsimon
da13349b14 Reduce titles in Russian language to prevent overflows. 2021-06-27 12:16:59 -04:00
softsimon
6be733490f npm audit fix 2021-06-26 15:28:45 -04:00
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
54 changed files with 26193 additions and 1632 deletions

View File

@@ -27,6 +27,9 @@ jobs:
- name: Show set environment variables - name: Show set environment variables
run: | run: |
printf " TAG: %s\n" "$TAG" 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 - name: Login to Docker for building
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin 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" \ --cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64,linux/arm/v7 \ --platform linux/amd64,linux/arm64,linux/arm/v7 \
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:$TAG \ --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 \ --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,12 +1,12 @@
{ {
"name": "mempool-backend", "name": "mempool-backend",
"version": "2.2.0-dev", "version": "2.2.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "mempool-backend", "name": "mempool-backend",
"version": "2.2.0-dev", "version": "2.2.0",
"license": "GNU Affero General Public License v3.0", "license": "GNU Affero General Public License v3.0",
"dependencies": { "dependencies": {
"@mempool/bitcoin": "^3.0.2", "@mempool/bitcoin": "^3.0.2",
@@ -570,11 +570,6 @@
"node": ">= 0.8" "node": ">= 0.8"
} }
}, },
"node_modules/es6-promise": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
"integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
},
"node_modules/escape-html": { "node_modules/escape-html": {
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -896,14 +891,11 @@
} }
}, },
"node_modules/locutus": { "node_modules/locutus": {
"version": "2.0.14", "version": "2.0.15",
"resolved": "https://registry.npmjs.org/locutus/-/locutus-2.0.14.tgz", "resolved": "https://registry.npmjs.org/locutus/-/locutus-2.0.15.tgz",
"integrity": "sha512-0H1o1iHNEp3kJ5rW57bT/CAP5g6Qm0Zd817Wcx2+rOMTYyIJoc482Ja1v9dB6IUjwvWKcBNdYi7x2lRXtlJ3bA==", "integrity": "sha512-2xWC4RkoAoCVXEb/stzEgG1TNgd+mrkLBj6TuEDNyUoKeQ2XzDTyJUC23sMiqbL6zJmJSP3w59OZo+zc4IBOmA==",
"dependencies": {
"es6-promise": "^4.2.5"
},
"engines": { "engines": {
"node": ">= 0.12.0" "node": ">= 10"
} }
}, },
"node_modules/long": { "node_modules/long": {
@@ -2061,11 +2053,6 @@
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
"integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
}, },
"es6-promise": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
"integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
},
"escape-html": { "escape-html": {
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -2322,12 +2309,9 @@
} }
}, },
"locutus": { "locutus": {
"version": "2.0.14", "version": "2.0.15",
"resolved": "https://registry.npmjs.org/locutus/-/locutus-2.0.14.tgz", "resolved": "https://registry.npmjs.org/locutus/-/locutus-2.0.15.tgz",
"integrity": "sha512-0H1o1iHNEp3kJ5rW57bT/CAP5g6Qm0Zd817Wcx2+rOMTYyIJoc482Ja1v9dB6IUjwvWKcBNdYi7x2lRXtlJ3bA==", "integrity": "sha512-2xWC4RkoAoCVXEb/stzEgG1TNgd+mrkLBj6TuEDNyUoKeQ2XzDTyJUC23sMiqbL6zJmJSP3w59OZo+zc4IBOmA=="
"requires": {
"es6-promise": "^4.2.5"
}
}, },
"long": { "long": {
"version": "4.0.0", "version": "4.0.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "mempool-backend", "name": "mempool-backend",
"version": "2.2.0-dev", "version": "2.2.0",
"description": "Bitcoin mempool visualizer and blockchain explorer backend", "description": "Bitcoin mempool visualizer and blockchain explorer backend",
"license": "GNU Affero General Public License v3.0", "license": "GNU Affero General Public License v3.0",
"homepage": "https://mempool.space", "homepage": "https://mempool.space",

View File

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

View File

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

View File

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

View File

@@ -35,8 +35,9 @@ describe('Mainnet', () => {
cy.viewport('macbook-16'); cy.viewport('macbook-16');
cy.visit('/'); cy.visit('/');
cy.get('li:nth-of-type(4) > a').click().then(() => { cy.get('li:nth-of-type(4) > a').click().then(() => {
cy.viewport('macbook-16');
cy.wait(1000); cy.wait(1000);
cy.get('.tv-only').should('not.be.visible'); cy.get('.blockchain-wrapper').should('be.visible');
}); });
}); });
@@ -45,7 +46,7 @@ describe('Mainnet', () => {
cy.get('li:nth-of-type(4) > a').click().then(() => { cy.get('li:nth-of-type(4) > a').click().then(() => {
cy.viewport('iphone-6'); cy.viewport('iphone-6');
cy.wait(1000); cy.wait(1000);
cy.get('.tv-only').should('be.visible'); cy.get('.blockchain-wrapper').should('not.be.visible');
}); });
}); });
}); });

View File

@@ -1,4 +1,5 @@
var fs = require('fs'); var fs = require('fs');
const { spawnSync } = require('child_process');
const CONFIG_FILE_NAME = 'mempool-frontend-config.json'; const CONFIG_FILE_NAME = 'mempool-frontend-config.json';
const GENERATED_CONFIG_FILE_NAME = 'generated-config.js'; const GENERATED_CONFIG_FILE_NAME = 'generated-config.js';
@@ -11,15 +12,19 @@ let packetJsonVersion = '';
try { try {
const rawConfig = fs.readFileSync(CONFIG_FILE_NAME); const rawConfig = fs.readFileSync(CONFIG_FILE_NAME);
configContent = JSON.parse(rawConfig); configContent = JSON.parse(rawConfig);
console.log(`${CONFIG_FILE_NAME} file found, using provided config`);
} catch (e) { } catch (e) {
if (e.code !== 'ENOENT') { if (e.code !== 'ENOENT') {
throw new Error(e); throw new Error(e);
} else {
console.log(`${CONFIG_FILE_NAME} file not found, using default config`);
} }
} }
try { try {
const packageJson = fs.readFileSync('package.json'); const packageJson = fs.readFileSync('package.json');
packetJsonVersion = JSON.parse(packageJson).version; packetJsonVersion = JSON.parse(packageJson).version;
console.log(`mempool version ${packetJsonVersion}`);
} catch (e) { } catch (e) {
throw new Error(e); throw new Error(e);
} }
@@ -31,23 +36,64 @@ for (setting in configContent) {
}); });
} }
try { if (process.env.DOCKER_COMMIT_HASH) {
gitCommitHash = fs.readFileSync('../.git/refs/heads/master').toString().trim(); gitCommitHash = process.env.DOCKER_COMMIT_HASH;
} catch (e) { } else {
console.log('Could not load git commit info: ' + e.message || e); 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 = window.__env || {};${settings.reduce((str, obj) => `${str}
window.__env.${obj.key} = ${ typeof obj.value === 'string' ? `'${obj.value}'` : obj.value };`, '')} window.__env.${obj.key} = ${ typeof obj.value === 'string' ? `'${obj.value}'` : obj.value };`, '')}
window.__env.GIT_COMMIT_HASH = '${gitCommitHash}'; window.__env.GIT_COMMIT_HASH = '${gitCommitHash}';
window.__env.PACKAGE_JSON_VERSION = '${packetJsonVersion}'; window.__env.PACKAGE_JSON_VERSION = '${packetJsonVersion}';
}(global || this));`; }(global || this));`;
try { function readConfig(path) {
fs.writeFileSync(GENERATED_CONFIG_FILE_NAME, code, 'utf8'); try {
} catch (e) { const currentConfig = fs.readFileSync(path).toString().trim();
throw new Error(e); 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`);
};

21050
frontend/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "mempool-frontend", "name": "mempool-frontend",
"version": "2.2.0-dev", "version": "2.2.0",
"description": "Bitcoin mempool visualizer and blockchain explorer backend", "description": "Bitcoin mempool visualizer and blockchain explorer backend",
"license": "GNU Affero General Public License v3.0", "license": "GNU Affero General Public License v3.0",
"homepage": "https://mempool.space", "homepage": "https://mempool.space",
@@ -24,9 +24,9 @@
"tsc": "./node_modules/typescript/bin/tsc", "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-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", "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1 --force",
"serve": "ng serve -c local", "serve": "npm run generate-config && ng serve -c local",
"serve:stg": "ng serve -c staging", "serve:stg": "npm run generate-config && ng serve -c staging",
"serve:local-prod": "ng serve -c local-prod", "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": "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: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", "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/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3", "@fortawesome/free-solid-svg-icons": "^5.15.3",
"@mempool/chartist": "^0.11.4", "@mempool/chartist": "^0.11.4",
"@mempool/mempool.js": "^2.2.1", "@mempool/mempool.js": "^2.2.2",
"@ng-bootstrap/ng-bootstrap": "^7.0.0", "@ng-bootstrap/ng-bootstrap": "^7.0.0",
"@nguniversal/express-engine": "11.2.1", "@nguniversal/express-engine": "11.2.1",
"@types/qrcode": "^1.3.4", "@types/qrcode": "^1.3.4",

View File

@@ -88,5 +88,20 @@
"pathRewrite": { "pathRewrite": {
"^/bisq/api": "/api/v1/ws" "^/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/" "^/liquid/api/": "/liquid/api/"
}, },
"timeout": 3600000 "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/" "^/liquid/api/": "/api/v1/liquid/"
}, },
"timeout": 3600000 "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', name: 'Português' }, // Portuguese
// { code: 'pt-BR', name: 'Português (Brazil)' }, // Portuguese (Brazil) // { code: 'pt-BR', name: 'Português (Brazil)' }, // Portuguese (Brazil)
// { code: 'ro', name: 'Română' }, // Romanian // { code: 'ro', name: 'Română' }, // Romanian
// { code: 'ru', name: 'Русский' }, // Russian { code: 'ru', name: 'Русский' }, // Russian
// { code: 'sk', name: 'Slovenčina' }, // Slovak // { code: 'sk', name: 'Slovenčina' }, // Slovak
{ code: 'sl', name: 'Slovenščina' }, // Slovenian { code: 'sl', name: 'Slovenščina' }, // Slovenian
// { code: 'sr', name: 'Српски / srpski' }, // Serbian // { code: 'sr', name: 'Српски / srpski' }, // Serbian

View File

@@ -1,6 +1,7 @@
<div class="container-xl about-page"> <div class="container-xl about-page">
<div class="intro"> <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" /> <img class="logo" src="./resources/mempool-logo-bigger.png" />
<div class="version"> <div class="version">
v{{ packetJsonVersion }} [{{ frontendGitCommitHash }}] v{{ packetJsonVersion }} [{{ frontendGitCommitHash }}]
@@ -8,8 +9,8 @@
</div> </div>
<div class="about-text"> <div class="about-text">
<h5 i18n="about.about-the-project">The Mempool Open Source Project</h5> <h5><ng-container i18n="about.about-the-project">The Mempool Open Source Project</ng-container> &trade;</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> <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>
<div class="social-icons"> <div class="social-icons">
@@ -191,6 +192,9 @@
<p> <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> 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>
<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>
<div class="footer-links"> <div class="footer-links">

View File

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

View File

@@ -17,7 +17,7 @@ export class AboutComponent implements OnInit {
backendInfo$: Observable<IBackendInfo>; backendInfo$: Observable<IBackendInfo>;
sponsors$: Observable<any>; sponsors$: Observable<any>;
contributors$: 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; packetJsonVersion = this.stateService.env.PACKAGE_JSON_VERSION;
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE; officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
showNavigateToSponsor = false; showNavigateToSponsor = false;

View File

@@ -73,7 +73,7 @@
<br> <br>
<h2> <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 [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> <ng-template #defaultAsset i18n="Default asset transactions title">Issuance and Burn Transactions</ng-template>
</h2> </h2>

View File

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

View File

@@ -1,11 +1,11 @@
.ct-legend{ .ct-legend {
top: 130px; top: 130px;
display: flex; display: flex;
flex-direction: column-reverse; flex-direction: column-reverse;
@media (min-width: 653px) { @media (min-width: 653px) {
top: 90px; top: 90px;
} }
} }
.ct-legend.inverted{ .ct-legend.inverted {
flex-direction: column; flex-direction: column !important;
} }

View File

@@ -4,8 +4,6 @@
<div class="spinner-border text-light"></div> <div class="spinner-border text-light"></div>
</div> </div>
<div class="tv-only" i18n="television.tv-only">TV only</div>
<div class="tv-container" *ngIf="!loading"> <div class="tv-container" *ngIf="!loading">
<div class="chart-holder" *ngIf="mempoolStats.length"> <div class="chart-holder" *ngIf="mempoolStats.length">

View File

@@ -31,6 +31,15 @@
.blockchain-wrapper { .blockchain-wrapper {
display: flex;
height: 100%;
min-height: 240px;
position: relative;
top: -20px;
@media(min-height: 800px) {
top: 10px;
}
.position-container { .position-container {
position: absolute; position: absolute;
left: 50%; left: 50%;
@@ -76,29 +85,13 @@
} }
} }
.tv-only {
display: block;
height: 100vh;
width: 100%;
position: relative;
display: flex;
text-align: center;
flex-direction: row;
align-items: center;
justify-content: center;
@media(min-width: 768px) {
display: none;
}
@media(max-height: 720px) {
display: flex;
}
}
.tv-container { .tv-container {
display: none; display: flex;
@media(min-width: 768px) { margin-top: 0px;
display: flex; flex-direction: column;
} @media(max-height: 700px) {
@media(max-height: 720px) { .blockchain-wrapper{
display: none; display: none !important;
}
} }
} }

View File

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

View File

@@ -3,6 +3,7 @@
<body> <body>
<trans-unit datatype="html" id="ngb.alert.close"> <trans-unit datatype="html" id="ngb.alert.close">
<source>Close</source> <source>Close</source>
<target>مغلق</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">74</context>
@@ -10,6 +11,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.carousel.previous"> <trans-unit datatype="html" id="ngb.carousel.previous">
<source>Previous</source> <source>Previous</source>
<target>السابق</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context> <context context-type="linenumber">349</context>
@@ -17,6 +19,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.carousel.next"> <trans-unit datatype="html" id="ngb.carousel.next">
<source>Next</source> <source>Next</source>
<target>التالي</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context> <context context-type="linenumber">349</context>
@@ -24,6 +27,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.previous-month"> <trans-unit datatype="html" id="ngb.datepicker.previous-month">
<source>Previous month</source> <source>Previous month</source>
<target>الشهر السابق</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">62,64</context>
@@ -35,6 +39,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.next-month"> <trans-unit datatype="html" id="ngb.datepicker.next-month">
<source>Next month</source> <source>Next month</source>
<target>الشهر التالي</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">72</context>
@@ -46,6 +51,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-month"> <trans-unit datatype="html" id="ngb.datepicker.select-month">
<source>Select month</source> <source>Select month</source>
<target>اختر الشهر</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">74</context>
@@ -57,6 +63,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-year"> <trans-unit datatype="html" id="ngb.datepicker.select-year">
<source>Select year</source> <source>Select year</source>
<target>اختر السنه</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">74</context>
@@ -68,6 +75,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first"> <trans-unit datatype="html" id="ngb.pagination.first">
<source>««</source> <source>««</source>
<target>««</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -75,6 +83,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous"> <trans-unit datatype="html" id="ngb.pagination.previous">
<source>«</source> <source>«</source>
<target>«</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -82,6 +91,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next"> <trans-unit datatype="html" id="ngb.pagination.next">
<source>»</source> <source>»</source>
<target>»</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -89,6 +99,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last"> <trans-unit datatype="html" id="ngb.pagination.last">
<source>»»</source> <source>»»</source>
<target>»»</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -96,6 +107,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first-aria"> <trans-unit datatype="html" id="ngb.pagination.first-aria">
<source>First</source> <source>First</source>
<target>أول</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -103,6 +115,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous-aria"> <trans-unit datatype="html" id="ngb.pagination.previous-aria">
<source>Previous</source> <source>Previous</source>
<target>السابق</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -110,6 +123,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next-aria"> <trans-unit datatype="html" id="ngb.pagination.next-aria">
<source>Next</source> <source>Next</source>
<target>التالي</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -117,6 +131,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last-aria"> <trans-unit datatype="html" id="ngb.pagination.last-aria">
<source>Last</source> <source>Last</source>
<target>آخر</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -124,6 +139,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.progressbar.value"> <trans-unit datatype="html" id="ngb.progressbar.value">
<source><x id="INTERPOLATION"/></source> <source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context>
<context context-type="linenumber">101</context> <context context-type="linenumber">101</context>
@@ -131,6 +147,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.HH"> <trans-unit datatype="html" id="ngb.timepicker.HH">
<source>HH</source> <source>HH</source>
<target>ساعه</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -138,6 +155,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.hours"> <trans-unit datatype="html" id="ngb.timepicker.hours">
<source>Hours</source> <source>Hours</source>
<target>ساعات</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -145,6 +163,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.MM"> <trans-unit datatype="html" id="ngb.timepicker.MM">
<source>MM</source> <source>MM</source>
<target>دقيقه</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -152,6 +171,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.minutes"> <trans-unit datatype="html" id="ngb.timepicker.minutes">
<source>Minutes</source> <source>Minutes</source>
<target>دقائق</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -159,6 +179,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-hours"> <trans-unit datatype="html" id="ngb.timepicker.increment-hours">
<source>Increment hours</source> <source>Increment hours</source>
<target>ساعات اضافيه</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -166,6 +187,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-hours"> <trans-unit datatype="html" id="ngb.timepicker.decrement-hours">
<source>Decrement hours</source> <source>Decrement hours</source>
<target>انتقاص الساعات</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -173,6 +195,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-minutes"> <trans-unit datatype="html" id="ngb.timepicker.increment-minutes">
<source>Increment minutes</source> <source>Increment minutes</source>
<target>دقائق اضافيه</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -180,6 +203,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-minutes"> <trans-unit datatype="html" id="ngb.timepicker.decrement-minutes">
<source>Decrement minutes</source> <source>Decrement minutes</source>
<target>انتقاص الدقائق</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -187,6 +211,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.SS"> <trans-unit datatype="html" id="ngb.timepicker.SS">
<source>SS</source> <source>SS</source>
<target>ثانيه</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -194,6 +219,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.seconds"> <trans-unit datatype="html" id="ngb.timepicker.seconds">
<source>Seconds</source> <source>Seconds</source>
<target>ثوان</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -201,6 +227,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-seconds"> <trans-unit datatype="html" id="ngb.timepicker.increment-seconds">
<source>Increment seconds</source> <source>Increment seconds</source>
<target>ثواني اضافيه</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -208,6 +235,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-seconds"> <trans-unit datatype="html" id="ngb.timepicker.decrement-seconds">
<source>Decrement seconds</source> <source>Decrement seconds</source>
<target>انتقاص الثوان</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -215,6 +243,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.PM"> <trans-unit datatype="html" id="ngb.timepicker.PM">
<source><x id="INTERPOLATION"/></source> <source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -222,6 +251,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.AM"> <trans-unit datatype="html" id="ngb.timepicker.AM">
<source><x id="INTERPOLATION"/></source> <source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -229,6 +259,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.toast.close-aria"> <trans-unit datatype="html" id="ngb.toast.close-aria">
<source>Close</source> <source>Close</source>
<target>مغلق</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">137</context>
@@ -315,6 +346,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="cf1fbcd10d4be4845152f2e10d1db9bc61dd9410"> <trans-unit datatype="html" id="cf1fbcd10d4be4845152f2e10d1db9bc61dd9410">
<source>Issuance TX</source> <source>Issuance TX</source>
<target>مصدر المعامله</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/assets/assets.component.html</context> <context context-type="sourcefile">src/app/assets/assets.component.html</context>
<context context-type="linenumber">23,26</context> <context context-type="linenumber">23,26</context>
@@ -462,7 +494,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="51e0346da0d58dd6ee252cdaae9ca2711b2f540a"> <trans-unit datatype="html" id="51e0346da0d58dd6ee252cdaae9ca2711b2f540a">
<source>Block <x ctype="x-a" equiv-text="&lt;a [routerLink]=&quot;['/block/' | relativeUrl, blockHash]&quot;&gt;" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/></source> <source>Block <x ctype="x-a" equiv-text="&lt;a [routerLink]=&quot;['/block/' | relativeUrl, blockHash]&quot;&gt;" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/></source>
<target>كتلة <x ctype="x-a" equiv-text="&lt;a [routerLink]=&quot;['/block/' | relativeUrl, blockHash]&quot;&gt;" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/></target> <target>الكتلة <x ctype="x-a" equiv-text="&lt;a [routerLink]=&quot;['/block/' | relativeUrl, blockHash]&quot;&gt;" id="START_LINK"/><x equiv-text="{{ blockHeight }}" id="INTERPOLATION"/><x ctype="x-a" equiv-text="&lt;/a&gt;" id="CLOSE_LINK"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
<context context-type="linenumber">4</context> <context context-type="linenumber">4</context>
@@ -475,7 +507,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="960cd598cbd85edb0a254ff3e59574d2c5cb888c"> <trans-unit datatype="html" id="960cd598cbd85edb0a254ff3e59574d2c5cb888c">
<source>Hash</source> <source>Hash</source>
<target>هاش</target> <target>معرف التشفير</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
<context context-type="linenumber">17</context> <context context-type="linenumber">17</context>
@@ -492,7 +524,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="804faeaeb734a942eeb814dd53eceed25427d864"> <trans-unit datatype="html" id="804faeaeb734a942eeb814dd53eceed25427d864">
<source>Timestamp</source> <source>Timestamp</source>
<target>الوقت و التاريخ</target> <target>الوقت والتاريخ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
<context context-type="linenumber">21</context> <context context-type="linenumber">21</context>
@@ -514,6 +546,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="6d0db947a91dc4884aefa858a27fc848530e6404"> <trans-unit datatype="html" id="6d0db947a91dc4884aefa858a27fc848530e6404">
<source>Previous hash</source> <source>Previous hash</source>
<target>معرف التشفير السابق</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-block/bisq-block.component.html</context>
<context context-type="linenumber">35</context> <context context-type="linenumber">35</context>
@@ -535,6 +568,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2"> <trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2">
<source>BSQ Blocks</source> <source>BSQ Blocks</source>
<target>كتل BSQ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
<context context-type="linenumber">2,7</context> <context context-type="linenumber">2,7</context>
@@ -622,6 +656,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0"> <trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
<source>Bisq Trading Volume</source> <source>Bisq Trading Volume</source>
<target>حجم التداول في Bisq</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">3,7</context> <context context-type="linenumber">3,7</context>
@@ -634,6 +669,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1"> <trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source> <source>Markets</source>
<target>الاسواق</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -646,6 +682,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba"> <trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source> <source>Bitcoin Markets</source>
<target>اسواق البتكوين</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context> <context context-type="linenumber">21,23</context>
@@ -658,6 +695,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9"> <trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source> <source>Currency</source>
<target>العمله</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context> <context context-type="linenumber">27</context>
@@ -697,6 +735,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff"> <trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff">
<source>Volume (7d)</source> <source>Volume (7d)</source>
<target>حجم التداول (٧ ايام)</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">29</context> <context context-type="linenumber">29</context>
@@ -705,6 +744,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6"> <trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6">
<source>Trades (7d)</source> <source>Trades (7d)</source>
<target>التداول ( ٧ ايام )</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@@ -717,6 +757,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3"> <trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3">
<source>Latest Trades</source> <source>Latest Trades</source>
<target>احدث التداولات</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">52,55</context> <context context-type="linenumber">52,55</context>
@@ -733,6 +774,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6"> <trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6">
<source>Bisq Price Index</source> <source>Bisq Price Index</source>
<target>مؤشر السعر Bisq</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">9,11</context> <context context-type="linenumber">9,11</context>
@@ -741,6 +783,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349"> <trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349">
<source>Bisq Market Price</source> <source>Bisq Market Price</source>
<target>سعر سوق Bisq</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">21,23</context> <context context-type="linenumber">21,23</context>
@@ -773,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -788,6 +831,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da"> <trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source> <source>Buy Offers</source>
<target>طلبات الشراء</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context> <context context-type="linenumber">73,74</context>
@@ -796,6 +840,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a"> <trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source> <source>Sell Offers</source>
<target>طلبات البيع</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context> <context context-type="linenumber">74,77</context>
@@ -804,6 +849,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560"> <trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source> <source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>الكمية (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context> <context context-type="linenumber">112,113</context>
@@ -816,6 +862,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4"> <trans-unit datatype="html" id="2a30a4cdb123a03facc5ab8c5b3e6d8b8dbbc3d4">
<source>BSQ statistics</source> <source>BSQ statistics</source>
<target>احصائيات BSQ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@@ -841,6 +888,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3218e6768d0d5fbc69d4931819e21451c89ba8ed"> <trans-unit datatype="html" id="3218e6768d0d5fbc69d4931819e21451c89ba8ed">
<source>Minted amount</source> <source>Minted amount</source>
<target>المبلغ المسكوك</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">16</context> <context context-type="linenumber">16</context>
@@ -853,6 +901,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="32377aae07f946d943f9361c8e518f714988c619"> <trans-unit datatype="html" id="32377aae07f946d943f9361c8e518f714988c619">
<source>Burnt amount</source> <source>Burnt amount</source>
<target>المبالغ المحترقة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">20</context> <context context-type="linenumber">20</context>
@@ -886,6 +935,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="fb5b5aec9a6add4912de64b7bbc55884cc7f8e3a"> <trans-unit datatype="html" id="fb5b5aec9a6add4912de64b7bbc55884cc7f8e3a">
<source>Unspent TXOs</source> <source>Unspent TXOs</source>
<target>لم يتم صرف مخرجات المعامله</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">28</context> <context context-type="linenumber">28</context>
@@ -898,6 +948,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="0f8a41c901cd606bd3389d8a022cee193264f20b"> <trans-unit datatype="html" id="0f8a41c901cd606bd3389d8a022cee193264f20b">
<source>Spent TXOs</source> <source>Spent TXOs</source>
<target>تم صرف مخرجات المعامله</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-stats/bisq-stats.component.html</context>
<context context-type="linenumber">32</context> <context context-type="linenumber">32</context>
@@ -919,6 +970,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c"> <trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source> <source>Date</source>
<target>التاريخ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context> <context context-type="linenumber">4,6</context>
@@ -994,6 +1046,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8fe73a4787b8068b2ba61f54ab7e0f9af2ea1fc9"> <trans-unit datatype="html" id="8fe73a4787b8068b2ba61f54ab7e0f9af2ea1fc9">
<source>Version</source> <source>Version</source>
<target>الاصدار</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
<context context-type="linenumber">29</context> <context context-type="linenumber">29</context>
@@ -1017,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1039,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1057,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1156,6 +1209,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda"> <trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source> <source>BSQ Transactions</source>
<target>تحويلات BSQ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context> <context context-type="linenumber">2,5</context>
@@ -1163,6 +1217,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="94c248797dd2b6af49068cb49c3b4bc26bec6a16"> <trans-unit datatype="html" id="94c248797dd2b6af49068cb49c3b4bc26bec6a16">
<source>TXID</source> <source>TXID</source>
<target>رقم الحواله</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">18,19</context> <context context-type="linenumber">18,19</context>
@@ -1178,6 +1233,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8411955056013208681"> <trans-unit datatype="html" id="8411955056013208681">
<source>Asset listing fee</source> <source>Asset listing fee</source>
<target>رسوم الإدراج</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@@ -1185,6 +1241,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4096113720451832029"> <trans-unit datatype="html" id="4096113720451832029">
<source>Blind vote</source> <source>Blind vote</source>
<target>التصويت المخفي</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">31</context>
@@ -1192,6 +1249,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8029165479004970466"> <trans-unit datatype="html" id="8029165479004970466">
<source>Compensation request</source> <source>Compensation request</source>
<target>طلب تعويض</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">32</context> <context context-type="linenumber">32</context>
@@ -1199,6 +1257,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2303359202781425764"> <trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source> <source>Genesis</source>
<target>منشأ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context> <context context-type="linenumber">33</context>
@@ -1206,6 +1265,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1805880753357861573"> <trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source> <source>Irregular</source>
<target>غير نظامي</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">34</context>
@@ -1213,6 +1273,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1899519213652410949"> <trans-unit datatype="html" id="1899519213652410949">
<source>Lockup</source> <source>Lockup</source>
<target>حجز</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">35</context> <context context-type="linenumber">35</context>
@@ -1220,6 +1281,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="450749685636583691"> <trans-unit datatype="html" id="450749685636583691">
<source>Pay trade fee</source> <source>Pay trade fee</source>
<target>دفع رسوم التداول</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">36</context> <context context-type="linenumber">36</context>
@@ -1227,6 +1289,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4844032232639560116"> <trans-unit datatype="html" id="4844032232639560116">
<source>Proof of burn</source> <source>Proof of burn</source>
<target>تاكيد الحرق</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">37</context>
@@ -1234,6 +1297,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2011097393756618787"> <trans-unit datatype="html" id="2011097393756618787">
<source>Proposal</source> <source>Proposal</source>
<target>عرض</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">38</context>
@@ -1241,6 +1305,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3275831985256202873"> <trans-unit datatype="html" id="3275831985256202873">
<source>Reimbursement request</source> <source>Reimbursement request</source>
<target>طلب سداد</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">39</context> <context context-type="linenumber">39</context>
@@ -1248,6 +1313,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1226904538495857889"> <trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source> <source>Transfer BSQ</source>
<target>نقل BSQ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">40</context>
@@ -1255,6 +1321,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4545041448523656285"> <trans-unit datatype="html" id="4545041448523656285">
<source>Unlock</source> <source>Unlock</source>
<target>فتح</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">41</context> <context context-type="linenumber">41</context>
@@ -1262,6 +1329,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8694527859973232423"> <trans-unit datatype="html" id="8694527859973232423">
<source>Vote reveal</source> <source>Vote reveal</source>
<target>اعلان التصويت</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">42</context> <context context-type="linenumber">42</context>
@@ -1269,6 +1337,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="bisq-transactions.filter"> <trans-unit datatype="html" id="bisq-transactions.filter">
<source>Filter</source> <source>Filter</source>
<target>تنقيه</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">56,55</context> <context context-type="linenumber">56,55</context>
@@ -1292,6 +1361,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="bisq-graph-trades"> <trans-unit datatype="html" id="bisq-graph-trades">
<source>Trades</source> <source>Trades</source>
<target>تداولات</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context> <context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">90</context> <context context-type="linenumber">90</context>
@@ -1299,6 +1369,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="bisq-graph-volume"> <trans-unit datatype="html" id="bisq-graph-volume">
<source>Volume</source> <source>Volume</source>
<target> حجم التداول</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context> <context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">91</context> <context context-type="linenumber">91</context>
@@ -1306,25 +1377,27 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>مشروع ميم-بول مفتوح المصدر</target> <target>مشروع Mempool مفتوح المصدر</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<target>رعاة المشروع 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1333,7 +1406,7 @@
<target>رعاة من المجتمع ❤️</target> <target>رعاة من المجتمع ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1342,15 +1415,16 @@
<target>كن راعياً ❤️</target> <target>كن راعياً ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1363,31 +1437,34 @@
<target>التكامل المجتمعي</target> <target>التكامل المجتمعي</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb"> <trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb">
<source>Community Alliances</source> <source>Community Alliances</source>
<target>التحالفات المجتمعية</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2"> <trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2">
<source>Project Contributors</source> <source>Project Contributors</source>
<target>المساهمون في المشروع</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436"> <trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
<source>Project Maintainers</source> <source>Project Maintainers</source>
<target>فريق صيانة المشروع</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1405,7 +1482,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="9f10a0577222a7d6c35a889453fa3a794750d9c4"> <trans-unit datatype="html" id="9f10a0577222a7d6c35a889453fa3a794750d9c4">
<source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source> <source>multisig <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> of <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></source>
<target>متعدد التوقيع <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> من <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target> <target>متعدد التواقيع <x equiv-text="{{ multisigM }}" id="INTERPOLATION"/> من <x equiv-text="{{ multisigN }}" id="INTERPOLATION_1"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context> <context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@@ -1459,6 +1536,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context> <context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">127,130</context> <context context-type="linenumber">127,130</context>
@@ -1515,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>نقطة النهاية</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1671,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>وصف</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -1838,6 +1918,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="e12cd52eaa77b446ba97436c145b59741151adf3"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">26,27</context> <context context-type="linenumber">26,27</context>
@@ -1845,6 +1926,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,45</context>
@@ -1852,6 +1934,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="5676910aa3ffb568079a7499b366744fe3fd87ea"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">61,63</context> <context context-type="linenumber">61,63</context>
@@ -1992,6 +2075,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a29245620333b4788dee4c478c327d99846513c6"> <trans-unit datatype="html" id="a29245620333b4788dee4c478c327d99846513c6">
<source>BSQ</source> <source>BSQ</source>
<target>BSQ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">368,370</context> <context context-type="linenumber">368,370</context>
@@ -2229,23 +2313,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>مثال على الرمز</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2253,8 +2330,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>الاستجابة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2263,6 +2350,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b"> <trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b">
<source>Asset</source> <source>Asset</source>
<target>أصل</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@@ -2354,8 +2442,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -2459,7 +2547,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="7faaaa08f56427999f3be41df1093ce4089bbd75"> <trans-unit datatype="html" id="7faaaa08f56427999f3be41df1093ce4089bbd75">
<source>Size</source> <source>Size</source>
<target>حجم</target> <target>الحجم</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">31,33</context> <context context-type="linenumber">31,33</context>
@@ -2480,7 +2568,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="919f2fd60a898850c24b1584362bbf18a4628bcb"> <trans-unit datatype="html" id="919f2fd60a898850c24b1584362bbf18a4628bcb">
<source>Weight</source> <source>Weight</source>
<target>وزن</target> <target>الوزن</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">35,37</context> <context context-type="linenumber">35,37</context>
@@ -2638,6 +2726,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8"> <trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8">
<source>Merkle root</source> <source>Merkle root</source>
<target>جذع ميركيل</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">96,98</context> <context context-type="linenumber">96,98</context>
@@ -2654,6 +2743,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a"> <trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a">
<source>Difficulty</source> <source>Difficulty</source>
<target>الصعوبه</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">110,113</context> <context context-type="linenumber">110,113</context>
@@ -2792,7 +2882,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="60cd6fa18f925b42065d8cfb1a791efdc228b4c3"> <trans-unit datatype="html" id="60cd6fa18f925b42065d8cfb1a791efdc228b4c3">
<source>Unconfirmed</source> <source>Unconfirmed</source>
<target>غير مؤكده</target> <target>غير مؤكدة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/footer/footer.component.html</context> <context context-type="sourcefile">src/app/components/footer/footer.component.html</context>
<context context-type="linenumber">16,17</context> <context context-type="linenumber">16,17</context>
@@ -2903,7 +2993,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b2cb12c1680a46464cae5aa0d0d1d6914733a75d"> <trans-unit datatype="html" id="b2cb12c1680a46464cae5aa0d0d1d6914733a75d">
<source>Fee span</source> <source>Fee span</source>
<target>امتداد الرسوم</target> <target>نطاق الرسوم</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -3016,6 +3106,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516"> <trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source> <source>Sponsor</source>
<target>الرعاة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context> <context context-type="linenumber">3</context>
@@ -3097,14 +3188,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>الآن</target> <target>الآن</target>
@@ -3272,7 +3355,7 @@
<target>غير مؤكده</target> <target>غير مؤكده</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3361,6 +3444,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b"> <trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b">
<source>Descendant</source> <source>Descendant</source>
<target>منحدر</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">163</context>
@@ -3370,6 +3454,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511"> <trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511">
<source>Ancestor</source> <source>Ancestor</source>
<target>الاصل</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">177</context> <context context-type="linenumber">177</context>
@@ -3437,6 +3522,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be"> <trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be">
<source>Effective fee rate</source> <source>Effective fee rate</source>
<target>معدل الرسوم الفعلي</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">345</context> <context context-type="linenumber">345</context>
@@ -3594,6 +3680,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f85c05147b720576e50336cf26f63d3b05601699"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">1</context> <context context-type="linenumber">1</context>
@@ -3602,7 +3689,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="0ca27703757bf9a636a0b9b61e6a0cf248781cb4"> <trans-unit datatype="html" id="0ca27703757bf9a636a0b9b61e6a0cf248781cb4">
<source>SegWit</source> <source>SegWit</source>
<target>سيقويت</target> <target>SegWit</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">1</context> <context context-type="linenumber">1</context>
@@ -3620,6 +3707,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="975f46d122f2ca0a187308399a58b44d61ef08eb"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">3</context> <context context-type="linenumber">3</context>
@@ -3628,6 +3716,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1be04d5407059059b596f72696a3d1704ce9c0ef"> <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> <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"/>٪ من الرسوم عن طريق الترقية إلى سيقويت Bech32 أو <x equiv-text="{{ segwitGains.potentialP2shGains * 100 | number: '1.0-0' }}" id="INTERPOLATION_1"/>٪ عن طريق الترقية إلى سيقويت-P2SH</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@@ -3645,6 +3734,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f0e7d6d900658ee5ce66d8fef3637caf13891c53"> <trans-unit datatype="html" id="f0e7d6d900658ee5ce66d8fef3637caf13891c53">
<source>RBF</source> <source>RBF</source>
<target>استبدل بالرسوم</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">8</context> <context context-type="linenumber">8</context>
@@ -3658,6 +3748,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="85ce9e4f45873116b746899169cbc3445321d60c"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">9</context> <context context-type="linenumber">9</context>
@@ -3676,6 +3767,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="9d92d02835569b64f0dce58e81a0d22dd798f6e5"> <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> <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"/>~ sat/vB فقط لاضافة هذه المعاملة لهذة الكتلة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context> <context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@@ -3688,7 +3780,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="0fa66b0c410bef320d3f370d7c98c51754b5f28f"> <trans-unit datatype="html" id="0fa66b0c410bef320d3f370d7c98c51754b5f28f">
<source>Overpaid <x equiv-text="{{ overpaidTimes }}" id="INTERPOLATION"/>x</source> <source>Overpaid <x equiv-text="{{ overpaidTimes }}" id="INTERPOLATION"/>x</source>
<target>دفع اكثر مما يستحق <x equiv-text="{{ overpaidTimes }}" id="INTERPOLATION"/></target> <target>دفع <x equiv-text="{{ overpaidTimes }}" id="INTERPOLATION"/>x اكثر مما يجب</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context> <context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@@ -3711,6 +3803,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="e6213c3f05146287cf121868d9f3d3c3ff5f9714"> <trans-unit datatype="html" id="e6213c3f05146287cf121868d9f3d3c3ff5f9714">
<source>TXs</source> <source>TXs</source>
<target>التحويلات</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">80,82</context> <context context-type="linenumber">80,82</context>
@@ -3759,6 +3852,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="e8bcb762b48cf52fbea66ce9c4f6b970b99a80fd"> <trans-unit datatype="html" id="e8bcb762b48cf52fbea66ce9c4f6b970b99a80fd">
<source>Collapse</source> <source>Collapse</source>
<target>انهيار</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">132,136</context> <context context-type="linenumber">132,136</context>
@@ -3767,6 +3861,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1f9a922cb4010ee20eb9a241a22307b670f7628c"> <trans-unit datatype="html" id="1f9a922cb4010ee20eb9a241a22307b670f7628c">
<source>Minimum fee</source> <source>Minimum fee</source>
<target>الحد الادنى للعمولة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">161,162</context> <context context-type="linenumber">161,162</context>
@@ -3776,6 +3871,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4c3955cfe5955657297481efaf3ada8c55c75b2c"> <trans-unit datatype="html" id="4c3955cfe5955657297481efaf3ada8c55c75b2c">
<source>Purging</source> <source>Purging</source>
<target>تطهير</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">162,164</context> <context context-type="linenumber">162,164</context>
@@ -3785,6 +3881,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5"> <trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5">
<source>Memory usage</source> <source>Memory usage</source>
<target>استخدام الذاكرة</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">174,176</context> <context context-type="linenumber">174,176</context>
@@ -3812,6 +3909,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2799825781368047816"> <trans-unit datatype="html" id="2799825781368047816">
<source>Transaction fee</source> <source>Transaction fee</source>
<target>رسوم التحويل</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context> <context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
<context context-type="linenumber">11</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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1380,16 +1380,16 @@
<target>Open source projekt Mempool</target> <target>Open source projekt Mempool</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <target>Vytváříme mempool a blockchain explorer pro bitcoinovou komunitu se zaměřením na trh transakčních poplatků a vícevrstvý ekosystém, bez reklamy, altcoinů a sledovačů třetích stran.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Firemní sponzoři 🚀</target> <target>Firemní sponzoři 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Komunitní sponzoři ❤️</target> <target>Komunitní sponzoři ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>Staňte se sponzorem ❤️</target> <target>Staňte se sponzorem ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </trans-unit>
@@ -1424,7 +1424,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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Komunitní integrace</target> <target>Komunitní integrace</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>Komunitní aliance</target> <target>Komunitní aliance</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>Přispěvatelé projektu</target> <target>Přispěvatelé projektu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>Správci projektu</target> <target>Správci projektu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Endpoint</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Popis</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Příklad kódu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Odezva</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> z <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Pouze TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Právě teď</target> <target>Právě teď</target>
@@ -3400,7 +3396,7 @@
<target>Nepotvrzeno</target> <target>Nepotvrzeno</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Unternehmenssponsoren</target> <target>Unternehmenssponsoren</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Community-Sponsoren ❤️</target> <target>Community-Sponsoren ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>Werde ein Sponsor ❤️</target> <target>Werde ein Sponsor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Community-Integrationen</target> <target>Community-Integrationen</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>Community-Allianzen</target> <target>Community-Allianzen</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>Projektmitwirkende</target> <target>Projektmitwirkende</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>Projektbetreuer</target> <target>Projektbetreuer</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Endpunkt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Beschreibung</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Codebeispiel</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Antwort</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> von <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Nur Fernseher</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Gerade eben</target> <target>Gerade eben</target>
@@ -3400,7 +3396,7 @@
<target>Unbestätigt</target> <target>Unbestätigt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -746,7 +746,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -981,7 +981,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1002,7 +1002,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1019,7 +1019,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1262,22 +1262,22 @@
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1285,7 +1285,7 @@
<source>Community Sponsors ❤️</source> <source>Community Sponsors ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1293,7 +1293,7 @@
<source>Become a sponsor ❤️</source> <source>Become a sponsor ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1313,7 +1313,7 @@
<source>Community Integrations</source> <source>Community Integrations</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1321,7 +1321,7 @@
<source>Community Alliances</source> <source>Community Alliances</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1329,7 +1329,7 @@
<source>Project Contributors</source> <source>Project Contributors</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1337,7 +1337,7 @@
<source>Project Maintainers</source> <source>Project Maintainers</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2157,23 +2157,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2181,6 +2173,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2274,8 +2274,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -2964,14 +2964,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -3118,7 +3110,7 @@
<source>Unconfirmed</source> <source>Unconfirmed</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Empresas patrocinadoras 🚀</target> <target>Empresas patrocinadoras 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Patrocinadores de la comunidad ❤️</target> <target>Patrocinadores de la comunidad ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>Sé patrocinador ❤️</target> <target>Sé patrocinador ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Integraciones de la comunidad</target> <target>Integraciones de la comunidad</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>Alianzas de la comunidad</target> <target>Alianzas de la comunidad</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>Contribuyentes al proyecto</target> <target>Contribuyentes al proyecto</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>Mantenedores del proyecto</target> <target>Mantenedores del proyecto</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Endpoint</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Descripción</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Codigo de ejemplo</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Respuesta</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Solo TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Justo ahora</target> <target>Justo ahora</target>
@@ -3400,7 +3396,7 @@
<target>Sin confirmar</target> <target>Sin confirmar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1380,16 +1380,16 @@
<target>پروژهٔ متن‌باز ممپول</target> <target>پروژهٔ متن‌باز ممپول</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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> <target>یک کاوشگر ممپول و بلاکچین که برای جامعه بیت‌کوین توسعه پیدا می‌کند. با تمرکز بر بازار کارمزدِ تراکنش‌ها و زیست‌بوم چند لایه. بدون تبلیغات، آلت‌کوین‌ها و مزاحمت برنامه‌های ردیاب.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>حامیان سازمانی 🚀</target> <target>حامیان سازمانی 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>حامیان جامعه ❤️</target> <target>حامیان جامعه ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>حامی شوید ❤️</target> <target>حامی شوید ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>پیاده‌سازی‌ها</target> <target>پیاده‌سازی‌ها</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>متحدین جامعه</target> <target>متحدین جامعه</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>مشارکت کنندگان</target> <target>مشارکت کنندگان</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>نگهدارندگان پروژه</target> <target>نگهدارندگان پروژه</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2351,25 +2351,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>نمونه کد</target> <target>نمونه کد</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2377,6 +2368,15 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>پاسخ دریافتی</target> <target>پاسخ دریافتی</target>
@@ -2480,9 +2480,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> از <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3233,15 +3233,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </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>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>همین الان</target> <target>همین الان</target>
@@ -3409,7 +3400,7 @@
<target>تأییدنشده</target> <target>تأییدنشده</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Mempool avoimen lähdekoodin projekti </target> <target>Mempool avoimen lähdekoodin projekti</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <target>Rakennetaan mempool- ja lohkoketjuselain Bitcoin-yhteisölle, jossa keskitytään transaktiokulumarkkinoihin ja monikerroksiseen ekosysteemiin ilman mainontaa, altcoineja tai kolmannen osapuolen seurantalaitteita.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Yritys-sponsorit 🚀</target> <target>Yritys-sponsorit 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Yhteisön sponsorit ❤️ </target> <target>Yhteisön sponsorit ❤️ </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,15 +1415,16 @@
<target>Ryhdy sponsoriksi ❤️</target> <target>Ryhdy sponsoriksi ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1436,7 +1437,7 @@
<target>Yhteisön integraatiot </target> <target>Yhteisön integraatiot </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1445,7 +1446,7 @@
<target>Yhteisöliittoumat </target> <target>Yhteisöliittoumat </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1454,7 +1455,7 @@
<target>Projektin avustajat</target> <target>Projektin avustajat</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1463,7 +1464,7 @@
<target>Projektin ylläpitäjät </target> <target>Projektin ylläpitäjät </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1592,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Päätepiste</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1748,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Kuvaus</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -1923,6 +1926,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,45</context>
@@ -2158,6 +2162,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df"> <trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context> <context context-type="linenumber">531,533</context>
@@ -2167,6 +2172,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103"> <trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source> <source>Returns current mempool as projected blocks.</source>
<target>Palauttaa nykyisen mempoolin projisoituina lohkoina.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context> <context context-type="linenumber">547,549</context>
@@ -2176,6 +2182,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef"> <trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
<source>Returns the ancestors and the best descendant fees for a transaction.</source> <source>Returns the ancestors and the best descendant fees for a transaction.</source>
<target>Palauttaa esisiirtokulun ja jälkisiirtokulun siirtotapahtumalle.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">563,565</context> <context context-type="linenumber">563,565</context>
@@ -2205,6 +2212,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context> <context context-type="linenumber">604,607</context>
@@ -2339,23 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Koodiesimerkki</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2363,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Vastaus</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2465,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/>/<x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3135,6 +3146,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516"> <trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source> <source>Sponsor</source>
<target>Sponsoroi</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context> <context context-type="linenumber">3</context>
@@ -3217,14 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Juuri nyt</target> <target>Juuri nyt</target>
@@ -3392,7 +3396,7 @@
<target>Vahvistamatta</target> <target>Vahvistamatta</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -802,7 +802,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1056,7 +1056,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1078,7 +1078,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1096,7 +1096,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1359,22 +1359,22 @@
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1382,7 +1382,7 @@
<source>Community Sponsors ❤️</source> <source>Community Sponsors ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1391,7 +1391,7 @@
<target>Devenir sponsor ❤️</target> <target>Devenir sponsor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1411,7 +1411,7 @@
<source>Community Integrations</source> <source>Community Integrations</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1419,7 +1419,7 @@
<source>Community Alliances</source> <source>Community Alliances</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1427,7 +1427,7 @@
<source>Project Contributors</source> <source>Project Contributors</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1435,7 +1435,7 @@
<source>Project Maintainers</source> <source>Project Maintainers</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2298,23 +2298,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2322,6 +2314,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2423,8 +2423,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3170,14 +3170,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>À l'instant même </target> <target>À l'instant même </target>
@@ -3345,7 +3337,7 @@
<target>non confirmée</target> <target>non confirmée</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1379,15 +1379,15 @@
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1395,7 +1395,7 @@
<target>נותני חסות ארגוניים 🚀</target> <target>נותני חסות ארגוניים 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1404,7 +1404,7 @@
<target>נותני חסות מהקהילה ❤️</target> <target>נותני חסות מהקהילה ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1413,7 +1413,7 @@
<target>הצטרף כנותן חסות ❤️</target> <target>הצטרף כנותן חסות ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1434,7 +1434,7 @@
<target>שיתופי פעולה עם הקהילה</target> <target>שיתופי פעולה עם הקהילה</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1443,7 +1443,7 @@
<target>בני ברית מהקהילה</target> <target>בני ברית מהקהילה</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1452,7 +1452,7 @@
<target>תורמי הפרוייקט</target> <target>תורמי הפרוייקט</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1461,7 +1461,7 @@
<target>מתחזקי הפרוייקט</target> <target>מתחזקי הפרוייקט</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2326,23 +2326,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2350,6 +2342,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2452,9 +2452,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3204,15 +3203,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </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>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>זה עתה</target> <target>זה עתה</target>
@@ -3380,7 +3370,7 @@
<target>טרם אושרו</target> <target>טרם אושרו</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -747,7 +747,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -982,7 +982,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1003,7 +1003,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1021,7 +1021,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1268,22 +1268,22 @@
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1291,7 +1291,7 @@
<source>Community Sponsors ❤️</source> <source>Community Sponsors ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1299,7 +1299,7 @@
<source>Become a sponsor ❤️</source> <source>Become a sponsor ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1319,7 +1319,7 @@
<source>Community Integrations</source> <source>Community Integrations</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1327,7 +1327,7 @@
<source>Community Alliances</source> <source>Community Alliances</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1335,7 +1335,7 @@
<source>Project Contributors</source> <source>Project Contributors</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1343,7 +1343,7 @@
<source>Project Maintainers</source> <source>Project Maintainers</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2163,23 +2163,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2187,6 +2179,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2280,8 +2280,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -2972,14 +2972,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -3128,7 +3120,7 @@
<target>Nepotvrđeno</target> <target>Nepotvrđeno</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1380,16 +1380,16 @@
<target>A Mempool Nyílt Forráskódú Projekt</target> <target>A Mempool Nyílt Forráskódú Projekt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Enterprise Szponzorok 🚀</target> <target>Enterprise Szponzorok 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Közösségi Szponzorok ❤️</target> <target>Közösségi Szponzorok ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>Legyél te is támogatónk! ❤️ </target> <target>Legyél te is támogatónk! ❤️ </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <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> <target>Közösségi Integrációk</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>Közösségi Szövetségesek</target> <target>Közösségi Szövetségesek</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>Projekt Kontribútorok</target> <target>Projekt Kontribútorok</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>Projekt Fenntartók</target> <target>Projekt Fenntartók</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2347,24 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Kód Példa</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2372,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Válasz</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2474,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> a <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/>  </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3227,15 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Csak TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Épp most</target> <target>Épp most</target>
@@ -3403,7 +3396,7 @@
<target>Nem megerősített</target> <target>Nem megerősített</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Il progetto Open Source Mempool</target> <target>Il Progetto Open Source Mempool</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <target>Costruire un esploratore di mempool e blockchain per la comunità Bitcoin, concentrandosi sul mercato delle commissioni di transazione e sull'ecosistema multi-layer, senza pubblicità, altcoin o tracker di terze parti.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Sponsor Aziendali 🚀</target> <target>Sponsor Aziendali 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Sponsor comunitari ❤️</target> <target>Sponsor comunitari ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>Diventa uno sponsor ❤️</target> <target>Diventa uno sponsor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </trans-unit>
@@ -1424,7 +1424,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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Integrazioni della comunità</target> <target>Integrazioni della comunità</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>Alleanze della comunità</target> <target>Alleanze della comunità</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>Hanno contribuito al progetto</target> <target>Hanno contribuito al progetto</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>Manutentori del progetto</target> <target>Manutentori del progetto</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Endpoint</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Descrizione</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2346,23 +2348,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Esempio di Codice</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2370,8 +2365,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d6b673097fb7e79231afc43857e376f69ab9f3e3">
<source>Install Package</source>
<target>Installa Pacchetto</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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Risposta</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2472,9 +2477,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> di <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3225,15 +3230,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>TV only</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Proprio ora</target> <target>Proprio ora</target>
@@ -3401,7 +3397,7 @@
<target>Non confermata</target> <target>Non confermata</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Mempoolオープンソースプロジェクト</target> <target>メムプール・オープンソースプロジェクト</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>ビットコインコミュニティーによって開発、管理されるエキスプローラとAPIです。多層エコシステムへの移行を支援するため、新興トランザクション手数料市場に中心ます。広告、アルトコイン、第三者のトラッカーは含まれていません。</target> <target>ビットコインコミュニティーため、新興トランザクション手数料市場に中心するメモリープールとブロックチェーンエキスプローラを開発しています。広告、アルトコイン、第三者のトラッカーは含まれていません。</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>企業のスポンサー 🚀</target> <target>企業のスポンサー 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>コミュニティーのスポンサー❤️</target> <target>コミュニティーのスポンサー❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>スポンサーになる❤️</target> <target>スポンサーになる❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>コミュニティーの結合</target> <target>コミュニティーの結合</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>コミュニティーの提携</target> <target>コミュニティーの提携</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>プロジェクト貢献者</target> <target>プロジェクト貢献者</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>プロジェクトメンテナー</target> <target>プロジェクトメンテナー</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>エンドポイント</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>記述</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2345,23 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>コード例</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>応答</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2471,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> / <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </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>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>ちょうど今</target> <target>ちょうど今</target>
@@ -3400,7 +3396,7 @@
<target>未確認</target> <target>未確認</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -774,7 +774,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1023,7 +1023,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1045,7 +1045,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1063,7 +1063,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1316,22 +1316,22 @@
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1339,7 +1339,7 @@
<source>Community Sponsors ❤️</source> <source>Community Sponsors ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1348,7 +1348,7 @@
<target>გახდი სპონსორი ❤️</target> <target>გახდი სპონსორი ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1368,7 +1368,7 @@
<source>Community Integrations</source> <source>Community Integrations</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1376,7 +1376,7 @@
<source>Community Alliances</source> <source>Community Alliances</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1384,7 +1384,7 @@
<source>Project Contributors</source> <source>Project Contributors</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1392,7 +1392,7 @@
<source>Project Maintainers</source> <source>Project Maintainers</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2229,23 +2229,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2253,6 +2245,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2354,8 +2354,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3100,14 +3100,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>ზუსტად ახლა</target> <target>ზუსტად ახლა</target>
@@ -3275,7 +3267,7 @@
<target>დაუდასტურებული</target> <target>დაუდასტურებული</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

File diff suppressed because it is too large Load Diff

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Åpen kildekode prosjektet Mempool</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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 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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Bedriftssponsorer 🚀</target> <target>Bedriftssponsorer 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1404,7 @@
<target>Samfunnssponsorer ❤️</target> <target>Samfunnssponsorer ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1413,7 @@
<target>Bli en sponsor ❤️</target> <target>Bli en sponsor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1436,7 +1434,7 @@
<target>Samfunnsintegrasjoner</target> <target>Samfunnsintegrasjoner</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1445,7 +1443,7 @@
<target>Samfunnsallianser</target> <target>Samfunnsallianser</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1454,7 +1452,7 @@
<target>Bidragsytere til prosjektet</target> <target>Bidragsytere til prosjektet</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1463,7 +1461,7 @@
<target>Prosjektvedlikeholdere</target> <target>Prosjektvedlikeholdere</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2339,23 +2337,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2363,6 +2353,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2465,9 +2463,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3217,14 +3214,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Akkurat nå</target> <target>Akkurat nå</target>
@@ -3392,7 +3381,7 @@
<target>Ubekreftet</target> <target>Ubekreftet</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Het Mempool Open Source Project</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Bedrijfssponsoren 🚀</target> <target>Bedrijfssponsoren 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1404,7 @@
<target>Community Sponsoren ❤️</target> <target>Community Sponsoren ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1413,7 @@
<target>Wordt een sponsor ❤️</target> <target>Wordt een sponsor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Community-integraties</target> <target>Community-integraties</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1444,7 @@
<target>Community-allianties</target> <target>Community-allianties</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1453,7 @@
<target>Projectbijdragers</target> <target>Projectbijdragers</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1462,7 @@
<target>Projectonderhouders</target> <target>Projectonderhouders</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1591,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Eindpunt</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1748,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Omschrijving</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -1916,7 +1916,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="e12cd52eaa77b446ba97436c145b59741151adf3"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">26,27</context> <context context-type="linenumber">26,27</context>
@@ -1940,7 +1940,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f10009779c64e19e20414fae506f27118420aa33"> <trans-unit datatype="html" id="f10009779c64e19e20414fae506f27118420aa33">
<source>Get unconfirmed transaction history for the specified address/scripthash. Returns up to 50 transactions (no paging).</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">80,83</context> <context context-type="linenumber">80,83</context>
@@ -2004,7 +2004,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">187,188</context> <context context-type="linenumber">187,188</context>
@@ -2345,23 +2345,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Codevoorbeeld</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2362,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Reactie</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2471,9 +2474,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3226,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Alleen TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Zojuist</target> <target>Zojuist</target>
@@ -3400,7 +3393,7 @@
<target>Onbevestigd</target> <target>Onbevestigd</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Mempool - Projekt Open Source</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Sponsorzy Korporacyjni 🚀</target> <target>Sponsorzy Korporacyjni 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1404,7 @@
<target>Sponsorzy społecznościowy ❤️</target> <target>Sponsorzy społecznościowy ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1413,7 @@
<target>Zostań sponsorem ❤️</target> <target>Zostań sponsorem ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Integracje społecznościowe</target> <target>Integracje społecznościowe</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1444,7 @@
<target>Sojusze społecznościowe</target> <target>Sojusze społecznościowe</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1453,7 @@
<target>Współtwórcy projektu</target> <target>Współtwórcy projektu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1462,7 @@
<target>Opiekunowie projektu</target> <target>Opiekunowie projektu</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2341,23 +2339,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2365,6 +2355,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2467,9 +2465,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3220,15 +3217,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Tylko TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Przed chwilą</target> <target>Przed chwilą</target>
@@ -3396,7 +3384,7 @@
<target>Niepotwierdzone</target> <target>Niepotwierdzone</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,19 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Empresas Patrocinadoras 🚀</target> <target>Empresas Patrocinadoras 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Patrocinadores da comunidade ❤️</target> <target>Patrocinadores da comunidade ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,15 +1415,16 @@
<target>Seja um patrocinador ❤️</target> <target>Seja um patrocinador ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1436,7 +1437,7 @@
<target>Integrações da comunidade </target> <target>Integrações da comunidade </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1445,7 +1446,7 @@
<target>Alianças da comunidade</target> <target>Alianças da comunidade</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1454,7 +1455,7 @@
<target>Contribuidores do projeto</target> <target>Contribuidores do projeto</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1463,7 +1464,7 @@
<target>Mantenedores do projeto</target> <target>Mantenedores do projeto</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1592,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Terminal</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1748,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Descrição</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -1923,6 +1926,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,45</context>
@@ -2158,6 +2162,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df"> <trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context> <context context-type="linenumber">531,533</context>
@@ -2167,6 +2172,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103"> <trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source> <source>Returns current mempool as projected blocks.</source>
<target>Devolve o mempool atual como blocos projetados.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context> <context context-type="linenumber">547,549</context>
@@ -2176,6 +2182,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef"> <trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
<source>Returns the ancestors and the best descendant fees for a transaction.</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">563,565</context> <context context-type="linenumber">563,565</context>
@@ -2205,6 +2212,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context> <context context-type="linenumber">604,607</context>
@@ -2339,23 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Exemplo de código</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2363,8 +2364,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Resposta</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2465,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> de <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3056,7 +3067,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="mempool-block.block.no"> <trans-unit datatype="html" id="mempool-block.block.no">
<source>Mempool block <x equiv-text="this.mempoolBlockIndex + 1" id="INTERPOLATION"/></source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context> <context context-type="sourcefile">src/app/components/mempool-block/mempool-block.component.ts</context>
<context context-type="linenumber">75</context> <context context-type="linenumber">75</context>
@@ -3135,6 +3146,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516"> <trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source> <source>Sponsor</source>
<target>Patrocinador</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context> <context context-type="linenumber">3</context>
@@ -3217,14 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Agora</target> <target>Agora</target>
@@ -3392,7 +3396,7 @@
<target>Sem confirmar</target> <target>Sem confirmar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3413,7 +3417,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="7917764f923dd6b723b1cff254c7f5b837d1c48a"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">68</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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1380,16 +1380,15 @@
<target>Odprtokodni projekt Mempool</target> <target>Odprtokodni projekt Mempool</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1396,7 @@
<target>Sponzorji - podjetja 🚀</target> <target>Sponzorji - podjetja 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1405,7 @@
<target>Sponzorji - posamezniki ❤️</target> <target>Sponzorji - posamezniki ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1414,7 @@
<target>Postanite sponzor ❤️</target> <target>Postanite sponzor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1436,7 @@
<target>Integracije</target> <target>Integracije</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1445,7 @@
<target>Zavezništva skupnosti</target> <target>Zavezništva skupnosti</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1454,7 @@
<target>Sodelujoči</target> <target>Sodelujoči</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1463,7 @@
<target>Vzdrževalci</target> <target>Vzdrževalci</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2347,25 +2346,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Primer</target> <target>Primer</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2373,6 +2363,15 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Odziv</target> <target>Odziv</target>
@@ -2476,9 +2475,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> od <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3229,15 +3228,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Samo za TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Pravkar</target> <target>Pravkar</target>
@@ -3405,7 +3395,7 @@
<target>Nepotrjeno</target> <target>Nepotrjeno</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1380,16 +1380,16 @@
<target>Open Source-projektet Mempool</target> <target>Open Source-projektet Mempool</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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 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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1397,7 @@
<target>Företagssponsorer 🚀</target> <target>Företagssponsorer 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1406,7 @@
<target>Communitysponsorer ❤️</target> <target>Communitysponsorer ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1415,7 @@
<target>Bli sponsor ❤️</target> <target>Bli sponsor ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1437,7 @@
<target>Communityintegrationer</target> <target>Communityintegrationer</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1446,7 @@
<target>Communityallianser</target> <target>Communityallianser</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1455,7 @@
<target>Projektbidragare</target> <target>Projektbidragare</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1464,7 @@
<target>Projektunderhållare</target> <target>Projektunderhållare</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2347,25 +2347,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Kodexempel</target> <target>Kodexempel</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2373,6 +2364,15 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Svar</target> <target>Svar</target>
@@ -2476,9 +2476,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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> <target> <x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> av <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3229,15 +3229,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Endast TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Just nu</target> <target>Just nu</target>
@@ -3405,7 +3396,7 @@
<target>Obekräftad</target> <target>Obekräftad</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -3,6 +3,7 @@
<body> <body>
<trans-unit datatype="html" id="ngb.alert.close"> <trans-unit datatype="html" id="ngb.alert.close">
<source>Close</source> <source>Close</source>
<target>Kapat</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context>
<context context-type="linenumber">74</context> <context context-type="linenumber">74</context>
@@ -10,6 +11,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.carousel.previous"> <trans-unit datatype="html" id="ngb.carousel.previous">
<source>Previous</source> <source>Previous</source>
<target>Önceki</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context> <context context-type="linenumber">349</context>
@@ -17,6 +19,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.carousel.next"> <trans-unit datatype="html" id="ngb.carousel.next">
<source>Next</source> <source>Next</source>
<target>Sonraki</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context>
<context context-type="linenumber">349</context> <context context-type="linenumber">349</context>
@@ -24,6 +27,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.previous-month"> <trans-unit datatype="html" id="ngb.datepicker.previous-month">
<source>Previous month</source> <source>Previous month</source>
<target>Önceki ay</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">62,64</context>
@@ -35,6 +39,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.next-month"> <trans-unit datatype="html" id="ngb.datepicker.next-month">
<source>Next month</source> <source>Next month</source>
<target>Sonraki ay</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">72</context>
@@ -46,6 +51,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-month"> <trans-unit datatype="html" id="ngb.datepicker.select-month">
<source>Select month</source> <source>Select month</source>
<target>Ay seç</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">74</context>
@@ -57,6 +63,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.datepicker.select-year"> <trans-unit datatype="html" id="ngb.datepicker.select-year">
<source>Select year</source> <source>Select year</source>
<target>Yıl Seç</target>
<context-group purpose="location"> <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="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> <context context-type="linenumber">74</context>
@@ -68,6 +75,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first"> <trans-unit datatype="html" id="ngb.pagination.first">
<source>««</source> <source>««</source>
<target>««</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -75,6 +83,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous"> <trans-unit datatype="html" id="ngb.pagination.previous">
<source>«</source> <source>«</source>
<target>«</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -82,6 +91,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next"> <trans-unit datatype="html" id="ngb.pagination.next">
<source>»</source> <source>»</source>
<target>»</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -89,6 +99,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last"> <trans-unit datatype="html" id="ngb.pagination.last">
<source>»»</source> <source>»»</source>
<target>»»</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -96,6 +107,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.first-aria"> <trans-unit datatype="html" id="ngb.pagination.first-aria">
<source>First</source> <source>First</source>
<target>Ilk</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -103,6 +115,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.previous-aria"> <trans-unit datatype="html" id="ngb.pagination.previous-aria">
<source>Previous</source> <source>Previous</source>
<target>Önceki</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -110,6 +123,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.next-aria"> <trans-unit datatype="html" id="ngb.pagination.next-aria">
<source>Next</source> <source>Next</source>
<target>Sonraki</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -117,6 +131,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.pagination.last-aria"> <trans-unit datatype="html" id="ngb.pagination.last-aria">
<source>Last</source> <source>Last</source>
<target>En son</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context>
<context context-type="linenumber">404</context> <context context-type="linenumber">404</context>
@@ -124,6 +139,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.progressbar.value"> <trans-unit datatype="html" id="ngb.progressbar.value">
<source><x id="INTERPOLATION"/></source> <source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context>
<context context-type="linenumber">101</context> <context context-type="linenumber">101</context>
@@ -131,6 +147,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.HH"> <trans-unit datatype="html" id="ngb.timepicker.HH">
<source>HH</source> <source>HH</source>
<target>HH</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -138,6 +155,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.hours"> <trans-unit datatype="html" id="ngb.timepicker.hours">
<source>Hours</source> <source>Hours</source>
<target>Saat</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -145,6 +163,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.MM"> <trans-unit datatype="html" id="ngb.timepicker.MM">
<source>MM</source> <source>MM</source>
<target>MM</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -152,6 +171,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.minutes"> <trans-unit datatype="html" id="ngb.timepicker.minutes">
<source>Minutes</source> <source>Minutes</source>
<target>Dakika</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -159,6 +179,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-hours"> <trans-unit datatype="html" id="ngb.timepicker.increment-hours">
<source>Increment hours</source> <source>Increment hours</source>
<target>Saatlik artış</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -166,6 +187,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-hours"> <trans-unit datatype="html" id="ngb.timepicker.decrement-hours">
<source>Decrement hours</source> <source>Decrement hours</source>
<target>Saatlik azalış</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -173,6 +195,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-minutes"> <trans-unit datatype="html" id="ngb.timepicker.increment-minutes">
<source>Increment minutes</source> <source>Increment minutes</source>
<target>Dakikalık artış</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -180,6 +203,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-minutes"> <trans-unit datatype="html" id="ngb.timepicker.decrement-minutes">
<source>Decrement minutes</source> <source>Decrement minutes</source>
<target>Dakikalık azalış</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -187,6 +211,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.SS"> <trans-unit datatype="html" id="ngb.timepicker.SS">
<source>SS</source> <source>SS</source>
<target>SS</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -194,6 +219,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.seconds"> <trans-unit datatype="html" id="ngb.timepicker.seconds">
<source>Seconds</source> <source>Seconds</source>
<target>Saniye</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -201,6 +227,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.increment-seconds"> <trans-unit datatype="html" id="ngb.timepicker.increment-seconds">
<source>Increment seconds</source> <source>Increment seconds</source>
<target>Saniyelik artış</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -208,6 +235,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.decrement-seconds"> <trans-unit datatype="html" id="ngb.timepicker.decrement-seconds">
<source>Decrement seconds</source> <source>Decrement seconds</source>
<target>Saniyelik azalış</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -215,6 +243,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.PM"> <trans-unit datatype="html" id="ngb.timepicker.PM">
<source><x id="INTERPOLATION"/></source> <source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -222,6 +251,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.timepicker.AM"> <trans-unit datatype="html" id="ngb.timepicker.AM">
<source><x id="INTERPOLATION"/></source> <source><x id="INTERPOLATION"/></source>
<target><x id="INTERPOLATION"/></target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context>
<context context-type="linenumber">296</context> <context context-type="linenumber">296</context>
@@ -229,6 +259,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ngb.toast.close-aria"> <trans-unit datatype="html" id="ngb.toast.close-aria">
<source>Close</source> <source>Close</source>
<target>Kapat</target>
<context-group purpose="location"> <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="sourcefile">node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context>
<context context-type="linenumber">137</context> <context context-type="linenumber">137</context>
@@ -537,6 +568,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2"> <trans-unit datatype="html" id="6c2ae4f9da67155a00f8db40ac22315eeaff33e2">
<source>BSQ Blocks</source> <source>BSQ Blocks</source>
<target>BSQ Blokları</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-blocks/bisq-blocks.component.html</context>
<context context-type="linenumber">2,7</context> <context context-type="linenumber">2,7</context>
@@ -624,6 +656,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0"> <trans-unit datatype="html" id="6b2fdbdddef74630e1076d58786ca339a8c030f0">
<source>Bisq Trading Volume</source> <source>Bisq Trading Volume</source>
<target>Bisq ticaret hacmi</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">3,7</context> <context context-type="linenumber">3,7</context>
@@ -636,6 +669,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1"> <trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source> <source>Markets</source>
<target>Çiftler</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -648,6 +682,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba"> <trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source> <source>Bitcoin Markets</source>
<target>Bitcoin Çiftleri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context> <context context-type="linenumber">21,23</context>
@@ -660,6 +695,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9"> <trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source> <source>Currency</source>
<target>Kur</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context> <context context-type="linenumber">27</context>
@@ -699,6 +735,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff"> <trans-unit datatype="html" id="b666c0101ab9ef128a75fdf05a43184a57de0cff">
<source>Volume (7d)</source> <source>Volume (7d)</source>
<target>Hacim (7g)</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">29</context> <context context-type="linenumber">29</context>
@@ -707,6 +744,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6"> <trans-unit datatype="html" id="faf7b6da436cb9342858ec551aecdab8052dbde6">
<source>Trades (7d)</source> <source>Trades (7d)</source>
<target>Alışveriş (7g)</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@@ -719,6 +757,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3"> <trans-unit datatype="html" id="8d54d714a00023ea23b58d8642980ef41cea0cb3">
<source>Latest Trades</source> <source>Latest Trades</source>
<target>Son alışverişler</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">52,55</context> <context context-type="linenumber">52,55</context>
@@ -735,6 +774,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6"> <trans-unit datatype="html" id="3f42ea126dba9186d89dffe43937f2b9c17858d6">
<source>Bisq Price Index</source> <source>Bisq Price Index</source>
<target>Bisq fiyat endeksi</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">9,11</context> <context context-type="linenumber">9,11</context>
@@ -743,6 +783,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349"> <trans-unit datatype="html" id="e32fd95e667cfcee9948135918a151a614d5d349">
<source>Bisq Market Price</source> <source>Bisq Market Price</source>
<target>Bisq market fiyatı</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-main-dashboard/bisq-main-dashboard.component.html</context>
<context context-type="linenumber">21,23</context> <context context-type="linenumber">21,23</context>
@@ -775,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -790,6 +831,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da"> <trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source> <source>Buy Offers</source>
<target>Alım Teklifleri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context> <context context-type="linenumber">73,74</context>
@@ -798,6 +840,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a"> <trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source> <source>Sell Offers</source>
<target>Satış Teklifleri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context> <context context-type="linenumber">74,77</context>
@@ -806,6 +849,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560"> <trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source> <source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>Miktar (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context> <context context-type="linenumber">112,113</context>
@@ -926,6 +970,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c"> <trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source> <source>Date</source>
<target>Tarih</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context> <context context-type="linenumber">4,6</context>
@@ -1025,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1047,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1065,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1164,6 +1209,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda"> <trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source> <source>BSQ Transactions</source>
<target>Bsq işlemleri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context> <context context-type="linenumber">2,5</context>
@@ -1187,6 +1233,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8411955056013208681"> <trans-unit datatype="html" id="8411955056013208681">
<source>Asset listing fee</source> <source>Asset listing fee</source>
<target>Varlık listeleme fiyatı</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">30</context> <context context-type="linenumber">30</context>
@@ -1194,6 +1241,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4096113720451832029"> <trans-unit datatype="html" id="4096113720451832029">
<source>Blind vote</source> <source>Blind vote</source>
<target>Kapalı oy</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">31</context> <context context-type="linenumber">31</context>
@@ -1201,6 +1249,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8029165479004970466"> <trans-unit datatype="html" id="8029165479004970466">
<source>Compensation request</source> <source>Compensation request</source>
<target>Bedel isteği</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">32</context> <context context-type="linenumber">32</context>
@@ -1208,6 +1257,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2303359202781425764"> <trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source> <source>Genesis</source>
<target>Genesis</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context> <context context-type="linenumber">33</context>
@@ -1215,6 +1265,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1805880753357861573"> <trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source> <source>Irregular</source>
<target>Sıradışı</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">34</context>
@@ -1222,6 +1273,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1899519213652410949"> <trans-unit datatype="html" id="1899519213652410949">
<source>Lockup</source> <source>Lockup</source>
<target>Kilitle</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">35</context> <context context-type="linenumber">35</context>
@@ -1229,6 +1281,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="450749685636583691"> <trans-unit datatype="html" id="450749685636583691">
<source>Pay trade fee</source> <source>Pay trade fee</source>
<target>Alışveriş ücreti öde</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">36</context> <context context-type="linenumber">36</context>
@@ -1236,6 +1289,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4844032232639560116"> <trans-unit datatype="html" id="4844032232639560116">
<source>Proof of burn</source> <source>Proof of burn</source>
<target>Yakılan miktar ispatı</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">37</context> <context context-type="linenumber">37</context>
@@ -1243,6 +1297,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2011097393756618787"> <trans-unit datatype="html" id="2011097393756618787">
<source>Proposal</source> <source>Proposal</source>
<target>Teklif</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">38</context> <context context-type="linenumber">38</context>
@@ -1250,6 +1305,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3275831985256202873"> <trans-unit datatype="html" id="3275831985256202873">
<source>Reimbursement request</source> <source>Reimbursement request</source>
<target>İade isteği</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">39</context> <context context-type="linenumber">39</context>
@@ -1257,6 +1313,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1226904538495857889"> <trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source> <source>Transfer BSQ</source>
<target>BSQ transfer et</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">40</context>
@@ -1264,6 +1321,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4545041448523656285"> <trans-unit datatype="html" id="4545041448523656285">
<source>Unlock</source> <source>Unlock</source>
<target>Kilit kaldır</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">41</context> <context context-type="linenumber">41</context>
@@ -1271,6 +1329,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8694527859973232423"> <trans-unit datatype="html" id="8694527859973232423">
<source>Vote reveal</source> <source>Vote reveal</source>
<target>Oyu göster</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">42</context> <context context-type="linenumber">42</context>
@@ -1302,6 +1361,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="bisq-graph-trades"> <trans-unit datatype="html" id="bisq-graph-trades">
<source>Trades</source> <source>Trades</source>
<target>İşlemler</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context> <context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">90</context> <context context-type="linenumber">90</context>
@@ -1309,6 +1369,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="bisq-graph-volume"> <trans-unit datatype="html" id="bisq-graph-volume">
<source>Volume</source> <source>Volume</source>
<target>Hacim</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context> <context context-type="sourcefile">src/app/bisq/lightweight-charts-area/lightweight-charts-area.component.ts</context>
<context context-type="linenumber">91</context> <context context-type="linenumber">91</context>
@@ -1316,32 +1377,36 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Açık kaynak Mempool Projesi</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<target>Kurumsal sponsorlar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a46e9bc519dc1c320d48635e924d444364845ca8"> <trans-unit datatype="html" id="a46e9bc519dc1c320d48635e924d444364845ca8">
<source>Community Sponsors ❤️</source> <source>Community Sponsors ❤️</source>
<target>Kömünite sponsorlarımız</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1350,15 +1415,16 @@
<target>Sponsor olun ❤️</target> <target>Sponsor olun ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1abb54fd13f529707c73db97625cd18c7c8cbb09"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1368,33 +1434,37 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1405c5f1a9834338ff13442c550927ab7144fdc8"> <trans-unit datatype="html" id="1405c5f1a9834338ff13442c550927ab7144fdc8">
<source>Community Integrations</source> <source>Community Integrations</source>
<target>Kömünite Entegrasyonları</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb"> <trans-unit datatype="html" id="020cce975a5d7e0cc0f4578903358459d693e4bb">
<source>Community Alliances</source> <source>Community Alliances</source>
<target>İşbirlikçi kömüniteler</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2"> <trans-unit datatype="html" id="2dd9b8a8997a6b57413ca3cd32dd38cef9fa39c2">
<source>Project Contributors</source> <source>Project Contributors</source>
<target>Proje Destekçileri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436"> <trans-unit datatype="html" id="d177262e3a43b2a7221183812daf0ada97659436">
<source>Project Maintainers</source> <source>Project Maintainers</source>
<target>Projeyi ayakta tutanlar</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1421,6 +1491,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473"> <trans-unit datatype="html" id="31c09dcc0ab351767631539b208d5f7de4005473">
<source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source> <source>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></source>
<target>Lightning <x equiv-text="{{ lightning }}" id="INTERPOLATION"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context> <context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">11</context> <context context-type="linenumber">11</context>
@@ -1429,6 +1500,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3"> <trans-unit datatype="html" id="696ade981a05c12e10df38ba6218c76e318813b3">
<source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source> <source>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></source>
<target>Liquid <x equiv-text="{{ liquid }}" id="INTERPOLATION"/></target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context> <context context-type="sourcefile">src/app/components/address-labels/address-labels.component.html</context>
<context context-type="linenumber">17</context> <context context-type="linenumber">17</context>
@@ -1464,6 +1536,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="cedcc9d48ffb2714e7b2f012ab67bd21f8e96a18"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/address/address.component.html</context> <context context-type="sourcefile">src/app/components/address/address.component.html</context>
<context context-type="linenumber">127,130</context> <context context-type="linenumber">127,130</context>
@@ -1520,6 +1593,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Çıkış Noktası</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1676,6 +1750,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Tanım</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -1851,6 +1926,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="c9f5914dbba46a8dc4ab4e81b40b1582eea7c5e2"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">44,45</context> <context context-type="linenumber">44,45</context>
@@ -1931,6 +2007,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="194d480219559b855b01ea58459066e3c63acdb2"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">187,188</context> <context context-type="linenumber">187,188</context>
@@ -1954,6 +2031,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a2c00fbdcce9d6291c3b04c67979f9694be23f28"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">239,240</context> <context context-type="linenumber">239,240</context>
@@ -1977,6 +2055,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3e08815110b2e5ce8aa7256ed05a2faf6dbb7077"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">298,299</context> <context context-type="linenumber">298,299</context>
@@ -1992,6 +2071,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1126cb2e03d0371d03b57047052d4ff1b6556753"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">337,338</context> <context context-type="linenumber">337,338</context>
@@ -1999,6 +2079,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8380186899495340cbfe7fb836ba664fb4b52af"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">357,358</context> <context context-type="linenumber">357,358</context>
@@ -2082,6 +2163,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df"> <trans-unit datatype="html" id="39f61f2d1434d921a1f80a2a2f0903f06e9fd4df">
<source>Returns our currently suggested fees for new transactions.</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">531,533</context> <context context-type="linenumber">531,533</context>
@@ -2091,6 +2173,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103"> <trans-unit datatype="html" id="b95b496df2b0f016831d0984f3798a2e22b74103">
<source>Returns current mempool as projected blocks.</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">547,549</context> <context context-type="linenumber">547,549</context>
@@ -2100,6 +2183,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef"> <trans-unit datatype="html" id="4ebf8d4a2433cca5a8a933ef8ccef1b01e45acef">
<source>Returns the ancestors and the best descendant fees for a transaction.</source> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">563,565</context> <context context-type="linenumber">563,565</context>
@@ -2129,6 +2213,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="23c346e87b137b1807bac13c27d19dc18f745f8f"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">604,607</context> <context context-type="linenumber">604,607</context>
@@ -2174,6 +2259,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d51106cc898981e9862d35a4db40796f0cf464f8"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">684,685</context> <context context-type="linenumber">684,685</context>
@@ -2189,6 +2275,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="fe9a40b2ff9674b4ab7d82624ffed340c9ee5b89"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">723,724</context> <context context-type="linenumber">723,724</context>
@@ -2212,6 +2299,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="7e784cfa5833e7b54d4dfc723fabde94f66ebde3"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">780,781</context> <context context-type="linenumber">780,781</context>
@@ -2219,6 +2307,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="01723473ecc53cab60ef1b37dc39d8941994d56f"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">800,801</context> <context context-type="linenumber">800,801</context>
@@ -2236,6 +2325,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a706b1ded7506620b153dbcdea8108e6691bbbd9"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">819,820</context> <context context-type="linenumber">819,820</context>
@@ -2258,23 +2348,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Örnek kod</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2282,8 +2365,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Cevap</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2292,6 +2385,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b"> <trans-unit datatype="html" id="f8c91b77ad53ccd0f6adb4a6ea3a0f5c3329688b">
<source>Asset</source> <source>Asset</source>
<target>Varlık</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@@ -2383,8 +2477,9 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -2668,6 +2763,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8"> <trans-unit datatype="html" id="d71be278785ad5940aacaf2b29a67bdbf6fc6be8">
<source>Merkle root</source> <source>Merkle root</source>
<target>Merkle kökü</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">96,98</context> <context context-type="linenumber">96,98</context>
@@ -2676,6 +2772,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="fd04710d1a54d46cd1b81a13fc98e3d561b92141"> <trans-unit datatype="html" id="fd04710d1a54d46cd1b81a13fc98e3d561b92141">
<source>Bits</source> <source>Bits</source>
<target>Bit</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">100,102</context> <context context-type="linenumber">100,102</context>
@@ -2684,6 +2781,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a"> <trans-unit datatype="html" id="25148835d92465353fc5fe8897c27d5369978e5a">
<source>Difficulty</source> <source>Difficulty</source>
<target>Zorluk</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">110,113</context> <context context-type="linenumber">110,113</context>
@@ -2692,6 +2790,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a6bb63d98a8a67689070a79ccf13960c25b572ef"> <trans-unit datatype="html" id="a6bb63d98a8a67689070a79ccf13960c25b572ef">
<source>Nonce</source> <source>Nonce</source>
<target>Nonce</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/block/block.component.html</context> <context context-type="sourcefile">src/app/components/block/block.component.html</context>
<context context-type="linenumber">114,116</context> <context context-type="linenumber">114,116</context>
@@ -3048,6 +3147,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516"> <trans-unit datatype="html" id="dfd99c62b5b308fc5b1ad7adbbf9d526d2b31516">
<source>Sponsor</source> <source>Sponsor</source>
<target>Sponsor</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
<context context-type="linenumber">3</context> <context context-type="linenumber">3</context>
@@ -3130,14 +3230,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Şimdi</target> <target>Şimdi</target>
@@ -3305,7 +3397,7 @@
<target>Onaylanmamış</target> <target>Onaylanmamış</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -3380,6 +3472,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="3e322ffba6477484e0dd2e65650fdd70322ea6d0"> <trans-unit datatype="html" id="3e322ffba6477484e0dd2e65650fdd70322ea6d0">
<source>Fee rate</source> <source>Fee rate</source>
<target>Ücret değeri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">156</context> <context context-type="linenumber">156</context>
@@ -3393,6 +3486,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b"> <trans-unit datatype="html" id="dd230222e3ae689913445ce93b6ae3f7cce7458b">
<source>Descendant</source> <source>Descendant</source>
<target>Varis</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">163</context> <context context-type="linenumber">163</context>
@@ -3402,6 +3496,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511"> <trans-unit datatype="html" id="8c16167a5d7c96d14ff280b09de312d18d5e2511">
<source>Ancestor</source> <source>Ancestor</source>
<target>Ata</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">177</context> <context context-type="linenumber">177</context>
@@ -3469,6 +3564,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be"> <trans-unit datatype="html" id="eb1737af67381ce6f0b347038bb4c65b3deb84be">
<source>Effective fee rate</source> <source>Effective fee rate</source>
<target>Effektik ücret değeri</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context>
<context context-type="linenumber">345</context> <context context-type="linenumber">345</context>
@@ -3631,6 +3727,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f85c05147b720576e50336cf26f63d3b05601699"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">1</context> <context context-type="linenumber">1</context>
@@ -3657,6 +3754,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="975f46d122f2ca0a187308399a58b44d61ef08eb"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">3</context> <context context-type="linenumber">3</context>
@@ -3665,6 +3763,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1be04d5407059059b596f72696a3d1704ce9c0ef"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">5</context> <context context-type="linenumber">5</context>
@@ -3696,6 +3795,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="85ce9e4f45873116b746899169cbc3445321d60c"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context> <context context-type="sourcefile">src/app/components/tx-features/tx-features.component.html</context>
<context context-type="linenumber">9</context> <context context-type="linenumber">9</context>
@@ -3714,6 +3814,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="9d92d02835569b64f0dce58e81a0d22dd798f6e5"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context> <context context-type="sourcefile">src/app/components/tx-fee-rating/tx-fee-rating.component.html</context>
<context context-type="linenumber">2</context> <context context-type="linenumber">2</context>
@@ -3807,6 +3908,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1f9a922cb4010ee20eb9a241a22307b670f7628c"> <trans-unit datatype="html" id="1f9a922cb4010ee20eb9a241a22307b670f7628c">
<source>Minimum fee</source> <source>Minimum fee</source>
<target>Minimum ücret</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">161,162</context> <context context-type="linenumber">161,162</context>
@@ -3816,6 +3918,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4c3955cfe5955657297481efaf3ada8c55c75b2c"> <trans-unit datatype="html" id="4c3955cfe5955657297481efaf3ada8c55c75b2c">
<source>Purging</source> <source>Purging</source>
<target>Temizleme</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">162,164</context> <context context-type="linenumber">162,164</context>
@@ -3825,6 +3928,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5"> <trans-unit datatype="html" id="b9565832c4caef9a03f2b30fe37495ff38566fd5">
<source>Memory usage</source> <source>Memory usage</source>
<target>Hafıza kullanımı</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context> <context context-type="sourcefile">src/app/dashboard/dashboard.component.html</context>
<context context-type="linenumber">174,176</context> <context context-type="linenumber">174,176</context>
@@ -3852,6 +3956,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2799825781368047816"> <trans-unit datatype="html" id="2799825781368047816">
<source>Transaction fee</source> <source>Transaction fee</source>
<target>İşlem ücreti</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context> <context context-type="sourcefile">src/app/shared/pipes/scriptpubkey-type-pipe/scriptpubkey-type.pipe.ts</context>
<context context-type="linenumber">11</context> <context context-type="linenumber">11</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Mempool - проект з відкритим кодом</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>Експлорер та API для ком'юніті Bitcoin з фокусом на зростаючий ринок комісій розроблені та підтримувані для того, щоб допомогти з переходом до багатошарової екосистеми, без реклами, альткоїнів та сторонніх трекерів.</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Підприємства-спонсори 🚀</target> <target>Підприємства-спонсори 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1404,7 @@
<target>Спонсори з спільноти ❤️</target> <target>Спонсори з спільноти ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1413,7 @@
<target>Стати спонсором ❤️</target> <target>Стати спонсором ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1437,7 +1435,7 @@
<target>Інтеграції спільноти</target> <target>Інтеграції спільноти</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1444,7 @@
<target>Союзи спільноти</target> <target>Союзи спільноти</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1453,7 @@
<target>Учасники проекту</target> <target>Учасники проекту</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1462,7 @@
<target>Розробники проекту</target> <target>Розробники проекту</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2345,23 +2343,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,6 +2359,14 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2471,9 +2469,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3221,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </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>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Щойно</target> <target>Щойно</target>
@@ -3400,7 +3388,7 @@
<target>Непідтверджена</target> <target>Непідтверджена</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -816,7 +816,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -1070,7 +1070,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1092,7 +1092,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1110,7 +1110,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1377,19 +1377,17 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Dự án Mã nguồn mở Mempool</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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>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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1397,7 +1395,7 @@
<target>Nhà tài trợ doanh nghiệp 🚀</target> <target>Nhà tài trợ doanh nghiệp 🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1406,7 +1404,7 @@
<target>Nhà tài trợ cộng đồng ❤️</target> <target>Nhà tài trợ cộng đồng ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1415,7 +1413,7 @@
<target>Trở thành nhà tài trợ ❤️</target> <target>Trở thành nhà tài trợ ❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <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> <target>Tích hợp cộng đồng</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1446,7 +1444,7 @@
<target>Liên minh cộng đồng</target> <target>Liên minh cộng đồng</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1455,7 +1453,7 @@
<target>Người đóng góp dự án</target> <target>Người đóng góp dự án</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1464,7 +1462,7 @@
<target>Người bảo trì dự án</target> <target>Người bảo trì dự án</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1593,6 +1591,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455"> <trans-unit datatype="html" id="b151944861534c4a9e9623537dba0a95f60e4455">
<source>Endpoint</source> <source>Endpoint</source>
<target>Điểm cuối</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -1749,6 +1748,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>Sự miêu tả</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2345,23 +2345,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>Ví dụ về mã</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2369,8 +2362,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>Phản ứng</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2471,9 +2474,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3224,15 +3226,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<target>Chỉ TV</target>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>Vừa mới đây</target> <target>Vừa mới đây</target>
@@ -3400,7 +3393,7 @@
<target>Chưa xác nhận</target> <target>Chưa xác nhận</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -747,7 +747,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -982,7 +982,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1003,7 +1003,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1020,7 +1020,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note priority="1" from="description">shared.transaction</note> <note priority="1" from="description">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1263,22 +1263,22 @@
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.about-the-project</note> <note priority="1" from="description">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit id="35183d36272d152e9b838a42bafbe6526a55f7ee" datatype="html"> <trans-unit id="f447b21299afc5bc9dadade96dbc90114bea837a" 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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html"> <trans-unit id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f" datatype="html">
<source>Enterprise Sponsors 🚀</source> <source>Enterprise Sponsors 🚀</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.sponsors.enterprise.withRocket</note> <note priority="1" from="description">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1286,7 +1286,7 @@
<source>Community Sponsors ❤️</source> <source>Community Sponsors ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.sponsors.withHeart</note> <note priority="1" from="description">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1294,7 +1294,7 @@
<source>Become a sponsor ❤️</source> <source>Become a sponsor ❤️</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.become-a-sponsor</note> <note priority="1" from="description">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1314,7 +1314,7 @@
<source>Community Integrations</source> <source>Community Integrations</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.integrations</note> <note priority="1" from="description">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1322,7 +1322,7 @@
<source>Community Alliances</source> <source>Community Alliances</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.alliances</note> <note priority="1" from="description">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1330,7 +1330,7 @@
<source>Project Contributors</source> <source>Project Contributors</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.contributors</note> <note priority="1" from="description">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1338,7 +1338,7 @@
<source>Project Maintainers</source> <source>Project Maintainers</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note priority="1" from="description">about.maintainers</note> <note priority="1" from="description">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -2158,23 +2158,15 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit id="0a668c1c2a17e557a18fc06619998e002f50df1e" datatype="html">
<source>Code Example</source> <source>Code Example</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2182,6 +2174,14 @@
</context-group> </context-group>
<note priority="1" from="description">API Docs code example</note> <note priority="1" from="description">API Docs code example</note>
</trans-unit> </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"> <trans-unit id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467" datatype="html">
<source>Response</source> <source>Response</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -2275,8 +2275,8 @@
<note priority="1" from="description">Liquid Asset circulating amount</note> <note priority="1" from="description">Liquid Asset circulating amount</note>
<note priority="1" from="meaning">asset.circulating-amount</note> <note priority="1" from="meaning">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit id="f8c95f48130898dbd3b09638813b5f61c77ef7ee" datatype="html"> <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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -2965,14 +2965,6 @@
</context-group> </context-group>
<note priority="1" from="description">statistics.transaction-vbytes-per-second</note> <note priority="1" from="description">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896" datatype="html">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note priority="1" from="description">television.tv-only</note>
</trans-unit>
<trans-unit id="time-since.just-now" datatype="html"> <trans-unit id="time-since.just-now" datatype="html">
<source>Just now</source> <source>Just now</source>
<context-group purpose="location"> <context-group purpose="location">
@@ -3119,7 +3111,7 @@
<source>Unconfirmed</source> <source>Unconfirmed</source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -657,6 +657,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1"> <trans-unit datatype="html" id="d3ad0babadabfa3e3b7f51637651822f3e56a7b1">
<source>Markets</source> <source>Markets</source>
<target>市场</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">20,21</context> <context context-type="linenumber">20,21</context>
@@ -669,6 +670,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba"> <trans-unit datatype="html" id="ece163b62f5e9b0b68a8d6a2d93e216318f557ba">
<source>Bitcoin Markets</source> <source>Bitcoin Markets</source>
<target>比特币市场</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">21,23</context> <context context-type="linenumber">21,23</context>
@@ -681,6 +683,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9"> <trans-unit datatype="html" id="32072c7fb0469aaf82d256a59b3e0d6ecce973b9">
<source>Currency</source> <source>Currency</source>
<target>货币</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-dashboard/bisq-dashboard.component.html</context>
<context context-type="linenumber">27</context> <context context-type="linenumber">27</context>
@@ -799,7 +802,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
@@ -814,6 +817,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da"> <trans-unit datatype="html" id="f4ebbeea643a58f45e665e960b494b2ea30b87da">
<source>Buy Offers</source> <source>Buy Offers</source>
<target>购买优惠</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">73,74</context> <context context-type="linenumber">73,74</context>
@@ -822,6 +826,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a"> <trans-unit datatype="html" id="abf29235edbf341b6f626c315ff509f38fbf728a">
<source>Sell Offers</source> <source>Sell Offers</source>
<target>出售优惠</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">74,77</context> <context context-type="linenumber">74,77</context>
@@ -830,6 +835,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560"> <trans-unit datatype="html" id="74d80a5b284beb81e8aeb3b8efca0f78cd4b7560">
<source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source> <source>Amount (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</source>
<target>金额 (<x equiv-text="{{ i }}" id="INTERPOLATION"/>)</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-market/bisq-market.component.html</context>
<context context-type="linenumber">112,113</context> <context context-type="linenumber">112,113</context>
@@ -950,6 +956,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c"> <trans-unit datatype="html" id="2f933b826a570836cab04f683970a2d22068458c">
<source>Date</source> <source>Date</source>
<target>日期</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-trades/bisq-trades.component.html</context>
<context context-type="linenumber">4,6</context> <context context-type="linenumber">4,6</context>
@@ -1023,6 +1030,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="8fe73a4787b8068b2ba61f54ab7e0f9af2ea1fc9"> <trans-unit datatype="html" id="8fe73a4787b8068b2ba61f54ab7e0f9af2ea1fc9">
<source>Version</source> <source>Version</source>
<target>版本</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-transaction-details/bisq-transaction-details.component.html</context>
<context context-type="linenumber">29</context> <context context-type="linenumber">29</context>
@@ -1046,7 +1054,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1068,7 +1076,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>
@@ -1086,7 +1094,7 @@
</context-group> </context-group>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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> </context-group>
<note from="description" priority="1">shared.transaction</note> <note from="description" priority="1">shared.transaction</note>
</trans-unit> </trans-unit>
@@ -1185,6 +1193,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda"> <trans-unit datatype="html" id="4d6066e445db90780e4b30ca93398be0b6567eda">
<source>BSQ Transactions</source> <source>BSQ Transactions</source>
<target>BSQ交易</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.html</context>
<context context-type="linenumber">2,5</context> <context context-type="linenumber">2,5</context>
@@ -1232,6 +1241,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="2303359202781425764"> <trans-unit datatype="html" id="2303359202781425764">
<source>Genesis</source> <source>Genesis</source>
<target>创世纪</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">33</context> <context context-type="linenumber">33</context>
@@ -1239,6 +1249,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1805880753357861573"> <trans-unit datatype="html" id="1805880753357861573">
<source>Irregular</source> <source>Irregular</source>
<target>不规律的</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">34</context> <context context-type="linenumber">34</context>
@@ -1286,6 +1297,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="1226904538495857889"> <trans-unit datatype="html" id="1226904538495857889">
<source>Transfer BSQ</source> <source>Transfer BSQ</source>
<target>转BSQ</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context> <context context-type="sourcefile">src/app/bisq/bisq-transactions/bisq-transactions.component.ts</context>
<context context-type="linenumber">40</context> <context context-type="linenumber">40</context>
@@ -1349,18 +1361,17 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015"> <trans-unit datatype="html" id="4b137ec8bf73a47063740b75c0c40d5fd3c48015">
<source>The Mempool Open Source Project</source> <source>The Mempool Open Source Project</source>
<target>Mempool 开源项目</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.about-the-project</note> <note from="description" priority="1">about.about-the-project</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="35183d36272d152e9b838a42bafbe6526a55f7ee"> <trans-unit datatype="html" id="f447b21299afc5bc9dadade96dbc90114bea837a">
<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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f"> <trans-unit datatype="html" id="a24b1c6a9c4334ba204e4cec2dd9f32ea33d043f">
@@ -1368,7 +1379,7 @@
<target>企业赞助🚀</target> <target>企业赞助🚀</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.enterprise.withRocket</note> <note from="description" priority="1">about.sponsors.enterprise.withRocket</note>
</trans-unit> </trans-unit>
@@ -1377,7 +1388,7 @@
<target>社区赞助❤️</target> <target>社区赞助❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.sponsors.withHeart</note> <note from="description" priority="1">about.sponsors.withHeart</note>
</trans-unit> </trans-unit>
@@ -1386,7 +1397,7 @@
<target>成为赞助商❤️</target> <target>成为赞助商❤️</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.become-a-sponsor</note> <note from="description" priority="1">about.become-a-sponsor</note>
</trans-unit> </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> <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-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context> <context context-type="sourcefile">src/app/components/sponsor/sponsor.component.html</context>
@@ -1407,7 +1418,7 @@
<target>社区整合</target> <target>社区整合</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.integrations</note> <note from="description" priority="1">about.integrations</note>
</trans-unit> </trans-unit>
@@ -1416,7 +1427,7 @@
<target>社区联盟</target> <target>社区联盟</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.alliances</note> <note from="description" priority="1">about.alliances</note>
</trans-unit> </trans-unit>
@@ -1425,7 +1436,7 @@
<target>项目贡献者</target> <target>项目贡献者</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.contributors</note> <note from="description" priority="1">about.contributors</note>
</trans-unit> </trans-unit>
@@ -1434,7 +1445,7 @@
<target>项目维护人员</target> <target>项目维护人员</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/about/about.component.html</context> <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> </context-group>
<note from="description" priority="1">about.maintainers</note> <note from="description" priority="1">about.maintainers</note>
</trans-unit> </trans-unit>
@@ -1717,6 +1728,7 @@
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0"> <trans-unit datatype="html" id="eec715de352a6b114713b30b640d319fa78207a0">
<source>Description</source> <source>Description</source>
<target>描述</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/api-docs.component.html</context>
<context context-type="linenumber">25,26</context> <context context-type="linenumber">25,26</context>
@@ -2273,23 +2285,16 @@
<context context-type="linenumber">59,61</context> <context context-type="linenumber">59,61</context>
</context-group> </context-group>
</trans-unit> </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"> <trans-unit datatype="html" id="0a668c1c2a17e557a18fc06619998e002f50df1e">
<source>Code Example</source> <source>Code Example</source>
<target>代码示例</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
@@ -2297,8 +2302,18 @@
</context-group> </context-group>
<note from="description" priority="1">API Docs code example</note> <note from="description" priority="1">API Docs code example</note>
</trans-unit> </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"> <trans-unit datatype="html" id="4edb71f23e3ff228dbabd05e8ffc364fae8ae467">
<source>Response</source> <source>Response</source>
<target>回复</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context> <context context-type="sourcefile">src/app/components/api-docs/code-template.component.html</context>
<context context-type="linenumber">36,37</context> <context context-type="linenumber">36,37</context>
@@ -2396,8 +2411,8 @@
<note from="description" priority="1">Liquid Asset circulating amount</note> <note from="description" priority="1">Liquid Asset circulating amount</note>
<note from="meaning" priority="1">asset.circulating-amount</note> <note from="meaning" priority="1">asset.circulating-amount</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="f8c95f48130898dbd3b09638813b5f61c77ef7ee"> <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> <source><x equiv-text="{{ (transactions?.length | number) || '?' }}" id="INTERPOLATION"/> of <x equiv-text="{{ txCount | number }}" id="INTERPOLATION_1"/> </source>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/asset/asset.component.html</context> <context context-type="sourcefile">src/app/components/asset/asset.component.html</context>
<context context-type="linenumber">76</context> <context context-type="linenumber">76</context>
@@ -3141,14 +3156,6 @@
</context-group> </context-group>
<note from="description" priority="1">statistics.transaction-vbytes-per-second</note> <note from="description" priority="1">statistics.transaction-vbytes-per-second</note>
</trans-unit> </trans-unit>
<trans-unit datatype="html" id="d10f6e967f3f654240a4f4ad5098d8e6e52a4896">
<source>TV only</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/television/television.component.html</context>
<context context-type="linenumber">7</context>
</context-group>
<note from="description" priority="1">television.tv-only</note>
</trans-unit>
<trans-unit datatype="html" id="time-since.just-now"> <trans-unit datatype="html" id="time-since.just-now">
<source>Just now</source> <source>Just now</source>
<target>刚刚</target> <target>刚刚</target>
@@ -3316,7 +3323,7 @@
<target>未确认</target> <target>未确认</target>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transaction/transaction.component.html</context> <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>
<context-group purpose="location"> <context-group purpose="location">
<context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context> <context context-type="sourcefile">src/app/components/transactions-list/transactions-list.component.html</context>

View File

@@ -251,6 +251,9 @@ body {
font-size: 14px; font-size: 14px;
} }
html:lang(ru) .card-title {
font-size: 0.9rem;
}
/* Chartist */ /* Chartist */
$ct-series-names: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z); $ct-series-names: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z);

View File

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

View File

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