1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge remote-tracking branch 'origin/develop' into master-sync

This commit is contained in:
Dan J Miller 2023-03-22 13:29:01 -02:30
commit c3f530ce14
948 changed files with 44776 additions and 25813 deletions

View File

@ -1 +1 @@
chrome >= 66, firefox >= 68
chrome >= 80, firefox >= 78

View File

@ -18,16 +18,22 @@ orbs:
gh: circleci/github-cli@2.0
codecov: codecov/codecov@3.2.2
rc_branch_only: &rc_branch_only
filters:
branches:
only:
- /^Version-v(\d+)[.](\d+)[.](\d+)/
workflows:
test_and_release:
jobs:
- create_release_pull_request:
<<: *rc_branch_only
requires:
- prep-deps
- trigger-beta-build:
requires:
- prep-deps
filters:
branches:
only:
- /^Version-v(\d+)[.](\d+)[.](\d+)/
- prep-deps
- test-deps-audit:
requires:
@ -48,9 +54,6 @@ workflows:
- prep-build:
requires:
- prep-deps
- prep-build-beta:
requires:
- prep-deps
- prep-build-desktop:
filters:
branches:
@ -66,9 +69,6 @@ workflows:
- prep-build-test-mv3:
requires:
- prep-deps
- prep-build-test-nft:
requires:
- prep-deps
- prep-build-test-flask:
requires:
- prep-deps
@ -103,12 +103,6 @@ workflows:
- test-e2e-chrome-mv3:
requires:
- prep-build-test-mv3
- test-e2e-chrome-nft:
requires:
- prep-build-test-nft
- test-e2e-firefox-nft:
requires:
- prep-build-test-nft
- test-unit-mocha:
requires:
- prep-deps
@ -135,7 +129,7 @@ workflows:
- prep-build
- validate-source-maps-beta:
requires:
- prep-build-beta
- trigger-beta-build
- validate-source-maps-desktop:
filters:
branches:
@ -150,9 +144,10 @@ workflows:
- prep-deps
- prep-build
- test-mozilla-lint-beta:
<<: *rc_branch_only
requires:
- prep-deps
- prep-build-beta
- trigger-beta-build
- test-mozilla-lint-desktop:
filters:
branches:
@ -202,13 +197,12 @@ workflows:
requires:
- prep-deps
- prep-build
- prep-build-beta
- trigger-beta-build
- prep-build-desktop
- prep-build-flask
- prep-build-storybook
- prep-build-ts-migration-dashboard
- prep-build-test-mv3
- prep-build-test-nft
- benchmark
- user-actions-benchmark
- stats-module-load-init
@ -237,6 +231,35 @@ workflows:
- prep-build-ts-migration-dashboard
jobs:
trigger-beta-build:
executor: node-browsers-medium-plus
steps:
- checkout
- attach_workspace:
at: .
- when:
condition:
not:
matches:
pattern: /^master$/
value: << pipeline.git.branch >>
steps:
- run:
name: Build beta prod
command: |
.circleci/scripts/trigger-beta-build.sh
- run:
name: Move beta build to 'dist-beta' to avoid conflict with production build
command: mv ./dist ./dist-beta
- run:
name: Move beta zips to 'builds-beta' to avoid conflict with production build
command: mv ./builds ./builds-beta
- persist_to_workspace:
root: .
paths:
- dist-beta
- builds-beta
create_release_pull_request:
executor: node-browsers
steps:
@ -355,46 +378,6 @@ jobs:
- dist
- builds
prep-build-beta:
executor: node-browsers-medium-plus
steps:
- checkout
- attach_workspace:
at: .
- when:
condition:
not:
matches:
pattern: /^master$/
value: << pipeline.git.branch >>
steps:
- run:
name: build:dist
command: yarn build --build-type beta dist
- when:
condition:
matches:
pattern: /^master$/
value: << pipeline.git.branch >>
steps:
- run:
name: build:prod
command: yarn build --build-type beta prod
- run:
name: build:debug
command: find dist/ -type f -exec md5sum {} \; | sort -k 2
- run:
name: Move beta build to 'dist-beta' to avoid conflict with production build
command: mv ./dist ./dist-beta
- run:
name: Move beta zips to 'builds-beta' to avoid conflict with production build
command: mv ./builds ./builds-beta
- persist_to_workspace:
root: .
paths:
- dist-beta
- builds-beta
prep-build-desktop:
executor: node-browsers-medium-plus
steps:
@ -501,27 +484,6 @@ jobs:
- dist-test-mv3
- builds-test-mv3
prep-build-test-nft:
executor: node-browsers-medium-plus
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Build extension with nft's enabled for testing
command: yarn build:test:nft
- run:
name: Move test build to 'dist-test-nft' to avoid conflict with production build
command: mv ./dist ./dist-test-nft
- run:
name: Move test zips to 'builds-test-nft' to avoid conflict with production build
command: mv ./builds ./builds-test-nft
- persist_to_workspace:
root: .
paths:
- dist-test-nft
- builds-test-nft
prep-build-test:
executor: node-browsers-medium-plus
steps:
@ -650,7 +612,7 @@ jobs:
steps:
- run:
name: Validate release candidate changelog
command: yarn lint:changelog:rc
command: .circleci/scripts/validate-changelog-in-rc.sh
test-deps-audit:
executor: node-browsers
@ -702,6 +664,7 @@ jobs:
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
when: always
- store_artifacts:
path: test-artifacts
destination: test-artifacts
@ -736,78 +699,6 @@ jobs:
path: test-artifacts
destination: test-artifacts
test-e2e-chrome-nft:
executor: node-browsers
parallelism: 1
steps:
- checkout
- run:
name: Re-Install Chrome
command: ./.circleci/scripts/chrome-install.sh
- attach_workspace:
at: .
- run:
name: Move test build to dist
command: mv ./dist-test-nft ./dist
- run:
name: Move test zips to builds
command: mv ./builds-test-nft ./builds
- run:
name: test:e2e:chrome
command: |
if .circleci/scripts/test-run-e2e.sh
then
yarn test:e2e:chrome:nft --retries 2
fi
no_output_timeout: 20m
- run:
name: Merge JUnit report
command: |
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
- store_artifacts:
path: test-artifacts
destination: test-artifacts
- store_test_results:
path: test/test-results/e2e.xml
test-e2e-firefox-nft:
executor: node-browsers
parallelism: 1
steps:
- checkout
- run:
name: Install Firefox
command: ./.circleci/scripts/firefox-install.sh
- attach_workspace:
at: .
- run:
name: Move test build to dist
command: mv ./dist-test-nft ./dist
- run:
name: Move test zips to builds
command: mv ./builds-test-nft ./builds
- run:
name: test:e2e:firefox
command: |
if .circleci/scripts/test-run-e2e.sh
then
yarn test:e2e:firefox:nft --retries 2
fi
no_output_timeout: 20m
- run:
name: Merge JUnit report
command: |
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
- store_artifacts:
path: test-artifacts
destination: test-artifacts
- store_test_results:
path: test/test-results/e2e.xml
test-e2e-firefox-snaps:
executor: node-browsers
parallelism: 2
@ -838,6 +729,7 @@ jobs:
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
when: always
- store_artifacts:
path: test-artifacts
destination: test-artifacts
@ -874,6 +766,7 @@ jobs:
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
when: always
- store_artifacts:
path: test-artifacts
destination: test-artifacts
@ -910,6 +803,7 @@ jobs:
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
when: always
- store_artifacts:
path: test-artifacts
destination: test-artifacts
@ -1211,7 +1105,8 @@ jobs:
command: mv ./builds-beta ./builds
- run:
name: Validate source maps
command: yarn validate-source-maps
command: |
.circleci/scripts/validate-source-maps-beta.sh
validate-source-maps-desktop:
executor: node-browsers

View File

@ -5,12 +5,12 @@ set -u
set -o pipefail
# To get the latest version, see <https://www.ubuntuupdates.org/ppa/google_chrome?dist=stable>
CHROME_VERSION='109.0.5414.74-1'
CHROME_VERSION='111.0.5563.64-1'
CHROME_BINARY="google-chrome-stable_${CHROME_VERSION}_amd64.deb"
CHROME_BINARY_URL="https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/${CHROME_BINARY}"
# To retrieve this checksum, run the `wget` and `shasum` commands below
CHROME_BINARY_SHA512SUM='5fa92a552588894eca752575851f4c1a74b02b02233170a03bf642dad58c8544f5af1af919598f8e126efbf6b92b5cbdbdbf58a7df6033ce761587c2bd840629'
CHROME_BINARY_SHA512SUM='bbfd436c17d6f0554b91211ecf1324aeeac012f1d000d610f93956dbfb8387c0adb56f921c5b7bcc1833c49ab2abbd3bbc250001f650b3ca4f79cebe708c29ae'
wget -O "${CHROME_BINARY}" -t 5 "${CHROME_BINARY_URL}"

View File

@ -4,7 +4,7 @@ set -e
set -u
set -o pipefail
FIREFOX_VERSION='106.0.4'
FIREFOX_VERSION='110.0'
FIREFOX_BINARY="firefox-${FIREFOX_VERSION}.tar.bz2"
FIREFOX_BINARY_URL="https://ftp.mozilla.org/pub/firefox/releases/${FIREFOX_VERSION}/linux-x86_64/en-US/${FIREFOX_BINARY}"
FIREFOX_PATH='/opt/firefox'

View File

@ -18,8 +18,15 @@ fi
printf '%s\n' 'Updating the manifest version if needed'
version="${CIRCLE_BRANCH/Version-v/}"
yarn version "${version}"
current_commit_msg=$(git show -s --format='%s' HEAD)
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
then
printf '%s\n' 'manifest version will not be updated for beta commit'
# escape version update everytime a new change pushed to release branch
else
version="${CIRCLE_BRANCH/Version-v/}"
yarn version "${version}"
fi
if [[ -z $(git status --porcelain) ]]
then

View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
# => Version-v10.24.1
version="${CIRCLE_BRANCH/Version-v/}"
current_commit_msg=$(git show -s --format='%s' HEAD)
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
then
# filter the commit message like Version v10.24.1-beta.1
printf '%s\n' "Create a build for $version with beta version $current_commit_msg"
yarn build --build-type beta dist
yarn build --build-type beta prod
else
printf '%s\n' 'Commit message does not match commit message for beta pattern; skipping beta automation build'
mkdir dist
mkdir builds
exit 0
fi
exit 0

View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
current_commit_msg=$(git show -s --format='%s' HEAD)
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
then
printf '%s\n' 'Skip changelog validation for beta commit'
else
printf '%s\n' 'Validate changelog for release candidate'
yarn lint:changelog:rc
fi
exit 0

View File

@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
# => Version-v10.24.1
current_commit_msg=$(git show -s --format='%s' HEAD)
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
then
# filter the commit message like Version v10.24.1-beta.1
printf '%s\n' "Validate source maps with beta version $current_commit_msg"
yarn validate-source-maps
else
printf '%s\n' 'Commit message does not match commit message for beta pattern; skipping validation of beta source maps'
exit 0
fi
exit 0

View File

@ -46,6 +46,8 @@ ignores:
- '@storybook/builder-webpack5'
- '@storybook/manager-webpack5'
- 'storybook-dark-mode'
- '@whitespace/storybook-addon-html'
- 'react-syntax-highlighter'
- 'style-loader'
- 'css-loader'
- 'sass-loader'

View File

@ -22,7 +22,7 @@ jobs:
HEAD_REF: ${{ github.event.pull_request.head.ref }}
BASE_REF: ${{ github.event.pull_request.base.ref }}
run: |
git fetch origin $HEAD_REF
git fetch origin $BASE_REF
git diff origin/$BASE_REF origin/$HEAD_REF -- . ':(exclude)development/fitness-functions/*' > diff
# git fetch origin $HEAD_REF
# git fetch origin $BASE_REF
# git diff origin/$BASE_REF origin/$HEAD_REF -- . ':(exclude)development/fitness-functions/*' > diff
# npm run fitness-functions -- "ci" "./diff"

View File

@ -0,0 +1,33 @@
name: Trigger MetaMask Desktop CI
on:
push:
branches: [master]
pull_request:
branches: [master]
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
trigger-desktop-ci:
runs-on: ubuntu-latest
environment: desktop
if: ${{ (!github.event.pull_request.draft && startsWith(github.head_ref, 'Version-v')) || (!github.event.pull_request) }}
steps:
- name: Trigger MetaMask Desktop CI
env:
CI_TOKEN: ${{ secrets.DESKTOP_CI_TOKEN }}
DESKTOP_CI_URL: ${{ secrets.DESKTOP_CI_URL }}
EXTENSION_BRANCH: ${{ github.head_ref || github.event.base_ref }}
DESKTOP_BRANCH: app-stable
run: |
echo "Extension branch - $EXTENSION_BRANCH"
echo "Desktop branch - $DESKTOP_BRANCH"
curl --request POST \
--url "$DESKTOP_CI_URL" \
--header "Circle-Token: $CI_TOKEN" \
--header "content-type: application/json" \
--data '{"branch":"main","parameters":{"extension-release":true,"extension-release-branch":"'"$EXTENSION_BRANCH"'","app-stable-branch":"'"$DESKTOP_BRANCH"'"}}'

1
.gitignore vendored
View File

@ -12,7 +12,6 @@ package
# IDEs
.idea
.vscode
.sublime-project
*.bak

View File

@ -3,11 +3,11 @@ PASSWORD=METAMASK PASSWORD
INFURA_PROJECT_ID=00000000000
SEGMENT_WRITE_KEY=
SWAPS_USE_DEV_APIS=
NFTS_V1=
PUBNUB_PUB_KEY=
PUBNUB_SUB_KEY=
PORTFOLIO_URL=
TRANSACTION_SECURITY_PROVIDER=
MULTICHAIN=
; Set this to test changes to the phishing warning page.
PHISHING_WARNING_PAGE_URL=

View File

@ -8,7 +8,6 @@ jest-coverage/
storybook-build/
app/vendor/**
.nyc_output/**
.vscode/**
test/e2e/send-eth-with-private-key-test/**
*.scss
development/chromereload.js

View File

@ -48,7 +48,7 @@ The example below displays the `Button` component and it explains how we should
import React from 'react';
import BuyIcon from '../icon/overview-buy-icon.component';
import IconTokenSearch from '../icon/icon-token-search';
// The mdx file to document props and usage
import README from './README.mdx';
@ -92,9 +92,9 @@ export default {
control: {
type: 'select',
},
options: ['BuyIcon'],
options: ['IconTokenSearch'],
mapping: {
BuyIcon: <BuyIcon />,
IconTokenSearch: <IconTokenSearch />,
},
},
},

View File

@ -1,8 +0,0 @@
module.exports = {
runtime: {
getManifest: () => {
return { manifest_version: 2 };
}
},
};

View File

@ -12,6 +12,7 @@ module.exports = {
features: { buildStoriesJson: true },
stories: [
'../ui/**/*.stories.js',
'../ui/**/*.stories.tsx',
'../ui/**/*.stories.mdx',
'./*.stories.mdx',
],
@ -22,6 +23,7 @@ module.exports = {
'@storybook/addon-knobs',
'./i18n-party-addon/register.js',
'storybook-dark-mode',
'@whitespace/storybook-addon-html'
],
staticDirs: ['../app', './images'],
// Uses babel.config.js settings and prevents "Missing class properties transform" error
@ -40,7 +42,7 @@ module.exports = {
__filename: true,
};
config.resolve.alias['webextension-polyfill'] = require.resolve(
'./__mocks__/webextension-polyfill.js',
'../ui/__mocks__/webextension-polyfill.js',
);
config.resolve.fallback = {
child_process: false,

View File

@ -38,6 +38,9 @@ addParameters({
],
},
},
controls: {
expanded: true,
},
});
export const globalTypes = {

View File

@ -1,5 +1,5 @@
import { draftTransactionInitialState } from '../ui/ducks/send';
import { HardwareKeyringTypes } from '../shared/constants/hardware-wallets';
import { KeyringType } from '../shared/constants/keyring';
const state = {
invalidCustomNetwork: {
@ -289,7 +289,6 @@ const state = {
},
version: '0.6.0',
},
permissionName: 'wallet_snap_local:http://localhost:8080/',
sourceCode: '(...)',
status: 'stopped',
svgIcon: '<svg>...</svg>',
@ -330,7 +329,6 @@ const state = {
},
version: '0.6.0',
},
permissionName: 'wallet_snap_npm:http://localhost:8080/',
sourceCode: '(...)',
status: 'stopped',
svgIcon: '<svg>...</svg>',
@ -422,7 +420,6 @@ const state = {
],
},
},
frequentRpcList: [],
addressBook: {
undefined: {
0: {
@ -460,20 +457,28 @@ const state = {
},
],
allDetectedTokens: {
'0x5' : {
'0x5': {
'0x9d0ba4ddac06032527b140912ec808ab9451b788': [
{
address: '0x514910771AF9Ca656af840dff83E8264EcF986CA',
decimals: 18,
symbol: 'LINK',
image: 'https://crypto.com/price/coin-data/icon/LINK/color_icon.png',
aggregators: ['coinGecko', 'oneInch', 'paraswap', 'zapper', 'zerion'],
image:
'https://crypto.com/price/coin-data/icon/LINK/color_icon.png',
aggregators: [
'coinGecko',
'oneInch',
'paraswap',
'zapper',
'zerion',
],
},
{
address: '0xc00e94Cb662C3520282E6f5717214004A7f26888',
decimals: 18,
symbol: 'COMP',
image: 'https://crypto.com/price/coin-data/icon/COMP/color_icon.png',
image:
'https://crypto.com/price/coin-data/icon/COMP/color_icon.png',
aggregators: [
'bancor',
'cmc',
@ -503,8 +508,8 @@ const state = {
'zerion',
],
},
]
}
],
},
},
detectedTokens: [
{
@ -1163,30 +1168,39 @@ const state = {
unapprovedTypedMessages: {},
unapprovedTypedMessagesCount: 0,
keyringTypes: [
HardwareKeyringTypes.imported,
HardwareKeyringTypes.hdKeyTree,
HardwareKeyringTypes.trezor,
HardwareKeyringTypes.ledger,
KeyringType.imported,
KeyringType.hdKeyTree,
KeyringType.trezor,
KeyringType.ledger,
],
keyrings: [
{
type: HardwareKeyringTypes.hdKeyTree,
type: KeyringType.hdKeyTree,
accounts: [
'0x64a845a5b02460acf8a3d84503b0d68d028b4bb4',
'0xb19ac54efa18cc3a14a5b821bfec73d284bf0c5e',
'0x9d0ba4ddac06032527b140912ec808ab9451b788',
],
},
],
frequentRpcListDetail: [
{
type: KeyringType.ledger,
accounts: ['0x9d0ba4ddac06032527b140912ec808ab9451b788'],
},
],
networkConfigurations: {
'test-networkConfigurationId-1': {
rpcUrl: 'https://testrpc.com',
chainId: '0x1',
nickname: 'mainnet',
rpcPrefs: { blockExplorerUrl: 'https://etherscan.io' },
},
'test-networkConfigurationId-2': {
rpcUrl: 'http://localhost:8545',
chainId: '0x539',
ticker: 'ETH',
nickname: 'Localhost 8545',
rpcPrefs: {},
},
],
},
accountTokens: {
'0x64a845a5b02460acf8a3d84503b0d68d028b4bb4': {
'0x1': [

3
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"recommendations": ["rvest.vs-code-prettier-eslint"]
}

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"javascript.preferences.importModuleSpecifier": "relative"
}

File diff suppressed because one or more lines are too long

View File

@ -1,14 +0,0 @@
diff --git a/src/kernelCoreTemplate.js b/src/kernelCoreTemplate.js
index 255b2637167de9e5da435fe2f7ea364cfb22f86b..c229f5067a64d0a2705fa2f07085b6cac42bca9c 100644
--- a/src/kernelCoreTemplate.js
+++ b/src/kernelCoreTemplate.js
@@ -124,7 +124,8 @@
if (shouldAvoidProp(propsToAvoid, prop)) {
continue
}
- if (Object.getOwnPropertyDescriptor(globalRef, prop)?.configurable === false) {
+ const globalRefPropertyDescriptor = Object.getOwnPropertyDescriptor(globalRef, prop);
+ if (globalRefPropertyDescriptor && globalRefPropertyDescriptor.configurable === false) {
continue
}
const desc = {

View File

@ -1,16 +0,0 @@
diff --git a/src/kernelCoreTemplate.js b/src/kernelCoreTemplate.js
index c9916f0889c17f850bffe8e5c02b3f804c9ed810..55edb49c936f28b928f74150c748fe80a9add896 100644
--- a/src/kernelCoreTemplate.js
+++ b/src/kernelCoreTemplate.js
@@ -138,9 +138,9 @@
continue
}
let desc = Object.getOwnPropertyDescriptor(globalRef, prop)
- if (desc?.configurable === true) {
+ if (desc && desc.configurable === true) {
desc = { configurable: false, set, get }
- } else if (desc?.writable === true) {
+ } else if (desc && desc.writable === true) {
const p = new Proxy(obj, { getPrototypeOf: get, get, set } )
desc = { configurable: false, writable: false, value: p }
} else {

View File

@ -17,7 +17,8 @@ To learn how to contribute to the MetaMask project itself, visit our [Internal D
- Install [Node.js](https://nodejs.org) version 16
- If you are using [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) (recommended) running `nvm use` will automatically choose the right node version for you.
- Install [Yarn v3](https://yarnpkg.com/getting-started/install)
- Install dependencies: `yarn`
- ONLY follow the steps in the "Install Corepack" and "Updating the global Yarn version" sections
- DO NOT take any of the steps in the "Initializing your project", "Updating to the latest versions" or "Installing the latest build fresh from master" sections. These steps could result in your repo being reset or installing the wrong yarn version, which can break your build.
- Copy the `.metamaskrc.dist` file to `.metamaskrc`
- Replace the `INFURA_PROJECT_ID` value with your own personal [Infura Project ID](https://infura.io/docs).
- If debugging MetaMetrics, you'll need to add a value for `SEGMENT_WRITE_KEY` [Segment write key](https://segment.com/docs/connections/find-writekey/), see [Developing on MetaMask - Segment](./development/README.md#segment).

View File

@ -69,12 +69,6 @@
"asset": {
"message": "ሐብት"
},
"attemptToCancel": {
"message": "ለመሰረዝ ይሞክራሉ?"
},
"attemptToCancelDescription": {
"message": "ይህን ሙከራ ማቅረብ የመጀመሪያው ግብይትዎ እንደሚሰረዝ ዋስትና አይሰጥም። የመሰረዝ ሙከራው ከተሳካ፣ ከላይ የተጠቀሰውን የግብይት ክፍያ እንዲከፍሉ ይደረጋሉ።"
},
"attemptingConnect": {
"message": "ከ blockchain ጋር ለመገናኘት መሞከር።"
},
@ -124,21 +118,12 @@
"browserNotSupported": {
"message": "ማሰሺያዎት አልተደገፈም..."
},
"buyWithWyre": {
"message": "$1 በ Wyre ይግዙ"
},
"buyWithWyreDescription": {
"message": "Wyre ክሬዲት ካርድ ተጠቅመው $1 በቀጥታ በ MetaMask መለያዎ ላይ እንዲያስቀምጡ ያስችልዎታል።"
},
"bytes": {
"message": "ባይት"
},
"cancel": {
"message": "ሰርዝ"
},
"cancellationGasFee": {
"message": "የስረዛ ነዳጅ ወጪ"
},
"cancelled": {
"message": "ተሰርዟል"
},
@ -172,12 +157,12 @@
"connectingToGoerli": {
"message": "ከ Goerli የሙከራ አውታረ መረብ ጋር መገናኘት"
},
"connectingToLineaTestnet": {
"message": "ከ Linea Goerli የሙከራ አውታረ መረብ ጋር መገናኘት"
},
"connectingToMainnet": {
"message": "ከዋናው የ Ethereum አውታረ መረብ ጋር መገናኘት"
},
"continueToWyre": {
"message": "ወደ Wyre ይቀጥሉ"
},
"contractDeployment": {
"message": "የኮንትራት ስምሪት"
},
@ -327,13 +312,6 @@
"general": {
"message": "አጠቃላይ"
},
"getEther": {
"message": "Ether ያግኙ"
},
"getEtherFromFaucet": {
"message": "Ether ከቧንቧ በ$1ያግኙ",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "የ Goerli የሙከራ አውታረ መረብ"
},
@ -425,6 +403,9 @@
"likeToImportTokens": {
"message": "እነዚህን ተለዋጭ ስሞች ለማከል ይፈልጋሉ?"
},
"lineatestnet": {
"message": "የ Linea Goerli የሙከራ አውታረ መረብ"
},
"links": {
"message": "ማስፈንጠሪያዎች"
},
@ -624,26 +605,15 @@
"reset": {
"message": "ዳግም አስጀምር"
},
"resetAccount": {
"message": "መለያን እንደገና ይሙሉ"
},
"resetAccountDescription": {
"message": "መለያዎን እንደገና መሙላት የግብይት ታሪዎን ያጠራል።"
},
"restore": {
"message": "እነበረበት መልስ"
},
"revealSeedWords": {
"message": "የዘር ቃላትን ይግለጹ"
},
"revealSeedWordsDescription": {
"message": "ማሰሺያዎችን ከቀየሩ ወይም ኮምፒዩተሮቸን ከአንድ ቦታ ወደ ሌላ ቦታ ካንቀሳቀሱ፣ ወደ መለያዎችዎ ለመድረስ ይህ የዘር ሐረግ ያስፈልግዎታል። ደህንነቱና ሚስጥራዊነቱ በተጠበቀ ቦታ ያስቀምጧቸው።"
},
"revealSeedWordsWarning": {
"message": "እነዚህ ቃላት ሁሉንም መለያዎችዎን ለመስረቅ ሊውሉ ይችላሉ።"
},
"revealSeedWordsWarningTitle": {
"message": "ይህን ሐረግ ለየትኛውም ሰው አያጋሩ!"
"message": "እነዚህ ቃላት ሁሉንም መለያዎችዎን ለመስረቅ ሊውሉ ይችላሉ።",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "አዲስ የ RPC URL"
@ -651,9 +621,6 @@
"save": {
"message": "አስቀምጥ"
},
"saveAsCsvFile": {
"message": "እንደ CSV ፋይል አስቀምጥ"
},
"scanInstructions": {
"message": "የ QR ኮዱን ከካሜራዎ ፊት ለፊት ያስቀምጡ"
},
@ -789,9 +756,6 @@
"terms": {
"message": "የአጠቃቀም ደንቦች"
},
"testFaucet": {
"message": "የሙከራ ቧንቧ"
},
"tips": {
"message": "መረጃዎች"
},
@ -910,9 +874,6 @@
"userName": {
"message": "የተጣቃሚ ስም"
},
"viewAccount": {
"message": "መለያን ይመልከቱ"
},
"viewContact": {
"message": "ዕውቂያን ይመልከቱ"
},
@ -922,9 +883,6 @@
"welcomeBack": {
"message": "እንኳን በደህና ተመለሱ"
},
"yesLetsTry": {
"message": "አዎ፣ እንሞክር"
},
"youNeedToAllowCameraAccess": {
"message": "ይህን ባህርይ ለመጠቀም የካሜራን መድረስ መፍቀድ አለብዎት።"
},

View File

@ -79,12 +79,6 @@
"asset": {
"message": "الأصل"
},
"attemptToCancel": {
"message": "هل تحاول الإلغاء؟"
},
"attemptToCancelDescription": {
"message": "تقديم هذه المحاولة لا يضمن أنه سيتم إلغاء معاملتك الأصلية. إذا نجحت محاولة الإلغاء ، فسيتم فرض رسوم المعاملة المذكورة أعلاه."
},
"attemptingConnect": {
"message": "محاولة الاتصال بسلسلة الكتل."
},
@ -134,21 +128,12 @@
"browserNotSupported": {
"message": "متصفحك غير مدعوم..."
},
"buyWithWyre": {
"message": "قم بشراء عملة إيثير بواسطة Wyre"
},
"buyWithWyreDescription": {
"message": "يتيح لك Wyre استخدام بطاقة ائتمان لإيداع 1$ مباشرة في حساب MetaMask الخاص بك."
},
"bytes": {
"message": "بايتات"
},
"cancel": {
"message": "إلغاء"
},
"cancellationGasFee": {
"message": "رسوم الإلغاء بعملة جاس"
},
"cancelled": {
"message": "تم الإلغاء"
},
@ -182,12 +167,12 @@
"connectingToGoerli": {
"message": "الاتصال بشبكة اختبار Goerli"
},
"connectingToLineaTestnet": {
"message": "الاتصال بشبكة اختبار Linea Goerli"
},
"connectingToMainnet": {
"message": "جارِ الاتصال بشبكة إيثيريوم الرئيسية"
},
"continueToWyre": {
"message": "الاستمرار إلى Wyre"
},
"contractDeployment": {
"message": "نشر العقد"
},
@ -336,13 +321,6 @@
"general": {
"message": "عام"
},
"getEther": {
"message": "احصل على إيثر"
},
"getEtherFromFaucet": {
"message": "احصل على الأثير من صنبور مقابل $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "شبكة اختبار Goerli "
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "هل ترغب في إضافة هذه الرموز؟"
},
"lineatestnet": {
"message": "شبكة اختبار Linea Goerli"
},
"links": {
"message": "الروابط"
},
@ -636,26 +617,15 @@
"reset": {
"message": "إعادة"
},
"resetAccount": {
"message": "إعادة تعيين الحساب"
},
"resetAccountDescription": {
"message": "ستؤدي إعادة تعيين حسابك إلى مسح سجل معاملتك."
},
"restore": {
"message": "استعادة"
},
"revealSeedWords": {
"message": "كشف كلمات عبارات الأمان"
},
"revealSeedWordsDescription": {
"message": "إذا كنت تنوي تغيير المتصفحات أو نقل أجهزة الكمبيوتر في أي وقت، فسوف تحتاج إلى عبارة الأمان هذه للوصول إلى حساباتك. احفظها في مكان آمن وسري."
},
"revealSeedWordsWarning": {
"message": "يمكن استخدام هذه الكلمات لسرقة جميع حساباتك."
},
"revealSeedWordsWarningTitle": {
"message": "لا تشارك هذه الجملة مع أي شخص آخر!"
"message": "يمكن استخدام هذه الكلمات لسرقة جميع حساباتك.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "عنوان جديد لاستدعاء الإجراء عن بعد"
@ -663,9 +633,6 @@
"save": {
"message": "حفظ"
},
"saveAsCsvFile": {
"message": "حفظ كملف CSV"
},
"scanInstructions": {
"message": "ضع رمز الاستجابة السريعة أمام الكاميرا"
},
@ -801,9 +768,6 @@
"terms": {
"message": "شروط الاستخدام"
},
"testFaucet": {
"message": "اختبار Faucet"
},
"tips": {
"message": "المكافآت"
},
@ -922,9 +886,6 @@
"userName": {
"message": "اسم المستخدم"
},
"viewAccount": {
"message": "عرض حساب"
},
"viewContact": {
"message": "عرض جهة الاتصال"
},
@ -934,9 +895,6 @@
"welcomeBack": {
"message": "نرحب بعودتك!"
},
"yesLetsTry": {
"message": "نعم، دعنا نجرب"
},
"youNeedToAllowCameraAccess": {
"message": "أنت بحاجة إلى السماح بالوصول إلى الكاميرا لاستخدام هذه الميزة."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Актив"
},
"attemptToCancel": {
"message": "Опит за отказ?"
},
"attemptToCancelDescription": {
"message": "Подаването на този опит не гарантира, че първоначалната транзакция ще бъде анулирана. Ако опитът за анулиране е успешен, ще ви бъде начислена таксата за транзакцията по-горе."
},
"attemptingConnect": {
"message": "Опит за свързване с blockchain."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Браузърът ви не се поддържа ..."
},
"buyWithWyre": {
"message": "Купете $1 с Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre ви позволява да използвате кредитна карта, за да депозирате $1 право във вашата MetaMask сметка."
},
"bytes": {
"message": "Байта"
},
"cancel": {
"message": "Отказ"
},
"cancellationGasFee": {
"message": "Такса в газ за анулиране "
},
"cancelled": {
"message": "Отменен"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Свързване с тестова мрежа на Goerli"
},
"connectingToLineaTestnet": {
"message": "Свързване с тестова мрежа на Linea Goerli"
},
"connectingToMainnet": {
"message": "Свързване с главната мрежа Ethereum"
},
"continueToWyre": {
"message": "Продължете към Wyre"
},
"contractDeployment": {
"message": "Разгръщане на договор"
},
@ -332,13 +317,6 @@
"general": {
"message": "Общ"
},
"getEther": {
"message": "Вземете етер"
},
"getEtherFromFaucet": {
"message": "Вземете Ether от фосет за $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Тестова мрежа на Goerli"
},
@ -433,6 +411,9 @@
"likeToImportTokens": {
"message": "Искате ли да добавите тези жетони?"
},
"lineatestnet": {
"message": "Тестова мрежа на Linea Goerli"
},
"links": {
"message": "Връзки"
},
@ -635,26 +616,15 @@
"reset": {
"message": "Нулиране"
},
"resetAccount": {
"message": "Нулиране на акаунта"
},
"resetAccountDescription": {
"message": "Нулирането на вашия акаунт ще изчисти историята на транзакциите ви."
},
"restore": {
"message": "Възстановяване"
},
"revealSeedWords": {
"message": "Разкрий думите зародиш"
},
"revealSeedWordsDescription": {
"message": "Ако някога смените браузъра или компютъра си, тази ключова фраза ще Ви трябва за достъп до Вашите акаунти. Запазете я някъде на сигурно и тайно място."
},
"revealSeedWordsWarning": {
"message": "Тези думи могат да бъдат използвани за кражба на всички ваши акаунти."
},
"revealSeedWordsWarningTitle": {
"message": "НЕ споделяйте тази фраза с никого!"
"message": "Тези думи могат да бъдат използвани за кражба на всички ваши акаунти.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Нов URL адрес за RPC"
@ -662,9 +632,6 @@
"save": {
"message": "Запазване"
},
"saveAsCsvFile": {
"message": "Запазване като CSV файл"
},
"scanInstructions": {
"message": "Поставете QR кода пред камерата"
},
@ -800,9 +767,6 @@
"terms": {
"message": "Условия за ползване"
},
"testFaucet": {
"message": "Тест Faucet"
},
"tips": {
"message": "Дарения"
},
@ -921,9 +885,6 @@
"userName": {
"message": "Потребителско име"
},
"viewAccount": {
"message": "Преглед на профила"
},
"viewContact": {
"message": "Преглед на контакта"
},
@ -933,9 +894,6 @@
"welcomeBack": {
"message": "Добре дошли отново!"
},
"yesLetsTry": {
"message": "Да, нека опитаме"
},
"youNeedToAllowCameraAccess": {
"message": "Трябва да разрешите достъпа на камерата, за да използвате тази функция."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "সম্পদ"
},
"attemptToCancel": {
"message": "বাতিল করার চেষ্টা করছেন?"
},
"attemptToCancelDescription": {
"message": "এই প্রচেষ্টাটি জমা দেওয়া আপনার প্রকৃত লেনদেনটি বাতিল হয়ে যাবে এমন নিশ্চয়তা দেয় না। বাতিল করার প্রচেষ্টাটি সফল হলে, আপনাকে উপরের লেনদেন ফী চার্জ করা হবে।"
},
"attemptingConnect": {
"message": "ব্লকচেনে সংযোগ করার চেষ্টা করছে।"
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "আপনার ব্রাউজার সমর্থিত নয়..."
},
"buyWithWyre": {
"message": "Wyre দিয়ে $1 ক্রয় করুন"
},
"buyWithWyreDescription": {
"message": "Wyre আপনার MetaMask অ্যাকাউন্টে সরাসরি $1 জমা করতে আপনাকে একটি ক্রেডিট কার্ড ব্যবহার করতে দেয়।"
},
"bytes": {
"message": "বাইটস"
},
"cancel": {
"message": "বাতিল করুন"
},
"cancellationGasFee": {
"message": "বাতিল করার গ্যাস ফী"
},
"cancelled": {
"message": "বাতিল করা হয়েছে"
},
@ -181,9 +166,6 @@
"connectingToMainnet": {
"message": "মুখ্য Ethereum নেটওয়ার্কের সাথে সংযোগ করছে"
},
"continueToWyre": {
"message": "Wyre এ অবিরত রাখুন"
},
"contractDeployment": {
"message": "কন্ট্র্যাক্ট নিয়োজন"
},
@ -336,13 +318,6 @@
"general": {
"message": "সাধারণ"
},
"getEther": {
"message": "ইথার পান"
},
"getEtherFromFaucet": {
"message": "$1 এর জন্য একটি ফসেট থেকে ইথার পান",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "গোয়েরলি টেস্ট নেটওয়ার্ক"
},
@ -639,26 +614,15 @@
"reset": {
"message": "রিসেট করুন"
},
"resetAccount": {
"message": "অ্যাকাউন্ট রিসেট করুন"
},
"resetAccountDescription": {
"message": "আপনার অ্যাকাউন্ট রিসেট করা আপনার লেনদেনের ইতিহাসকে মুছে পরিস্কার করবে।"
},
"restore": {
"message": "পুনরুদ্ধার করুন"
},
"revealSeedWords": {
"message": "সীড শব্দগুলি প্রকাশ করুন"
},
"revealSeedWordsDescription": {
"message": "আপনি কখনও ব্রাউজার পরিবর্তন করলে বা এক কম্পিউটার থেকে অন্য কম্পিউটারে গেলে, আপনাকে আপনার অ্যাকাউন্ট অ্যাক্সেস করার জন্য এই সীড ফ্রেজটি লাগবে। সেগুলি নিরাপদ ও গোপনীয় কোনো স্থানে সংরক্ষণ করুন। "
},
"revealSeedWordsWarning": {
"message": "আপনার সমস্ত অ্যাকাউন্ট চুরি করতে এই শব্দগুলি ব্যবহার করা যাবে।"
},
"revealSeedWordsWarningTitle": {
"message": "এই ফ্রেজটি কারোর সাথে শেয়ার করবেন না!"
"message": "আপনার সমস্ত অ্যাকাউন্ট চুরি করতে এই শব্দগুলি ব্যবহার করা যাবে।",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "নতুন RPC URL"
@ -666,9 +630,6 @@
"save": {
"message": "সেভ করুন"
},
"saveAsCsvFile": {
"message": "CSV ফাইল হিসাবে সংরক্ষণ করুন"
},
"scanInstructions": {
"message": "QR কোডটি আপনার ক্যামেরার সামনে ধরুন"
},
@ -804,9 +765,6 @@
"terms": {
"message": "ব্যবহারের শর্তাবলী"
},
"testFaucet": {
"message": "টেস্ট ফসেট"
},
"tips": {
"message": "অর্থসাহায্য এবং পরামর্শ"
},
@ -925,9 +883,6 @@
"userName": {
"message": "ইউজারনেম"
},
"viewAccount": {
"message": "আ্যাকাউন্ট দেখুন"
},
"viewContact": {
"message": "পরিচিতি দেখুন"
},
@ -937,9 +892,6 @@
"welcomeBack": {
"message": "পুনরায় স্বাগত!"
},
"yesLetsTry": {
"message": "হ্যাঁ, চেষ্টা করা যাক"
},
"youNeedToAllowCameraAccess": {
"message": "এই বৈশিষ্ট্যটি ব্যবহার করতে আপনাকে ক্যামেরা অ্যাক্সেস করার অনুমতি দিতে হবে।"
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Actius"
},
"attemptToCancel": {
"message": "Estàs provant de cancel·lar?"
},
"attemptToCancelDescription": {
"message": "Enviar aquesta temptativa no garanteix que la teva transacció original sigui cancel·lada. Si la temptativa de cancel·lació té èxit, se't carregarà la tarifa de transacció de més amunt."
},
"attemptingConnect": {
"message": "Intentant conectar a blockchain."
},
@ -130,18 +124,9 @@
"browserNotSupported": {
"message": "El teu navegador no és suportat..."
},
"buyWithWyre": {
"message": "Compra $1 amb Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre et permet utilitzar una targeta de crèdit per dipositar $1 directe al teu compte MetaMask."
},
"cancel": {
"message": "Cancel·la"
},
"cancellationGasFee": {
"message": "Preu de cancel·lació del gas"
},
"cancelled": {
"message": "Cancel·lat"
},
@ -175,12 +160,12 @@
"connectingToGoerli": {
"message": "Connectant a Xarxa de Prova Goerli"
},
"connectingToLineaTestnet": {
"message": "Connectant a Xarxa de Prova Linea Goerli"
},
"connectingToMainnet": {
"message": "Connectant a Xarxa Principal Ethereum"
},
"continueToWyre": {
"message": "Continua a Wyre"
},
"contractDeployment": {
"message": "Desplegament de Contracte"
},
@ -326,13 +311,6 @@
"gasUsed": {
"message": "Gas utilitzat"
},
"getEther": {
"message": "Aconsegueix Ether"
},
"getEtherFromFaucet": {
"message": "Aconsegueix Ether d'una aixeta per $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Xarxa de test Goerli"
},
@ -424,6 +402,9 @@
"likeToImportTokens": {
"message": "T'agradaria afegir aquestes fitxes?"
},
"lineatestnet": {
"message": "Xarxa de test Linea Goerli"
},
"links": {
"message": "Enllaços"
},
@ -617,26 +598,15 @@
"reset": {
"message": "Restableix"
},
"resetAccount": {
"message": "Reiniciar Compte"
},
"resetAccountDescription": {
"message": "Reiniciar el teu compte esborrarà el teu historial de transaccions."
},
"restore": {
"message": "Restaura"
},
"revealSeedWords": {
"message": "Revelar Paraules de Recuperació"
},
"revealSeedWordsDescription": {
"message": "Si mai canvies el navegador o l'ordinador, necessitaràs aquesta frase de recuperació per accedir als teus comptes. Guarda-la a un lloc segur i secret."
},
"revealSeedWordsWarning": {
"message": "Aquestes paraules poden ser utilitzades per a robar tots els teus comptes."
},
"revealSeedWordsWarningTitle": {
"message": "NO comparteixis aquesta frase amb ningú!"
"message": "Aquestes paraules poden ser utilitzades per a robar tots els teus comptes.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Nova URL de RPC"
@ -644,9 +614,6 @@
"save": {
"message": "Desa"
},
"saveAsCsvFile": {
"message": "Guarda com a Arxiu CSV"
},
"scanInstructions": {
"message": "Col·loca el codi QR davant la teva càmera"
},
@ -894,9 +861,6 @@
"userName": {
"message": "Nom d'usuari"
},
"viewAccount": {
"message": "Mostra el compte"
},
"viewContact": {
"message": "Veure Contacte"
},
@ -906,9 +870,6 @@
"welcomeBack": {
"message": "Benvingut de nou!"
},
"yesLetsTry": {
"message": "Sí, provem"
},
"youNeedToAllowCameraAccess": {
"message": "Has de permetre l'accés a la càmera per fer servir aquesta característica."
},

View File

@ -140,13 +140,6 @@
"gasPrice": {
"message": "Cena paliva (GWEI)"
},
"getEther": {
"message": "Získejte Ether"
},
"getEtherFromFaucet": {
"message": "Získejte Ether z faucetu za $1.",
"description": "Displays network name for Ether faucet"
},
"here": {
"message": "zde",
"description": "as in -click here- for more information (goes with troubleTokenBalances)"
@ -289,14 +282,12 @@
"required": {
"message": "Povinné"
},
"resetAccount": {
"message": "Resetovat účet"
},
"revealSeedWords": {
"message": "Zobrazit slova klíčové fráze"
},
"revealSeedWordsWarning": {
"message": "Nebnovujte slova klíčové fráze na veřejnosti! Tato slova mohou být použita k odcizení veškerých vyašich účtů."
"message": "Nebnovujte slova klíčové fráze na veřejnosti! Tato slova mohou být použita k odcizení veškerých vyašich účtů.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"save": {
"message": "Uložit"
@ -358,9 +349,6 @@
"terms": {
"message": "Podmínky použití"
},
"testFaucet": {
"message": "Testovací faucet"
},
"to": {
"message": "Komu"
},
@ -401,9 +389,6 @@
"usedByClients": {
"message": "Používána různými klienty"
},
"viewAccount": {
"message": "Zobrazit účet"
},
"visitWebSite": {
"message": "Navštivte naši stránku"
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Aktiv"
},
"attemptToCancel": {
"message": "Forsøg på Annullering?"
},
"attemptToCancelDescription": {
"message": "Indsendelse af dette forsøg garanterer ikke, at din originale transaktion annulleres. Hvis annulleringsforsøget lykkes, vil du blive opkrævet ovenstående transaktionsgebyr."
},
"attemptingConnect": {
"message": "Forsøger at oprette forbindelse til blokkæden."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Din browser er ikke understøttet..."
},
"buyWithWyre": {
"message": "Køb $1 med Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre lader dig bruge et kreditkort til at indbetale $1 på din MetaMask-konto."
},
"bytes": {
"message": "Byte"
},
"cancel": {
"message": "Afbryd"
},
"cancellationGasFee": {
"message": "Gebyr for brændstofannullering"
},
"cancelled": {
"message": "Annulleret"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Opretter forbindelse til Goerli Testnetværk"
},
"connectingToLineaTestnet": {
"message": "Opretter forbindelse til Linea Goerli Testnetværk"
},
"connectingToMainnet": {
"message": "Forbinder til dit Primære Ethereum Netværk"
},
"continueToWyre": {
"message": "Fortsæt til Wyre"
},
"contractDeployment": {
"message": "Kontraktanvendelse"
},
@ -332,13 +317,6 @@
"general": {
"message": "Generelt"
},
"getEther": {
"message": "Hent Ether"
},
"getEtherFromFaucet": {
"message": "Hent Ether fra en hane til $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli-testnetværk"
},
@ -430,6 +408,9 @@
"likeToImportTokens": {
"message": "Ønsker du at tilføje disse tokens?"
},
"lineatestnet": {
"message": "Linea-testnetværk"
},
"loadMore": {
"message": "Indlæs Mere"
},
@ -620,26 +601,15 @@
"reset": {
"message": "Nulstil"
},
"resetAccount": {
"message": "Nulstil Konto"
},
"resetAccountDescription": {
"message": "Nulstilling af din konto vil rydde din transaktionshistorik."
},
"restore": {
"message": "Gendan"
},
"revealSeedWords": {
"message": "Vis Seedord"
},
"revealSeedWordsDescription": {
"message": "Hvis du nogensinde skifter browsere eller flytter computere, har du brug for denne backupsætning for at få adgang til dine konti. Gem den et sted sikkert og hemmeligt."
},
"revealSeedWordsWarning": {
"message": "Disse ord kan bruges til at stjæle alle dine konti."
},
"revealSeedWordsWarningTitle": {
"message": "DEL IKKE denne sætning med nogen!"
"message": "Disse ord kan bruges til at stjæle alle dine konti.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Ny RPC-URL"
@ -647,9 +617,6 @@
"save": {
"message": "Gem"
},
"saveAsCsvFile": {
"message": "Gem som CSV-fil"
},
"scanInstructions": {
"message": "Placer QR-koden foran dit kamera"
},
@ -779,9 +746,6 @@
"terms": {
"message": "Brugsbetingelser"
},
"testFaucet": {
"message": "Testhane"
},
"tips": {
"message": "Donationer"
},
@ -894,9 +858,6 @@
"userName": {
"message": "Brugernavn"
},
"viewAccount": {
"message": "Vis konto"
},
"viewContact": {
"message": "Vis kontakt"
},
@ -906,9 +867,6 @@
"welcomeBack": {
"message": "Velkommen tilbage!"
},
"yesLetsTry": {
"message": "Ja, lad os prøve"
},
"youNeedToAllowCameraAccess": {
"message": "Du skal tillade kameraadgang for at bruge denne funktion."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Prioritätsgebühr (alias „Miner Tip“) geht direkt an Miner und veranlasst sie, Ihre Transaktion zu priorisieren."
},
"affirmAgree": {
"message": "Ich stimme zu"
},
"airgapVault": {
"message": "AirGap-Tresor"
},
@ -332,6 +329,9 @@
"message": "$1 erlauben, bis zu dem folgenden Betrag abzuheben und auszugeben:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Gehen Sie immer mit Sorgfalt vor, bevor Sie irgendwelche Anfragen genehmigen."
},
"amount": {
"message": "Betrag"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Genehmigen"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Genehmigen"
},
"approveSpendingCap": {
"message": "$1 Ausgabenlimit genehmigen",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Dies gestattet es Dritten, ohne weitere Benachrichtigung auf die folgenden NFTs zuzugreifen und diese zu übertragen, bis Sie dieses Zugriffsrecht widerrufen."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Wenn Sie versuchen, Assets direkt von einem Netzwerk in ein anderes zu senden, kann dies zu einem dauerhaften Asset-Verlust führen. Verwenden Sie unbedingt eine Bridge."
},
"attemptToCancel": {
"message": "Stornierung versuchen?"
},
"attemptToCancelDescription": {
"message": "Dieser Versuch garantiert nicht, dass Ihre ursprüngliche Transaktion storniert wird. Bei Erfolg des Stornierungsversuchs wird Ihnen die oben genannte Transaktionsgebühr in Rechnung gestellt."
},
"attemptingConnect": {
"message": "Versuch mit der Blockchain zu verbinden."
},
@ -418,7 +420,7 @@
"message": "Tokens automatisch erkennen"
},
"autoDetectTokensDescription": {
"message": "Wir verwenden APIs von Drittanbietern, um neue Token zu erkennen und anzuzeigen, die in Ihr Wallet gesendet werden. Schalten Sie dies ab, wenn Sie keine Daten von diesen Diensten beziehen möchten. $1",
"message": "Wir verwenden APIs von Drittanbietern, um neue Token zu erkennen und anzuzeigen, die in Ihr Wallet gesendet werden. Schalten Sie dies aus, wenn Sie keine Daten von diesen Diensten beziehen möchten. $1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "MetaMask-Version"
},
"betaPortfolioSite": {
"message": "Beta-Portfolio-Seite"
},
"betaTerms": {
"message": "Beta-Nutzungsbedingungen"
},
@ -535,38 +534,9 @@
"message": "$1 kaufen",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "1 $ mit Coinbase Pay kaufen",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Sie können mit Ihrem Coinbase-Konto bequem Kryptowährungen kaufen oder überweisen.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "$1 mit MoonPay kaufen",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay unterstützt gängige Zahlungsmethoden, einschließlich Visa, Mastercard, Apple/Google/ Samsung Pay und Banküberweisungen in über 145 Ländern. Token werden auf Ihr MetaMask-Konto eingezahlt."
},
"buyCryptoWithTransak": {
"message": "$1 mit Transak kaufen",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak unterstützt Kredit- und Debitkarten, Apple Pay, MobiKwik und Banküberweisungen (je nach Standort) in über 100 Ländern. $1-Einzahlungen direkt auf Ihr MetaMask-Konto.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Jetzt kaufen"
},
"buyWithWyre": {
"message": "$1 mit Wyre kaufen"
},
"buyWithWyreDescription": {
"message": "Einfaches Onboarding für Käufe bis zu 1000 $. Schnelle interaktive Überprüfung von Käufen mit hohem Limit. Unterstützt Debit-/Kreditkarte, Apple Pay, Banküberweisungen. Verfügbar in über 100 Ländern. Einzahlung von Token auf Ihr MetaMask-Konto"
},
"bytes": {
"message": "Bytes"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Tausch kostenlos abbrechen"
},
"cancellationGasFee": {
"message": "Stornierungs-Gasgebühr"
},
"cancelled": {
"message": "Abgebrochen"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Sie müssen MetaMask unter Google Chrome nutzen, um sich mit Ihrem Hardware-Wallet zu verbinden."
},
"clear": {
"message": "Löschen"
},
"clearActivity": {
"message": "Aktivitäten und Nonce-Daten löschen"
},
"clearActivityButton": {
"message": "Aktivitäten-Tab-Daten löschen"
},
"clearActivityDescription": {
"message": "Dies setzt die Nonce des Kontos zurück und löscht Daten aus dem Aktivitäten-Tab in Ihrem Wallet. Nur das aktuelle Konto und Netzwerk sind betroffen. Ihr Guthaben und eingehenden Transaktionen ändern sich nicht."
},
"clickToConnectLedgerViaWebHID": {
"message": "Klicken Sie hier, um Ihren Ledger über WebHID zu verbinden",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Schließen"
},
"collectibleAddFailedMessage": {
"message": "NFT kann nicht hinzugefügt werden, da die Eigentumsangaben nicht übereinstimmen. Stellen Sie sicher, dass Sie die richtigen Informationen eingegeben haben."
},
"collectibleAddressError": {
"message": "Dieses Token ist ein NFT. Bei $1 hinzufügen",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Bestätigen"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Verbindungsaufbau zum Goerli-Testnetzwerk"
},
"connectingToLineaTestnet": {
"message": "Verbindungsaufbau zum Linea-Testnetzwerk"
},
"connectingToMainnet": {
"message": "Verbinde zum Ethereum Mainnet"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Weiter"
},
"continueToCoinbasePay": {
"message": "Weiter zu Coinbase Pay"
},
"continueToMoonPay": {
"message": "Weiter zu MoonPay"
},
"continueToTransak": {
"message": "Weiter zur Transaktion"
},
"continueToWyre": {
"message": "Weiter zu Wyre"
},
"contract": {
"message": "Vertrag"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Kopiert!"
"message": "Kopiert."
},
"copyAddress": {
"message": "Adresse in die Zwischenablage kopieren"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Passwort erstellen"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Währungsumrechnung"
},
"currencyRateCheckToggle": {
"message": "Guthaben und Token-Preisprüfer anzeigen"
},
"currencyRateCheckToggleDescription": {
"message": "Wie verwenden $1- und $2-APIs, um Ihr Guthaben und den Tokenpreis anzuzeigen. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Währungssymbol"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Einzahlung"
},
"depositCrypto": {
"message": "$1 einzahlen",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Mehr erfahren"
},
@ -992,15 +964,108 @@
"description": {
"message": "Beschreibung"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Dieser Fehler könnte unregelmäßig auftreten, also versuchen Sie, Ihr die Erweiterung neu zu starten oder MetaMask Desktop zu deaktivieren."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask hat Probleme beim Starten"
},
"desktopConnectionLostErrorDescription": {
"message": "Bitte stellen Sie sicher, dass die Desktop-App ausgeführt wird oder deaktivieren Sie MetaMask Desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "MetaMask Desktop-Verbindung wurde unterbrochen"
},
"desktopDisableButton": {
"message": "Desktop-App deaktivieren"
},
"desktopDisableErrorCTA": {
"message": "MetaMask Desktop deaktivieren"
},
"desktopEnableButton": {
"message": "Desktop-App aktivieren"
},
"desktopEnableButtonDescription": {
"message": "Klicken, um alle Hintergrundprozesse in der Desktop-App auszuführen."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Zurück zur Seite „Einstellungen“"
},
"desktopErrorRestartMMCTA": {
"message": "MetaMask neu starten"
},
"desktopNotFoundErrorCTA": {
"message": "MetaMask Desktop herunterladen"
},
"desktopNotFoundErrorDescription1": {
"message": "Bitte stellen Sie sicher, dass die MetaMask Desktop-App ausgeführt wird."
},
"desktopNotFoundErrorDescription2": {
"message": "Sollten Sie keine Desktop-App installiert haben, laden Sie diese bitte von der MetaMask-Webseite herunter."
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Desktop wurde nicht gefunden"
},
"desktopOpenOrDownloadCTA": {
"message": "MetaMask Desktop öffnen"
},
"desktopOutdatedErrorCTA": {
"message": "MetaMask Desktop aktualisieren"
},
"desktopOutdatedErrorDescription": {
"message": "Ihre MetaMask Desktop-App muss aktualisiert werden."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop-App ist veraltet"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "MetaMask-Erweiterung aktualisieren"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Ihre MetaMask-Erweiterung muss aktualisiert werden."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask-Erweiterung ist veraltet"
},
"desktopPageDescription": {
"message": "Bei erfolgreicher Kopplung wird die Erweiterung neu gestartet und Sie müssen Ihr Passwort erneut eingeben."
},
"desktopPageSubTitle": {
"message": "Öffnen Sie MetaMask Desktop und geben Sie diesen Code ein"
},
"desktopPageTitle": {
"message": "Mit Desktop koppeln"
},
"desktopPairedWarningDeepLink": {
"message": "Gehen Sie zu den Einstellungen in MetaMask Desktop"
},
"desktopPairedWarningDescription": {
"message": "Wenn Sie eine neue Kopplung starten möchten, entfernen Sie bitte die aktuelle Verbindung."
},
"desktopPairedWarningTitle": {
"message": "MM Desktop ist bereits gekoppelt"
},
"desktopPairingExpireMessage": {
"message": "Code läuft in $1 Sekunden ab"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Zur MetaMask-Startseite zurückkehren"
},
"desktopUnexpectedErrorDescription": {
"message": "Prüfen Sie MetaMask Desktop, um die Verbindung wiederherzustellen"
},
"desktopUnexpectedErrorTitle": {
"message": "Da hat etwas nicht geklappt ..."
},
"details": {
"message": "Details"
},
"directDepositCrypto": {
"message": "Direkt $1 einzahlen"
},
"directDepositCryptoExplainer": {
"message": "Wenn Sie bereits über $1 verfügen, ist eine direkte Einzahlung der schnellste Weg, um $1 auf Ihr Konto einzuzahlen."
},
"disabledGasOptionToolTipMessage": {
"message": "“$1” ist deaktiviert, weil es nicht das Minimum einer zehnprozentigen Erhöhung gegenüber der ursprünglichen Gasgebühr erfüllt.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Verwenden Sie die OpenSea's API, um NFT-Daten abzurufen. Die NFT-Auto-Erkennung basiert auf der OpenSea's API und wird nicht verfügbar sein, wenn diese deaktiviert ist."
},
"enableOpenSeaSecurityProvider": {
"message": "Sicherheitsanbieter aktivieren"
},
"enableSmartTransactions": {
"message": "Intelligente Transaktionen ermöglichen"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Auf Etherscan anzeigen"
},
"expandExperience": {
"message": "Erweitern Sie Ihre Web3-Erfahrung"
},
"expandView": {
"message": "Ansicht erweitern"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Details ansehen",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Hinzugefügt am",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Verwendetes Gas"
},
"gdprMessage": {
"message": "Diese Daten werden zusammengeführt und sind daher im Sinne der Allgemeinen Datenschutzverordnung (EU) 2016/679 anonym. Weitere Informationen zu unseren Datenschutzpraktiken finden Sie in unserem $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Datenschutzrichtlinie hier",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Allgemein"
},
"getEther": {
"message": "Ether holen"
},
"getEtherFromFaucet": {
"message": "Ether für das $1-Netzwerk von einem Faucet holen.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Erhalten Sie Warnungen von OpenSea, wenn Sie eine bekannte bösartige Anfrage erhalten."
},
"goBack": {
"message": "Zurück"
@ -1545,6 +1598,32 @@
"history": {
"message": "Verlauf"
},
"holdToReveal": {
"message": "Halten, um GWP anzuzeigen"
},
"holdToRevealContent1": {
"message": "Ihre geheime Wiederherstellungsphrase bietet $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "vollen Zugriff auf Ihr Wallet und Ihr Guthaben.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Teilen Sie sie mit niemandem. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "Der MetaMask-Support wird Sie nicht danach fragen,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "Betrüger aber schon.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Bewahren Sie Ihre GWP sicher auf"
},
"ignoreAll": {
"message": "Alle ignorieren"
},
@ -1577,7 +1656,7 @@
"message": "NFT-Seite importieren"
},
"importNFTTokenIdToolTip": {
"message": "Die ID eines Sammelobjekts ist eine eindeutige Kennung, da keine zwei NFTs gleich sind. Auch diese Nummer finden Sie in OpenSea unter „Details“. Notieren Sie sie oder kopieren Sie diese in Ihre Zwischenablage."
"message": "Die ID eines NFTs ist eine eindeutige Kennung, da keine zwei NFTs gleich sind. Auch diese Nummer finden Sie in OpenSea unter „Details“. Notieren Sie diese oder kopieren Sie sie in Ihre Zwischenablage."
},
"importNFTs": {
"message": "NFTs importieren"
@ -1724,9 +1803,6 @@
"message": "JSON Datei",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "um ihre Token und NFTs über Konten und Netzwerke hinweg im Auge behalten zu können."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Zuletzt verbunden"
},
"lastPriceSold": {
"message": "Letzter Verkaufspreis"
},
"lastSold": {
"message": "Zuletzt verkauft"
},
"learnCancelSpeeedup": {
"message": "Erfahren Sie, wie Sie $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Möchtest du diese Token hinzufügen?"
},
"lineatestnet": {
"message": "Linea-Testnetzwerk"
},
"link": {
"message": "Link"
},
@ -1873,9 +1958,6 @@
"malformedData": {
"message": "Fehlerhafte Daten"
},
"manageSnaps": {
"message": "Verwalten Sie Ihre installierten Snaps"
},
"max": {
"message": "Max."
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "MetaMask-Version"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Erlaubt Ihnen immer die Abmeldung über Einstellungen"
},
"metametricsCommitmentsBoldNever": {
"message": "Nie",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask wird.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 Erfassen Sie Ihre vollständige IP-Adresse",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$ erfassen Sie Schlüssel, Adressen, Transaktionen, Salden, Hashes oder persönliche Informationen",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 Daten für Gewinn verkaufen. Niemals!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Anonymisierte Ereignisse für Klicks und Seitenaufrufe senden"
},
"metametricsHelpImproveMetaMask": {
"message": "Hilf uns MetaMask zu verbessern"
},
"metametricsOptInDescription": {
"message": "MetaMask möchte Nutzungsdaten sammeln, um besser zu verstehen, wie unsere Nutzer mit der Erweiterung umgehen. Diese Daten werden verwendet, um die Benutzerfreundlichkeit und das Benutzererlebnis unseres Produkts und des Ethereum-Ökosystems kontinuierlich zu verbessern."
"metrics": {
"message": "Metriken"
},
"mismatchedChainLinkText": {
"message": "die Netzwerkdetails überprüfen",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "Die Funktion \"Mit Erweiterung synchronisieren\" ist vorübergehend deaktiviert. Wenn Sie Ihre Erweiterungs-Wallet auf MetaMask mobile verwenden möchten, dann gehen Sie in Ihrer mobilen App zurück zu den Einrichtungsoptionen für die Wallet und wählen Sie die Option \"Import mit Geheime Wiederherstellungsphrase\". Verwenden Sie die Geheime Wiederherstellungsphrase Ihrer Erweiterungs-Wallet, um Ihre Wallet in Mobile zu importieren."
},
"moreComingSoon": {
"message": "Mehr in Kürze ..."
},
"mustSelectOne": {
"message": "Du musst mindestens 1 Token auswählen."
},
@ -1992,10 +2049,6 @@
"message": "Das native Token dieses Netzwerks ist $1. Dieses Token wird für die Gasgebühr verwendet.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Um mit dezentralen Anwendungen zu interagieren, die MetaMask verwenden, benötigen Sie $1 in Ihrer Wallet.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Brauchen Sie Hilfe? Kontaktieren Sie $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Konto $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Sammelobjekt wurde erfolgreich hinzugefügt!"
},
"newContact": {
"message": "Neuer Kontakt"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "“$1” wurde erfolgreich hinzugefügt!"
},
"newNftAddedMessage": {
"message": "NFT wurde erfolgreich hinzugefügt!"
},
"newPassword": {
"message": "Neues Passwort (min. 8 Zeichen)"
},
@ -2138,8 +2191,18 @@
"message": "Nonce ist höher als vorgeschlagen nonce von $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "NFT kann nicht hinzugefügt werden, da die Eigentumsangaben nicht übereinstimmen. Stellen Sie sicher, dass Sie die richtigen Informationen eingegeben haben."
},
"nftAddressError": {
"message": "Dieses Token ist ein NFT. Bei $1 hinzufügen",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Haftungsausschluss: MetaMask bezieht die Mediendatei aus der Quellen-URL. Diese URL wird manchmal vom Markt, auf dem das NFT erstellt wurde, geändert."
},
"nftOptions": {
"message": "NFT-Optionen"
},
"nftTokenIdPlaceholder": {
"message": "Token-ID eingeben"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Keine Snaps installiert"
},
"noThanks": {
"message": "Nein Danke"
},
"noThanksVariant2": {
"message": "Nein, danke."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Nicht genügend Gas"
},
"notNow": {
"message": "Nicht jetzt"
},
"notifications": {
"message": "Benachrichtigungen"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Sicherheits- und Datenschutzeinstellungen anzeigen"
},
"notifications17Description": {
"message": "Dieses Update gibt Ihnen mehr Möglichkeiten zur Kontrolle Ihrer Privatsphäre. Wir haben mehr Transparenz in Hinsicht auf die Sammlung von Daten sowie deutlichere Optionen bezüglich des Teilens hinzugefügt. Ändern Sie Ihre Einstellungen oder löschen Sie die Erweiterungsnutzung über Sicherheits- und Datenschutzeinstellungen."
},
"notifications17Title": {
"message": "Sicherheits- und Datenschutzeinstellungen"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Im Block-Explorer öffnen"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "OpenSea-Sicherheitsanbieter"
},
"openSeaDescription": {
"message": "OpenSea ist der erset Sicherheitsanbieter für diese Funktion. Mehr Anbieter folgen in Kürze!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Optional"
},
"optionalWithParanthesis": {
"message": "(Optional)"
},
"options": {
"message": "Optionen"
},
"or": {
"message": "oder"
},
@ -2564,6 +2639,9 @@
"message": "sonstige Snaps",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Ihr Browser ist veraltet. Wenn Sie Ihren Browser nicht aktualisieren, können Sie keine Sicherheits-Patches und neue Funktionen von MetaMask erhalten."
},
"padlock": {
"message": "Schloss"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "In diesem Update entzogen"
},
"permission_accessNamedSnap": {
"message": "Mit $1 verbinden.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Zugriff auf das Internet.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Verbinden Sie sich mit dem $1-Snap.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Regelmäßige Transaktionen planen und ausführen.",
@ -2671,6 +2753,10 @@
"message": "Verwalten Sie Ihre „$1“-Konten und Vermögenswerte.",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Verwalten Sie Ihre $1-Konten und Vermögenswerte.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Ihre Saten speichern und auf Ihrem Gerät verwalten.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Öffentlichen Key für $1 ($2) anzeigen.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Öffentlichen Key für $1 anzeigen.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Berechtigungen"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Beliebte benutzerdefinierte Netzwerke"
},
"portfolioSite": {
"message": "Portfolio-Seite"
"portfolio": {
"message": "Portfolio"
},
"preferredLedgerConnectionType": {
"message": "Bevorzugter Ledger-Verbindungstyp",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "NFT entfernen"
},
"removeNftMessage": {
"message": "NFT wurde erfolgreich entfernt!"
},
"removeSnap": {
"message": "Snap entfernen"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "ersetzen"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Der Sicherheitsanbieter hat keine weiteren Details zur Verfügung gestellt"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Anfrage als bösartig gemeldet"
},
"requestMayNotBeSafe": {
"message": "Anfrage könnte nicht sicher sein"
},
"requestMayNotBeSafeError": {
"message": "Der Sicherheitsdienstleister hat keine bekannten bösartigen Aktivitäten festgestellt, aber es ist möglicherweise trotzdem nicht sicher, fortzufahren."
},
"requestNotVerified": {
"message": "Anfrage nicht verifiziert"
},
"requestNotVerifiedError": {
"message": "Aufgrund eines Fehlers wurde diese Anfrage nicht vom Sicherheitsanbieter verifiziert. Gehen Sie behutsam vor."
},
"requestsAwaitingAcknowledgement": {
"message": "Anfragen warten auf Bestätigung"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Zurücksetzen"
},
"resetAccount": {
"message": "Konto zurücksetzen"
},
"resetAccountDescription": {
"message": "Durch das Zurücksetzen Ihres Kontos wird Ihr Transaktionsverlauf gelöscht."
},
"resetWallet": {
"message": "Wallet zurücksetzen"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Seed-Wörterfolge anzeigen"
},
"revealSeedWordsDescription": {
"message": "Wenn Sie einmal Ihren Browser oder Computer wechseln, benötigen Sie diesen Seed-Schlüssel, um auf Ihre Konten zuzugreifen. Bewahren Sie ihn an einem sicheren und geheimen Ort auf."
"revealSeedWordsDescription1": {
"message": "Die $1 bietet $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask ist ein $1. Das bedeutet, dass Sie der Besitzer Ihrer GWP sind.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "vollen Zugriff auf Ihr Wallet und Ihr Guthaben.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "verwaltungsloses Wallet"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Geheime Wiederherstellungsphrase (GWP)"
},
"revealSeedWordsText": {
"message": "Text"
},
"revealSeedWordsWarning": {
"message": "Bitte niemals deine Seed-Wörterfolge an einem öffentlichen Ort kenntlich machen. Mit diesen Wörtern können alle deine Accounts gestohlen werden."
"message": "Stellen Sie sicher, dass niemand auf Ihren Bildschirm schaut. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "Zeigen Sie diesen Schlüssel KEINER ANDEREN PERSON!"
"revealSeedWordsWarning2": {
"message": "Der MetaMask Support wird Sie nie danach fragen.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Seed-Phrase anzeigen"
@ -2941,11 +3068,11 @@
"message": "Überprüfen SIe Ihre Ausgabegrenze"
},
"revokeAllTokensTitle": {
"message": "Erlaubnis zum Zugriff auf alle Ihre $1 entziehen?",
"message": "Erlaubnis zum Zugriff auf alle Ihre $1 sowie deren Übertragung entziehen?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "Wenn Sie diese Erlaubnis entziehen, wird folgende/s/r $1 nicht mehr dazu in der Lage sein, auf Ihr/e/n $2 zuzugreifen.",
"message": "Wenn Sie diese Erlaubnis entziehen, werden Dritte ohne weiteren Hinweis keinen Zugriff mehr auf alle Ihre $1 haben und diese nicht mehr übertragen können.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Speichern"
},
"saveAsCsvFile": {
"message": "Als CSV-Datei speichern"
},
"scanInstructions": {
"message": "Platzieren Sie den QR-Code vor Ihrer Kamera."
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Wenn Sie Ihre bestehenden Ledger-Konten nachfolgend nicht sehen, versuchen Sie, die Pfade zu \"Legacy (MEW / MyCrypto)\" zu ändern"
},
"selectProvider": {
"message": "Anbieter auswählen:"
},
"selectType": {
"message": "Typ auswählen"
},
@ -3246,16 +3373,9 @@
"message": "Sie gewähren dem Snap „$1“ wichtige $2-Zugriffsrechte. Dies kann nicht rückgängig gemacht werden und gibt „$1“ Kontrolle über Ihre $2-Konten und Vermögenswerte. Stellen Sie sicher, dass Sie „$1“ vertrauen, bevor Sie fortfahren.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Für diesen Snap werden die folgenden Berechtigungen beantragt:"
},
"snapUpdate": {
"message": "Snap aktualisieren"
},
"snapUpdateExplanation": {
"message": "$1 benötigt eine neuere Version Ihres Snaps.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snaps"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Ausgabelimit zu groß"
},
"spendingCap": {
"message": "Ausgabenlimit"
},
"spendingCapError": {
"message": "Fehler: Nur Zahlen eingeben"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Nicht verbunden"
},
"staySafeWithOpenSea": {
"message": "Mit OpenSea sicher bleiben"
},
"step1LatticeWallet": {
"message": "Verbinden Sie Ihr Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "MetaMask Gebühr"
},
"swapMetaMaskFeeDescription": {
"message": "Wir finden jedes Mal den besten Kurs bei den besten Liquiditätsquellen. Eine Gebühr von $1% ist automatisch darin enthalten.",
"message": "Die Gebühr von $1% ist automatisch in diesem Angebot enthalten. Sie zahlen sie als Gegenleistung für eine Lizenz zur Nutzung der Software von MetaMask zur Aggregation von Liquiditätsanbieterinformationen.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Nutzungsbedingungen"
},
"testFaucet": {
"message": "Testfaucet"
},
"testNetworks": {
"message": "Test-Netzwerke"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Was Sie beachten sollten:"
},
"thisIsBasedOn": {
"message": "Dies basiert auf Informationen von "
},
"thisServiceIsExperimental": {
"message": "Dieser Dienst ist experimentell"
},
"time": {
"message": "Zeit"
},
@ -3914,6 +4043,12 @@
"message": "An: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Aktivieren Sie dies, um Dapps zu erlauben, Ihre Unterschrift über eth_sign-Anfragen anzufordern. eth_sign ist eine offene Unterzeichnungsmethode, mit der Sie einen beliebigen Hash unterzeichnen können, wodurch ein gefährliches Phishing-Risiko entsteht. Unterzeichnen Sie eth_sign-Anfragen nur, wenn Sie lesen können, was Sie unterzeichnen und der Quelle der Anfrage vertrauen."
},
"toggleEthSignField": {
"message": "eth_sign-Anfragen ein- oder ausschalten"
},
"toggleTestNetworks": {
"message": "$1 Test-Netzwerke",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Der Token wurde bereits hinzugefügt."
},
"tokenAutoDetection": {
"message": "Automatische Token-Erkennung"
},
"tokenContractAddress": {
"message": "Token-Vertragsadresse"
},
@ -4067,7 +4205,7 @@
"message": "Sicherheitsprüfung der Transaktion"
},
"transactionSecurityCheckDescription": {
"message": "Aktivieren Sie dies, um einer dritten Partei (OpenSea) zu gestatten, alle Ihre Transaktionen zu überprüfen, Signatur-Anfragen zu stellen und Sie vor bekannten bösartigen Anfragen zu schützen."
"message": "Wir verwenden APIs von Drittanbietern, um Risiken bei unsignierten Transaktionen und Signaturanfragen zu erkennen und anzuzeigen, bevor Sie diese signieren. Diese Dienste haben Zugriff auf Ihre unsignierten Transaktions- und Signaturanfragen, Ihre Kontoadresse und Ihre bevorzugte Sprache."
},
"transactionSubmitted": {
"message": "Transaktion mit einer Gasgebühr von $1 bei $2 übermittelt."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Erneut versuchen"
},
"tryOur": {
"message": "Probieren Sie unser"
},
"turnOnTokenDetection": {
"message": "Erweiterte Token-Erkennung aktivieren"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "Verwenden von Sammelbaren (ERC-721) Token wird derzeit nicht unterstützt",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "Senden von NFT-Token (ERC-721) wird derzeit nicht unterstützt",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Wir können diesen Vertrag nicht verifizieren. Stellen Sie sicher, dass Sie dieser Adresse vertrauen."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "Diese URL wird derzeit vom $1-Netzwerk verwendet."
},
"useCollectibleDetection": {
"message": "NFTs automatisch erkennen"
},
"useCollectibleDetectionDescription": {
"message": "Durch die Anzeige von NFTs-Medien und -Daten kann deine IP-Adresse an zentrale Server weitergegeben werden. APIs von Drittanbietern (wie OpenSea) werden verwendet, um NFTs in deiner Wallet zu erkennen. Dadurch wird deine Kontoadresse bei diesen Diensten offengelegt. Lass diese Option deaktiviert, wenn du nicht möchtest, dass die App Daten von diesen Diensten abruft."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Beachten Sie außerdem Folgendes:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "NFT-Metadaten können Links zu Webseiten mit Betrugs- oder Phishing-Inhalten enthalten."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Jeder kann NFTs via Airdrop in Ihrem Konto ablegen. Dies kann anstößige Inhalte einschließen, die automatisch in Ihrem Wallet angezeigt werden könnten."
},
"useDefault": {
"message": "Standardeinstellungen verwenden"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Wir sammeln Konten und fragen bei Infura an, um Ihr Guthaben anzuzeigen. Wenn Sie dies deaktivieren, werden nur aktive Konten abgefragt. Einige Dapps funktionieren nicht, wenn Sie Ihr Wallet nicht verbinden."
},
"useNftDetection": {
"message": "NFTs automatisch erkennen"
},
"useNftDetectionDescription": {
"message": "Wir verwenden APIs von Drittanbietern, um NFTs in Ihrem Wallet zu erkennen, was bedeutet, dass Ihre IP an zentrale Server weitergegeben werden könnte. Hier müssen einige Dinge beachtet werden, wenn diese Funktion aktiviert wird."
},
"useNftDetectionDescriptionLine2": {
"message": "Ihre Konto-Adresse wird für die Drittanbieter-APIs sichtbar sein."
},
"useNftDetectionDescriptionLine3": {
"message": "NFT-Metadaten können Links zu Webseiten mit Betrugs- oder Phishing-Inhalten enthalten."
},
"useNftDetectionDescriptionLine4": {
"message": "Jeder kann NFTs via Airdrop in Ihrem Konto ablegen. Dies kann anstößige Inhalte einschließen, die automatisch in Ihrem Wallet angezeigt werden könnten."
},
"useNftDetectionDescriptionLine5": {
"message": "Lassen Sie diese Funktion deaktiviert, wenn Sie nicht möchten, dass die App Daten von diesen Diensten bezieht."
},
"usePhishingDetection": {
"message": "Phishing-Erkennung verwenden"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Anzeigen"
},
"viewAccount": {
"message": " Konto einsehen"
},
"viewAllDetails": {
"message": "Alle Details anzeigen"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Der Contract könnte Ihr gesamtes Token-Guthaben ohne weitere Benachrichtigung oder Zustimmung ausgeben. Schützen Sie sich, indem Sie eine niedrigere Ausgabenobergrenze festlegen.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Schwach"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Ja"
},
"yesLetsTry": {
"message": "Ja, versuchen wir es"
},
"youHaveAddedAll": {
"message": "Sie haben alle beliebten Netzwerke hinzugefügt. Sie können weitere Netzwerke entdecken $1 oder Sie können $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "Ihr NFT könnte gefährdet sein"
},
"yourPrivateSeedPhrase": {
"message": "Ihr privater Seed-Schlüssel"
"message": "Ihre geheime Wiederherstellungsphrase"
},
"zeroGasPriceOnSpeedUpError": {
"message": "Keine Gaskosten bei Beschleunigung"

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Το τέλος προτεραιότητας (γνωστό και ως “miner tip”) πηγαίνει άμεσα στους miner και τους ενθαρρύνει να δώσουν προτεραιότητα στη συναλλαγή σας."
},
"affirmAgree": {
"message": "Συμφωνώ"
},
"airgapVault": {
"message": "Θησαυροφυλάκιο AirGap"
},
@ -332,6 +329,9 @@
"message": "Επιτρέψτε στο $1 να κάνει ανάληψη και να ξοδέψει μέχρι το ακόλουθο ποσό:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Φροντίστε πάντα να κάνετε τη δική σας επιμελή έρευνα προτού εγκρίνετε οποιαδήποτε αιτήματα."
},
"amount": {
"message": "Ποσό"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask για Θεσμικούς",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Έγκριση"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Έγκριση"
},
"approveSpendingCap": {
"message": "Έγκριση $1 ως ανώτατο όριο δαπανών",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Αυτό επιτρέπει σε τρίτα μέρη να έχουν πρόσβαση και να μεταφέρουν τα ακόλουθα NFT χωρίς περαιτέρω ειδοποίηση μέχρι να ανακαλέσετε την πρόσβασή τους."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Εάν επιχειρήσετε να στείλετε περιουσιακά στοιχεία απευθείας από ένα δίκτυο σε ένα άλλο, αυτό ενδέχεται να οδηγήσει σε μόνιμη απώλεια περιουσιακών στοιχείων. Βεβαιωθείτε ότι χρησιμοποιείτε μια διασύνδεση."
},
"attemptToCancel": {
"message": "Προσπάθεια Ακύρωσης;"
},
"attemptToCancelDescription": {
"message": "Η υποβολή αυτής της προσπάθειας δεν εγγυάται ότι η αρχική σας συναλλαγή θα ακυρωθεί. Αν η προσπάθεια ακύρωσης είναι επιτυχής, θα χρεωθείτε με το παραπάνω τέλος συναλλαγής."
},
"attemptingConnect": {
"message": "Προσπάθεια σύνδεσης στην αλυσίδα μπλοκ."
},
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Δοκιμαστική έκδοση MetaMask"
},
"betaPortfolioSite": {
"message": "δοκιμαστική ιστοσελίδα χαρτοφυλακίου"
},
"betaTerms": {
"message": "Όροι Χρήσης της Δοκιμαστικής Έκδοσης"
},
@ -535,38 +534,9 @@
"message": "Αγορά $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Αγορά $1 με Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Μπορείτε να αγοράσετε ή να μεταφέρετε εύκολα κρυπτονομίσματα με τον λογαριασμό σας στο Coinbase.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Αγορά $1 με MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay supports popular payment methods, including Visa, Mastercard, Apple / Google / Samsung Pay, and bank transfers in 145+ countries. Tokens deposit into your MetaMask account."
},
"buyCryptoWithTransak": {
"message": "Αγορά $1 με Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Η Transak υποστηρίζει πιστωτικές και χρεωστικές κάρτες, Apple Pay, MobiKwik και τραπεζικές μεταφορές (ανάλογα με την τοποθεσία) σε περισσότερες από 145 χώρες. Τα $1 κατατίθενται απευθείας στον λογαριασμό σας στο MetaMask.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Αγοράστε Τώρα"
},
"buyWithWyre": {
"message": "Αγοράστε $1 με το Wyre"
},
"buyWithWyreDescription": {
"message": "Εύκολη ενσωμάτωση για αγορές μέχρι και $ 1000. Γρήγορη διαδραστική επαλήθευση αγοράς υψηλού ορίου. Υποστηρίζει χρεωστικές/πιστωτικές κάρτες, Apple Pay, Τραπεζικές Μεταφορές. Διαθέσιμο σε 100+ χώρες. Καταθέσεις token στον λογαριασμό σας MetaMask"
},
"bytes": {
"message": "Bytes"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Ακυρώστε τη συναλλαγή δωρεάν"
},
"cancellationGasFee": {
"message": "Ακύρωση Χρέωσης Αερίου"
},
"cancelled": {
"message": "Ακυρώθηκε"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Θα πρέπει να χρησιμοποιήσετε το MetaMask στο Google Chrome για να συνδεθείτε στο Πορτοφόλι Υλικού."
},
"clear": {
"message": "Εκκαθάριση"
},
"clearActivity": {
"message": "Εκκαθάριση δραστηριότητας και «nonce» δεδομένων"
},
"clearActivityButton": {
"message": "Εκκαθάριση δεδομένων καρτέλας δραστηριότητας"
},
"clearActivityDescription": {
"message": "Αυτό επαναφέρει το «nonce» του λογαριασμού και διαγράφει τα δεδομένα από την καρτέλα δραστηριότητας στο πορτοφόλι σας. Θα επηρεαστεί μόνο ο τρέχων λογαριασμός και το δίκτυο. Τα υπόλοιπα και οι εισερχόμενες συναλλαγές σας δεν θα αλλάξουν."
},
"clickToConnectLedgerViaWebHID": {
"message": "Κάντε κλικ εδώ για να συνδέσετε το Ledger σας μέσω WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Κλείσιμο"
},
"collectibleAddFailedMessage": {
"message": "Τα NFT δεν μπορούν να προστεθούν, διότι τα στοιχεία της κυριότητας δεν ταυτίζονται. Σιγουρευτείτε ότι έχετε εισαγάγει τα σωστά στοιχεία."
},
"collectibleAddressError": {
"message": "Αυτό το token είναι NFT. Προσθήκη στο $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Επιβεβαίωση"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Σύνδεση στο Δίκτυο Δοκιμής Goerli"
},
"connectingToLineaTestnet": {
"message": "Σύνδεση στο δίκτυο δοκιμών Linea Goerli"
},
"connectingToMainnet": {
"message": "Σύνδεση στο Κύριο Δίκτυο Ethereum"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Συνέχεια"
},
"continueToCoinbasePay": {
"message": "Συνέχεια στο Coinbase Pay"
},
"continueToMoonPay": {
"message": "Συνέχεια στη MoonPay"
},
"continueToTransak": {
"message": "Συνεχίστε στο Transak"
},
"continueToWyre": {
"message": "Συνεχίστε στο Wyre"
},
"contract": {
"message": "Συμβόλαιο"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Έγινε αντιγραφή!"
"message": "Έγινε αντιγραφή."
},
"copyAddress": {
"message": "Αντιγράψτε τη διεύθυνση στο πρόχειρο"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Δημιουργία Κωδικού Πρόσβασης"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Μετατροπή Νομίσματος"
},
"currencyRateCheckToggle": {
"message": "Εμφάνιση υπολοίπου και έλεγχος τιμών για token"
},
"currencyRateCheckToggleDescription": {
"message": "Χρησιμοποιούμε τα API $1 και $2 για να εμφανίσουμε το υπόλοιπό σας και την τιμή του token. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Σύμβολο Νομίσματος"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Κατάθεση"
},
"depositCrypto": {
"message": "Κατάθεση $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Μάθετε περισσότερα"
},
@ -992,15 +964,108 @@
"description": {
"message": "Περιγραφή"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Αυτό το σφάλμα μπορεί να είναι περιστασιακό, οπότε δοκιμάστε να επανεκκινήσετε την επέκταση ή απενεργοποιήστε το MetaMask Desktop."
},
"desktopConnectionCriticalErrorTitle": {
"message": "Το MetaMask είχε πρόβλημα κατά την εκκίνηση"
},
"desktopConnectionLostErrorDescription": {
"message": "Βεβαιωθείτε ότι έχετε την εφαρμογή για την επιφάνεια εργασίας σε λειτουργία ή απενεργοποιήστε το MetaMask Desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "Η σύνδεση με το MetaMask Desktop χάθηκε"
},
"desktopDisableButton": {
"message": "Απενεργοποιήστε την εφαρμογή για την επιφάνεια εργασίας"
},
"desktopDisableErrorCTA": {
"message": "Απενεργοποιήστε το MetaMask Desktop"
},
"desktopEnableButton": {
"message": "Ενεργοποιήστε την εφαρμογή για την επιφάνεια εργασίας"
},
"desktopEnableButtonDescription": {
"message": "Κάντε κλικ για να εκτελέσετε όλες τις διεργασίες παρασκηνίου στην εφαρμογή επιφάνειας εργασίας."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Επιστροφή στη σελίδα Ρυθμίσεις"
},
"desktopErrorRestartMMCTA": {
"message": "Επανεκκίνηση του MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Λήψη του MetaMask Desktop"
},
"desktopNotFoundErrorDescription1": {
"message": "Βεβαιωθείτε ότι έχετε ενεργοποιήσει και εκτελείτε την εφαρμογή για την επιφάνεια εργασίας."
},
"desktopNotFoundErrorDescription2": {
"message": "Αν δεν έχετε εγκαταστήσει την εφαρμογή για την επιφάνεια εργασίας, κατεβάστε την από τον ιστότοπο του MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "Το MetaMask Desktop δεν βρέθηκε"
},
"desktopOpenOrDownloadCTA": {
"message": "Άνοιγμα του MetaMask Desktop"
},
"desktopOutdatedErrorCTA": {
"message": "Ενημέρωση του MetaMask Desktop"
},
"desktopOutdatedErrorDescription": {
"message": "Η εφαρμογή MetaMask Desktop πρέπει να αναβαθμιστεί."
},
"desktopOutdatedErrorTitle": {
"message": "Το MetaMask Desktop είναι ξεπερασμένο"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Ενημέρωση της επέκτασης MetaMask"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Η επέκταση του MetaMask πρέπει να αναβαθμιστεί."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "Η επέκταση του MetaMask είναι ξεπερασμένη"
},
"desktopPageDescription": {
"message": "Εάν η ζεύξη είναι επιτυχής, η επέκταση θα επανεκκινηθεί και θα πρέπει να εισαγάγετε εκ νέου τον κωδικό πρόσβασής σας."
},
"desktopPageSubTitle": {
"message": "Ανοίξτε το MetaMask Desktop και πληκτρολογήστε αυτόν τον κωδικό"
},
"desktopPageTitle": {
"message": "Ζεύξη με το Desktop"
},
"desktopPairedWarningDeepLink": {
"message": "Μεταβείτε στις Ρυθμίσεις στο MetaMask Desktop"
},
"desktopPairedWarningDescription": {
"message": "Αν θέλετε να ξεκινήσετε μια νέα ζεύξη, αφαιρέστε την τρέχουσα σύνδεση."
},
"desktopPairedWarningTitle": {
"message": "Το MM Desktop είναι ήδη συνδεδεμένο"
},
"desktopPairingExpireMessage": {
"message": "Ο κωδικός λήγει σε $1 δευτερόλεπτα"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Επιστροφή στην αρχική σελίδα του MetaMask"
},
"desktopUnexpectedErrorDescription": {
"message": "Ελέγξτε το MetaMask Desktop για να επαναφέρετε τη σύνδεση"
},
"desktopUnexpectedErrorTitle": {
"message": "Κάτι πήγε στραβά..."
},
"details": {
"message": "Λεπτομέρειες"
},
"directDepositCrypto": {
"message": "Απευθείας κατάθεση $1"
},
"directDepositCryptoExplainer": {
"message": "Εάν έχετε ήδη μερικά $1, ο γρηγορότερος τρόπος για να βάλετε $1 στο νέο σας πορτοφόλι είναι η απευθείας κατάθεση."
},
"disabledGasOptionToolTipMessage": {
"message": "Το \"1$\" είναι απενεργοποιημένο επειδή δεν πληροί την ελάχιστη αύξηση 10% σε σχέση με τα αρχικά τέλη συναλλαγής.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Χρησιμοποιήστε το API OpenSea για λήψη δεδομένων NFT. Η αυτόματη ανίχνευση NFT βασίζεται στο API του OpenSea, και δεν θα είναι διαθέσιμη όταν αυτό είναι απενεργοποιημένο."
},
"enableOpenSeaSecurityProvider": {
"message": "Ενεργοποίηση παρόχου ασφάλειας"
},
"enableSmartTransactions": {
"message": "Ενεργοποίηση Έξυπνων Συναλλαγών"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Προβολή στην Etherscan"
},
"expandExperience": {
"message": "Επεκτείνετε την εμπειρία σας στο web3"
},
"expandView": {
"message": "Ανάπτυξη Προβολής"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Προβολή λεπτομερειών",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Προστέθηκε στις",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Τέλος συναλλαγής που Χρησιμοποιήθηκε"
},
"gdprMessage": {
"message": "Τα δεδομένα αυτά συγκεντρωτικά και, ως εκ τούτου, είναι ανώνυμα για τους σκοπούς του Γενικού Κανονισμού για την Προστασία Δεδομένων GDPR (ΕΕ) 2016/679. Για περισσότερες πληροφορίες σχετικά με τις πρακτικές απορρήτου μας, ανατρέξτε στο $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Πολιτική Απορρήτου εδώ",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Γενικά"
},
"getEther": {
"message": "Λάβετε Ether"
},
"getEtherFromFaucet": {
"message": "Πάρτε Ether από μια πηγή για το $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Λάβετε προειδοποιήσεις από το OpenSea όποτε λαβαίνετε ένα αναγνωρισμένο κακόβουλο αίτημα."
},
"goBack": {
"message": "Μετάβαση Πίσω"
@ -1545,6 +1598,32 @@
"history": {
"message": "Ιστορικό"
},
"holdToReveal": {
"message": "Κρατήστε πατημένο για αποκάλυψη της ΜΦΑ"
},
"holdToRevealContent1": {
"message": "Η Μυστική σας Φράση Ανάκτησης παρέχει $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "πλήρη πρόσβαση στο πορτοφόλι και τα κεφάλαιά σας.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Μην τη μοιραστείτε με κανέναν. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "Η Υποστήριξη του MetaMask δεν θα τη ζητήσει ποτέ,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "αλλά οι απατεώνες μπορεί να το κάνουν.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Κρατήστε τη ΜΦΑ σας ασφαλή"
},
"ignoreAll": {
"message": "Αγνόηση όλων"
},
@ -1577,7 +1656,7 @@
"message": "Σελίδα Εισαγωγής NFT"
},
"importNFTTokenIdToolTip": {
"message": "Το συλλεκτικό αναγνωριστικό είναι ένα μοναδικό αναγνωριστικό, καθώς όλα τα NFT είναι διαφορετικά μεταξύ τους. Μιλώντας και πάλι για το OpenSea, αυτός ο αριθμός βρίσκεται στην ενότητα «Λεπτομέρειες». Σημειώστε τον ή αντιγράψτε τον στο πρόχειρό σας."
"message": "Ένα αναγνωριστικό του συλλεκτικού είναι ένα μοναδικό αναγνωριστικό δεδομένου ότι δεν υπάρχουν δύο ίδια NFT. Και πάλι, στο OpenSea αυτός ο αριθμός βρίσκεται στην ενότητα \"Λεπτομέρειες\". Σημειώστε τον ή αντιγράψτε τον στο πρόχειρο σας."
},
"importNFTs": {
"message": "Εισαγωγή NFT"
@ -1724,9 +1803,6 @@
"message": "Αρχείο JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "για να παρακολουθείτε τα token και τα NFT σε όλους τους λογαριασμούς και τα δίκτυα."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Τελευταία Σύνδεση"
},
"lastPriceSold": {
"message": "Τελευταία τιμή πώλησης"
},
"lastSold": {
"message": "Τελευταία πώληση"
},
"learnCancelSpeeedup": {
"message": "Μάθετε πώς να $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Θέλετε να προσθέσετε αυτά τα token;"
},
"lineatestnet": {
"message": "Δίκτυο δοκιμών Linea Goerli"
},
"link": {
"message": "Σύνδεσμος"
},
@ -1873,9 +1958,6 @@
"malformedData": {
"message": "Παραμορφωμένα δεδομένα"
},
"manageSnaps": {
"message": "Διαχειριστείτε τα εγκατεστημένα Snaps σας"
},
"max": {
"message": "Μέγ."
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Έκδοση MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Σας επιτρέπεται πάντα να εξαιρεθείτε μέσω των Ρυθμίσεων"
},
"metametricsCommitmentsBoldNever": {
"message": "Ποτέ δεν",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "Το MetaMask.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 συλλέγει την πλήρη διεύθυνση IP σας",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$ συλλέγει κλειδιά, διευθύνσεις, συναλλαγές, υπόλοιπα, συναρτήσεις κατατεμαχισμού ή οποιαδήποτε προσωπικά στοιχεία",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 πουλά δεδομένα για το κέρδος. Ποτέ!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Στείλτε ανώνυμα γεγονότα κλικ και προβολής ιστοσελίδων"
},
"metametricsHelpImproveMetaMask": {
"message": "Βοηθήστε μας να βελτιώσουμε το MetaMask"
},
"metametricsOptInDescription": {
"message": "Το MetaMask θα ήθελε να συγκεντρώσει δεδομένα χρήσης για να κατανοήσει καλύτερα πώς οι χρήστες μας αλληλεπιδρούν με την επέκταση. Τα δεδομένα αυτά θα χρησιμοποιηθούν για τη συνεχή βελτίωση της χρηστικότητας και της εμπειρίας χρήσης του προϊόντος μας και του οικοσυστήματος Ethereum."
"metrics": {
"message": "Μετρήσεις"
},
"mismatchedChainLinkText": {
"message": "επαληθεύστε τα στοιχεία δικτύου",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "Η λειτουργία 'Συγχρονισμός με επέκταση' είναι προσωρινά απενεργοποιημένη. Αν θέλετε να χρησιμοποιήσετε το πορτοφόλι της επέκτασής σας στο MetaMask mobile, τότε στην εφαρμογή για το κινητό σας: επιστρέψτε στις επιλογές εγκατάστασης του πορτοφολιού και επιλέξτε την επιλογή 'Εισαγωγή με Μυστική Φράση Ανάκτησης'. Χρησιμοποιήστε τη μυστική φράση του πορτοφολιού της επέκτασής σας για να εισαγάγετε το πορτοφόλι σας στο κινητό."
},
"moreComingSoon": {
"message": "Περισσότερα έρχονται σύντομα..."
},
"mustSelectOne": {
"message": "Πρέπει να επιλέξετε 1 τουλάχιστον διακριτικό."
},
@ -1992,10 +2049,6 @@
"message": "Το αρχικό token σε αυτό το δίκτυο είναι το $1. Είναι το token που χρησιμοποιείται για τα τέλη φυσικού αερίου.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Για να αλληλεπιδράσετε με αποκεντρωμένες εφαρμογές χρησιμοποιώντας το MetaMask, θα χρειαστείτε $1 στο πορτοφόλι σας.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Χρειάζεστε βοήθεια; Επικοινωνήστε με $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Λογαριασμός $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Το Collectible προστέθηκε με επιτυχία!"
},
"newContact": {
"message": "Νέα Επαφή"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "Το “$1” προστέθηκε με επιτυχία!"
},
"newNftAddedMessage": {
"message": "Το Nft προστέθηκε με επιτυχία!"
},
"newPassword": {
"message": "Νέος Κωδικός Πρόσβασης (ελάχιστο 8 χαρακτήρες)"
},
@ -2138,8 +2191,18 @@
"message": "Το Nonce είναι υψηλότερο από το προτεινόμενο nonce του $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "Τα NFT δεν μπορούν να προστεθούν, διότι τα στοιχεία της κυριότητας δεν ταυτίζονται. Σιγουρευτείτε ότι έχετε εισαγάγει τα σωστά στοιχεία."
},
"nftAddressError": {
"message": "Αυτό το token είναι NFT. Προσθήκη στο $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Αποποίηση ευθυνών: Το MetaMask αντλεί το αρχείο πολυμέσων από το url της πηγής. Αυτό το url μερικές φορές αλλάζει ανάλογα με την αγορά στην οποία εκδόθηκε το NFT."
},
"nftOptions": {
"message": "Επιλογές NFT"
},
"nftTokenIdPlaceholder": {
"message": "Εισάγετε το συλλεκτικό αναγνωριστικό"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Δεν εγκαταστάθηκαν Snaps"
},
"noThanks": {
"message": "Όχι Ευχαριστώ"
},
"noThanksVariant2": {
"message": "Όχι, ευχαριστώ."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Δεν Υπάρχει Αρκετό τέλος συναλλαγής"
},
"notNow": {
"message": "Όχι τώρα"
},
"notifications": {
"message": "Ειδοποιήσεις"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Εμφάνιση ρυθμίσεων Ασφάλειας & Απορρήτου"
},
"notifications17Description": {
"message": "Αυτή η ενημέρωση παρέχει περισσότερες επιλογές ώστε να μπορείτε να ελέγχετε καλύτερα το απόρρητό σας. Προσθέσαμε μεγαλύτερη διαφάνεια σχετικά με τον τρόπο συλλογής δεδομένων και πιο σαφείς επιλογές για την κοινοποίησή τους. Αλλάξτε τις προτιμήσεις σας ή διαγράψτε τα δεδομένα χρήσης της επέκτασης μέσω των ρυθμίσεων Ασφάλειας & Απορρήτου."
},
"notifications17Title": {
"message": "Ρυθμίσεις Ασφάλειας & Απορρήτου"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Προβολή στον εξερευνητή μπλοκ"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "Πάροχος ασφάλειας OpenSea"
},
"openSeaDescription": {
"message": "Το OpenSea είναι ο πρώτος πάροχος ασφάλειας για αυτή τη λειτουργία. Σύντομα θα προστεθούν και άλλοι πάροχοι!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Προαιρετικό"
},
"optionalWithParanthesis": {
"message": "(Προαιρετικό)"
},
"options": {
"message": "Επιλογές"
},
"or": {
"message": "ή"
},
@ -2564,6 +2639,9 @@
"message": "άλλα στιγμιότυπα",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Το πρόγραμμα περιήγησής σας είναι μη ενημερωμένο. Εάν δεν ενημερώσετε το πρόγραμμα περιήγησής σας, δε θα μπορείτε να λαμβάνετε διορθώσεις ασφαλείας και νέες λειτουργίες από το MetaMask."
},
"padlock": {
"message": "Padlock"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Ανακλήθηκε σε αυτήν την ενημέρωση"
},
"permission_accessNamedSnap": {
"message": "Σύνδεση με $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Πρόσβαση στο Διαδίκτυο.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Συνδεθείτε στο Snap $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Προγραμματισμός και εκτέλεση περιοδικών ενεργειών.",
@ -2671,6 +2753,10 @@
"message": "Ελέγξτε τους λογαριασμούς και τα περιουσιακά σας στοιχεία σας στο \"$1\".",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Ελέγξτε τους $1 λογαριασμούς σας και τα περιουσιακά σας στοιχεία.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Αποθηκεύστε και διαχειριστείτε τα δεδομένα του στη συσκευή σας.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Δείτε το δημόσιο κλειδί σας για το $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Δείτε το δημόσιο κλειδί σας για το $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Άδειες"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Δημοφιλή προσαρμοσμένα δίκτυα"
},
"portfolioSite": {
"message": "Ιστότοπος χαρτοφυλακίου"
"portfolio": {
"message": "Χαρτοφυλάκιο"
},
"preferredLedgerConnectionType": {
"message": "Προτιμώμενος Τύπος Σύνδεσης Ledger",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "Αφαίρεση NFT"
},
"removeNftMessage": {
"message": "Το NFT αφαιρέθηκε με επιτυχία!"
},
"removeSnap": {
"message": "Αφαίρεση Snap"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "αντικατάσταση"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Ο πάροχος ασφάλειας δεν έχει μοιραστεί πρόσθετες λεπτομέρειες"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Το αίτημα χαρακτηρίστηκε ως κακόβουλο"
},
"requestMayNotBeSafe": {
"message": "Το αίτημα μπορεί να μην είναι ασφαλές"
},
"requestMayNotBeSafeError": {
"message": "Ο πάροχος ασφάλειας δεν εντόπισε καμία γνωστή κακόβουλη δραστηριότητα, αλλά και πάλι μπορεί να μην είναι ασφαλές να συνεχίσετε."
},
"requestNotVerified": {
"message": "Το αίτημα δεν επαληθεύτηκε"
},
"requestNotVerifiedError": {
"message": "Λόγω σφάλματος, αυτό το αίτημα δεν επαληθεύτηκε από τον πάροχο ασφαλείας. Προχωρήστε με προσοχή."
},
"requestsAwaitingAcknowledgement": {
"message": "αιτήματα τα οποία αναμένουν να αναγνωριστούν"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Επαναφορά"
},
"resetAccount": {
"message": "Επαναφορά Λογαριασμού"
},
"resetAccountDescription": {
"message": "Με την επαναφορά του λογαριασμού σας εκκαθαρίζεται το ιστορικό των συναλλαγών σας."
},
"resetWallet": {
"message": "Επαναφορά Πορτοφολιού"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Αποκάλυψη Λέξεων Μυστικής Φράσης Ανάκτησης"
},
"revealSeedWordsDescription": {
"message": "Εάν αλλάξετε ποτέ προγράμματα περιήγησης ή μετακινήσετε υπολογιστές, θα χρειαστείτε αυτήν τη Μυστική Φράση Ανάκτησης για να αποκτήσετε πρόσβαση στους λογαριασμούς σας. Αποθηκεύστε την κάπου με ασφάλεια και μυστικότητα."
"revealSeedWordsDescription1": {
"message": "Το $1 παρέχει $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "Το MetaMask είναι ένα $1. Αυτό σημαίνει ότι είστε ο κάτοχος της ΜΦΑ σας.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "πλήρη πρόσβαση στο πορτοφόλι και τα κεφάλαιά σας."
},
"revealSeedWordsNonCustodialWallet": {
"message": "πορτοφόλι χωρίς επιτήρηση"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Μυστική Φράση Ανάκτησης (ΜΦΑ)"
},
"revealSeedWordsText": {
"message": "Κείμενο"
},
"revealSeedWordsWarning": {
"message": "Αυτές οι λέξεις μπορούν να χρησιμοποιηθούν για να κλαπούν όλοι οι λογαριασμοί σας."
"message": "Σιγουρευτείτε ότι δεν κοιτάζει κανείς την οθόνη σας.$1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "ΜΗΝ ΜΟΙΡΑΣΤΕΙΤΕ αυτήν τη φράση με κανέναν!"
"revealSeedWordsWarning2": {
"message": "Η Υποστήριξη του MetaMask δεν θα σας τη ζητήσει ποτέ.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Αποκάλυψη φράσης ανάκτησης"
@ -2964,9 +3091,6 @@
"save": {
"message": "Αποθήκευση"
},
"saveAsCsvFile": {
"message": "Αποθηκεύστε ως Αρχείο CSV"
},
"scanInstructions": {
"message": "Τοποθετήστε τον κώδικα QR μπροστά από την κάμερά σας"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Εάν δεν βλέπετε τους αναμενόμενους λογαριασμούς, προσπαθήστε να αλλάξετε το μονοπάτι HD."
},
"selectProvider": {
"message": "Επιλέξτε παρόχους:"
},
"selectType": {
"message": "Επιλέξτε Τύπο"
},
@ -3246,16 +3373,9 @@
"message": "Εκχωρείτε στο $2 βασική πρόσβαση στο snap \"$1\". Αυτό είναι αμετάκλητο και παρέχει στο \"$1\" τον έλεγχο των λογαριασμών και των περιουσιακών σας στοιχείων $2. Βεβαιωθείτε ότι εμπιστεύεστε το \"$1\" προτού συνεχίσετε.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Αυτό το snap αιτείται τις παρακάτω άδειες:"
},
"snapUpdate": {
"message": "Ενημέρωση Snap"
},
"snapUpdateExplanation": {
"message": "Το $1 χρειάζεται μια νεότερη έκδοση του snap σας.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snaps"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Πολύ μεγάλο όριο δαπανών"
},
"spendingCap": {
"message": "Ανώτατο όριο δαπανών"
},
"spendingCapError": {
"message": "Σφάλμα: Εισάγετε μόνο αριθμούς"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Δεν έχει συνδεθεί"
},
"staySafeWithOpenSea": {
"message": "Μείνετε ασφαλείς με το OpenSea"
},
"step1LatticeWallet": {
"message": "Συνδέστε το Lattice1 σας"
},
@ -3636,7 +3762,7 @@
"message": "Τέλος MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Βρίσκουμε την καλύτερη τιμή από τις κορυφαίες πηγές ρευστότητας, κάθε φορά. Μια αμοιβή $1% λαμβάνεται αυτόματα υπόψη σε αυτή την προσφορά.",
"message": "Μια χρέωση $1% συνυπολογίζεται αυτόματα σε αυτή την προσφορά. Την καταβάλλετε ως αντάλλαγμα για την άδεια χρήσης του λογισμικού συγκέντρωσης πληροφοριών για τους παρόχους ρευστότητας του MetaMask.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Όροι παροχής υπηρεσιών"
},
"testFaucet": {
"message": "Έλεγχος Βαλβίδας"
},
"testNetworks": {
"message": "Δοκιμαστικά δίκτυα"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Πράγματα που πρέπει να έχετε υπόψη σας:"
},
"thisIsBasedOn": {
"message": "Αυτό βασίζεται σε πληροφορίες από"
},
"thisServiceIsExperimental": {
"message": "Η υπηρεσία αυτή είναι πειραματική"
},
"time": {
"message": "Ώρα"
},
@ -3914,6 +4043,12 @@
"message": "Προς: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Ενεργοποιήστε το για να επιτρέπετε στις εφαρμογές να ζητούν την υπογραφή σας χρησιμοποιώντας αιτήματα eth_sign. Το eth_sign είναι μια ανοιχτή μέθοδος υπογραφής που σας επιτρέπει να υπογράψετε έναν τυχαίο κατακερματισμό, γεγονός που το καθιστά επικίνδυνο για phishing. Υπογράψτε αιτήματα eth_sign μόνο αν μπορείτε να διαβάσετε αυτό που υπογράφετε και εμπιστεύεστε την προέλευση του αιτήματος."
},
"toggleEthSignField": {
"message": "Εναλλαγή αιτημάτων eth_sign"
},
"toggleTestNetworks": {
"message": "$1 δοκιμαστικά δίκτυα",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Το διακριτικό έχει ήδη προστεθεί."
},
"tokenAutoDetection": {
"message": "Αυτόματος εντοπισμός Token"
},
"tokenContractAddress": {
"message": "Διεύθυνση Συμβολαίου Token"
},
@ -4064,10 +4202,10 @@
"message": "Η συναλλαγή υποβλήθηκε ξανά με το τέλος gas να έχει αυξηθεί για $1 σε $2"
},
"transactionSecurityCheck": {
"message": "Έλεγχος ασφάλειας συναλλαγών"
"message": "Ενεργοποίηση παρόχων ασφάλειας συναλλαγών"
},
"transactionSecurityCheckDescription": {
"message": "Ενεργοποιήστε το για να επιτρέψετε σε ένα τρίτο μέρος (OpenSea) να ελέγχει όλες τις συναλλαγές και τα αιτήματα υπογραφής σας και να σας προειδοποιεί για γνωστά κακόβουλα αιτήματα."
"message": "Χρησιμοποιούμε API τρίτων για τον εντοπισμό και την εμφάνιση των κινδύνων που ενέχουν τα ανυπόγραφα αιτήματα συναλλαγών και υπογραφών πριν τα υπογράψετε. Αυτές οι υπηρεσίες θα έχουν πρόσβαση στα ανυπόγραφα αιτήματα συναλλαγών και υπογραφών σας, στη διεύθυνση του λογαριασμού σας και στην προτιμώμενη γλώσσα σας."
},
"transactionSubmitted": {
"message": "Η συναλλαγή στάλθηκε με τέλος gas του $1 σε $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Δοκιμάστε ξανά"
},
"tryOur": {
"message": "Δοκιμάστε το"
},
"turnOnTokenDetection": {
"message": "Ενεργοποιήστε την ενισχυμένη ανίχνευση token"
},
@ -4172,7 +4307,7 @@
},
"unsendableAsset": {
"message": "Η αποστολή συλλεκτικών (ERC-721) δεν υποστηρίζεται προς το παρόν",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Δεν μπορούμε να επαληθεύσουμε αυτή τη σύμβαση. Βεβαιωθείτε ότι εμπιστεύεστε αυτήν τη διεύθυνση."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "Αυτό το URL χρησιμοποιείται επί του παρόντος από το δίκτυο $1."
},
"useCollectibleDetection": {
"message": "Αυτόματη Ανίχνευση NFT"
},
"useCollectibleDetectionDescription": {
"message": "Η εμφάνιση πολυμέσων και δεδομένων NFT μπορεί να εκθέσει τη διεύθυνση IP σας σε κεντρικούς διακομιστές. Τα API τρίτων (όπως το OpenSea) χρησιμοποιούνται για την ανίχνευση NFT στο πορτοφόλι σας. Αυτό εκθέτει τη διεύθυνση του λογαριασμού σας με αυτές τις υπηρεσίες. Αφήστε το απενεργοποιημένο αν δεν θέλετε η εφαρμογή να τραβήξει δεδομένα από αυτές τις υπηρεσίες."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Επιπλέον, λάβετε υπόψη ότι:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Τα μεταδεδομένα των NFT ενδέχεται να περιέχουν συνδέσμους προς ιστοσελίδες απάτης ή ηλεκτρονικού «ψαρέματος»."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Οποιοσδήποτε μπορεί να στείλει NFT στον λογαριασμό σας. Αυτό μπορεί να περιλαμβάνει προσβλητικό περιεχόμενο που μπορεί να εμφανίζεται αυτόματα στο πορτοφόλι σας."
},
"useDefault": {
"message": "Χρήση προκαθορισμένου"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Συγκεντρώνουμε τους λογαριασμούς και ζητάμε από την Infura να εμφανίσει το υπόλοιπό σας. Αν το απενεργοποιήσετε αυτό, θα ζητηθούν μόνο οι ενεργοί λογαριασμοί. Ορισμένες αποκεντρωμένες εφαρμογές δεν θα λειτουργούν αν δεν συνδέσετε το πορτοφόλι σας."
},
"useNftDetection": {
"message": "Αυτόματη Ανίχνευση NFT"
},
"useNftDetectionDescription": {
"message": "Χρησιμοποιούμε API τρίτων για την ανίχνευση NFT στο πορτοφόλι σας, πράγμα που σημαίνει ότι η διεύθυνση IP σας μπορεί να εκτεθεί σε κεντρικούς διακομιστές. Υπάρχουν μερικά πράγματα που πρέπει να προσέχετε κατά την ενεργοποίηση αυτής της δυνατότητας."
},
"useNftDetectionDescriptionLine2": {
"message": "Η διεύθυνση του λογαριασμού σας θα είναι ορατή σε API τρίτων."
},
"useNftDetectionDescriptionLine3": {
"message": "Τα μεταδεδομένα των NFT ενδέχεται να περιέχουν συνδέσμους προς ιστοσελίδες απάτης ή ηλεκτρονικού «ψαρέματος»."
},
"useNftDetectionDescriptionLine4": {
"message": "Οποιοσδήποτε μπορεί να στείλει NFT στον λογαριασμό σας. Αυτό μπορεί να περιλαμβάνει προσβλητικό περιεχόμενο που μπορεί να εμφανίζεται αυτόματα στο πορτοφόλι σας."
},
"useNftDetectionDescriptionLine5": {
"message": "Αφήστε αυτή τη λειτουργία απενεργοποιημένη αν δεν θέλετε η εφαρμογή να αντλεί δεδομένα από αυτές τις υπηρεσίες."
},
"usePhishingDetection": {
"message": "Χρήση Ανίχνευσης Απάτης Ηλεκτρονικού Ψαρέματος"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Προβολή"
},
"viewAccount": {
"message": "Προβολή λογαριασμού"
},
"viewAllDetails": {
"message": "Προβολή όλων των λεπτομερειών"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Ο συμβαλλόμενος μπορεί να ξοδέψει ολόκληρο το υπόλοιπο των tokens σας χωρίς περαιτέρω ειδοποίηση ή συγκατάθεση. Προστατέψτε τον εαυτό σας προσαρμόζοντας ένα χαμηλότερο όριο δαπανών.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Αδύναμος"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Ναι"
},
"yesLetsTry": {
"message": "Ναι, ας δοκιμάσουμε"
},
"youHaveAddedAll": {
"message": "Προσθέσατε όλα τα δημοφιλή δίκτυα. Μπορείτε να ανακαλύψετε περισσότερα δίκτυα $1 Ή μπορείτε να \n $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"

File diff suppressed because it is too large Load Diff

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "La tarifa de prioridad (también llamada “propina del minero”) va directamente a los mineros para incentivarlos a priorizar su transacción."
},
"affirmAgree": {
"message": "Acepto"
},
"airgapVault": {
"message": "Bóveda AirGap"
},
@ -332,6 +329,9 @@
"message": "Permitir que se retire $1 y gastar hasta el siguiente importe:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Asegúrese siempre de hacer su propia diligencia debida antes de aprobar cualquier solicitud."
},
"amount": {
"message": "Importe"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institucional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Aprobar límite de gastos"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Aprobar"
},
"approveSpendingCap": {
"message": "Aprobar límite de gasto $1",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Esto permite que un tercero acceda y transfiera los siguientes NFT sin previo aviso hasta que usted revoque su acceso."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Si intenta enviar activos directamente de una red a otra, esto puede provocar la pérdida permanente de activos. Asegúrese de utilizar un puente."
},
"attemptToCancel": {
"message": "¿Intentar cancelar?"
},
"attemptToCancelDescription": {
"message": "Enviar este intento no garantiza que se cancelará la transacción original. Si el intento de cancelación se completa correctamente, se le cobrará la cuota de transacción anterior."
},
"attemptingConnect": {
"message": "Intentando una conexión a la cadena de bloques."
},
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Versión Beta de MetaMask"
},
"betaPortfolioSite": {
"message": "sitio de portafolio beta"
},
"betaTerms": {
"message": "Términos de uso de beta"
},
@ -535,38 +534,9 @@
"message": "Comprar $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Comprar $1 con Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Puede comprar o transferir criptomonedas fácilmente por medio de su cuenta de Coinbase.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Comprar $1 con MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay admite métodos de pago populares, incluidos Visa, Mastercard, Apple/Google/Samsung Pay y transferencias bancarias en más de 145 países. Depósito de tokens en su cuenta MetaMask."
},
"buyCryptoWithTransak": {
"message": "Comprar $1 con Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak admite tarjetas de crédito y débito, Apple Pay, MobiKwik y transferencias bancarias (según la ubicación) en más de 100 países. Depósitos de $1 directamente en su cuenta MetaMask.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Comprar ahora"
},
"buyWithWyre": {
"message": "Comprar $1 con Wyre"
},
"buyWithWyreDescription": {
"message": "Acceso fácil a compras de hasta $1,000. Verificación interactiva rápida de compra de límite alto. Acepta tarjeta de débito/crédito, Apple Pay y transferencias bancarias. Disponible para más de 100 países. Los tokens se depositarán en su cuenta MetaMask"
},
"bytes": {
"message": "Bytes"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Cancelar el swap gratuitamente"
},
"cancellationGasFee": {
"message": "Cuota de gas por cancelación"
},
"cancelled": {
"message": "Cancelado"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Debe usar MetaMask en Google Chrome para poder conectarse a su cartera de hardware."
},
"clear": {
"message": "Borrar"
},
"clearActivity": {
"message": "Borrar datos de actividad y nonce"
},
"clearActivityButton": {
"message": "Borrar datos de la pestaña de actividad"
},
"clearActivityDescription": {
"message": "Esto restablece el nonce de la cuenta y borra los datos de la pestaña de actividad en su billetera. Solo la cuenta actual y la red se verán afectadas. Sus saldos y transacciones entrantes no cambiarán."
},
"clickToConnectLedgerViaWebHID": {
"message": "Haga clic aquí para conectar su Ledger a través de WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Cerrar"
},
"collectibleAddFailedMessage": {
"message": "No se puede agregar NFT porque los detalles de propiedad no coinciden. Asegúrese de haber ingresado la información correcta."
},
"collectibleAddressError": {
"message": "Este token es un NFT. Añadir a $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Confirmar"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Estableciendo conexión a la red de prueba Goerli"
},
"connectingToLineaTestnet": {
"message": "Conectando a la red de prueba Linea Goerli"
},
"connectingToMainnet": {
"message": "Estableciendo conexión a la red principal de Ethereum"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Continuar"
},
"continueToCoinbasePay": {
"message": "Continuar a Coinbase Pay"
},
"continueToMoonPay": {
"message": "Continuar a MoonPay"
},
"continueToTransak": {
"message": "Continuar a Transak"
},
"continueToWyre": {
"message": "Continuar a Wyre"
},
"contract": {
"message": "Contrato"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "¡Copiado!"
"message": "Copiado."
},
"copyAddress": {
"message": "Copiar dirección al Portapapeles"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Crear contraseña"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Conversión de moneda"
},
"currencyRateCheckToggle": {
"message": "Mostrar saldo y verificador de precios de tokens"
},
"currencyRateCheckToggleDescription": {
"message": "Utilizamos API de $1 y $2 para mostrar su saldo y el precio del token. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Símbolo de moneda"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Depositar"
},
"depositCrypto": {
"message": "Deposite $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Más información"
},
@ -992,15 +964,108 @@
"description": {
"message": "Descripción"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Este error podría ser intermitente, así que intente reiniciar la extensión o desactive MetaMask Desktop."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask tuvo problemas al iniciar"
},
"desktopConnectionLostErrorDescription": {
"message": "Asegúrese de tener la aplicación de escritorio en funcionamiento o deshabilite MetaMask Desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "Se perdió la conexión de MetaMask Desktop"
},
"desktopDisableButton": {
"message": "Deshabilitar la aplicación Desktop"
},
"desktopDisableErrorCTA": {
"message": "Deshabilitar MetaMask Desktop"
},
"desktopEnableButton": {
"message": "Habilitar la aplicación Desktop"
},
"desktopEnableButtonDescription": {
"message": "Haga clic para ejecutar todos los procesos en segundo plano en la aplicación de escritorio."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Volver a la página de configuración"
},
"desktopErrorRestartMMCTA": {
"message": "Reiniciar MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Descargar MetaMask Desktop"
},
"desktopNotFoundErrorDescription1": {
"message": "Asegúrese de tener la aplicación de escritorio en funcionamiento."
},
"desktopNotFoundErrorDescription2": {
"message": "Si no tiene una aplicación de escritorio instalada, descárguela desde el sitio web de MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "No se encontró MetaMask Desktop"
},
"desktopOpenOrDownloadCTA": {
"message": "Abrir MetaMask Desktop"
},
"desktopOutdatedErrorCTA": {
"message": "Actualizar MetaMask Desktop"
},
"desktopOutdatedErrorDescription": {
"message": "Su aplicación de escritorio MetaMask debe actualizarse."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop está desactualizada"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Actualizar la extensión MetaMask"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Su extensión MetaMask debe actualizarse."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "La extensión MetaMask está desactualizada"
},
"desktopPageDescription": {
"message": "Si el emparejamiento es exitoso, la extensión se reiniciará y deberá volver a ingresar su contraseña."
},
"desktopPageSubTitle": {
"message": "Abra su MetaMask Desktop y escriba este código"
},
"desktopPageTitle": {
"message": "Emparejar con Desktop"
},
"desktopPairedWarningDeepLink": {
"message": "Vaya a Configuración en MetaMask Desktop"
},
"desktopPairedWarningDescription": {
"message": "Si desea iniciar un nuevo emparejamiento, elimine la conexión actual."
},
"desktopPairedWarningTitle": {
"message": "MM Desktop ya está emparejada"
},
"desktopPairingExpireMessage": {
"message": "El código caduca en $1 segundos"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Volver a MetaMask Inicio"
},
"desktopUnexpectedErrorDescription": {
"message": "Verifique su MetaMask Desktop para restaurar la conexión"
},
"desktopUnexpectedErrorTitle": {
"message": "Algo salió mal..."
},
"details": {
"message": "Detalles"
},
"directDepositCrypto": {
"message": "Deposite directamente $1"
},
"directDepositCryptoExplainer": {
"message": "Si ya tiene algo de $1, la forma más rápida de obtener $1 en su nueva billetera mediante depósito directo."
},
"disabledGasOptionToolTipMessage": {
"message": "\"1$\" está desactivado porque no cumple el mínimo de un aumento del 10% respecto a la tarifa de gas original.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Utilice la API de OpenSea para obtener los datos de NFT. La autodetección de NFT depende de la API de OpenSea y no estará disponible si la API está desactivada."
},
"enableOpenSeaSecurityProvider": {
"message": "Habilitar proveedor de seguridad"
},
"enableSmartTransactions": {
"message": "Habilitar transacciones inteligentes"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Ver en Etherscan"
},
"expandExperience": {
"message": "Amplíe su experiencia web3"
},
"expandView": {
"message": "Expandir vista"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Ver detalles",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Añadido el",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Gas usado"
},
"gdprMessage": {
"message": "Estos datos son agregados y, por lo tanto, son anónimos para los fines del Reglamento General de Protección de Datos (UE) 2016/679. Para obtener más información relacionada con nuestras prácticas de seguridad, consulte $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Política de privacidad aquí",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "General"
},
"getEther": {
"message": "Obtener ether"
},
"getEtherFromFaucet": {
"message": "Obtenga Ether de un faucet para la red de $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Reciba advertencias de OpenSea cada vez que reciba una solicitud maliciosa conocida."
},
"goBack": {
"message": "Volver"
@ -1545,6 +1598,32 @@
"history": {
"message": "Historial"
},
"holdToReveal": {
"message": "Mantenga presionado para mostrar la SRP"
},
"holdToRevealContent1": {
"message": "Su frase secreta de recuperación proporciona $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "acceso completo a su billetera y fondos.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "No comparta esto con nadie. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "El soporte de MetaMask no solicitará esto,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "pero los defraudadores sí.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Mantenga segura su SRP"
},
"ignoreAll": {
"message": "Ignorar todo"
},
@ -1577,7 +1656,7 @@
"message": "Importar página de NFT"
},
"importNFTTokenIdToolTip": {
"message": "El ID de un coleccionable es un identificador único, ya que no hay dos NFT iguales. Nuevamente, en OpenSea este número está en 'Detalles'. Anótalo o cópialo en tu portapapeles."
"message": "La ID de un NFT es un identificador único, ya que no hay dos NFT iguales. Nuevamente, en OpenSea, este número se encuentra en 'Detalles'. Tome nota de ello o cópielo en su portapapeles."
},
"importNFTs": {
"message": "AGREGAR NFT"
@ -1724,9 +1803,6 @@
"message": "Archivo JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "para controlar sus tokens y NFT en todas las cuentas y redes."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Última conexión"
},
"lastPriceSold": {
"message": "Precio de la última venta"
},
"lastSold": {
"message": "Última venta"
},
"learnCancelSpeeedup": {
"message": "Aprenda cómo $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "¿Le gustaría agregar estos tokens?"
},
"lineatestnet": {
"message": "Red de prueba Linea Goerli"
},
"link": {
"message": "Vínculo"
},
@ -1867,15 +1952,12 @@
"message": "Crear un nuevo canje"
},
"makeSureNoOneWatching": {
"message": "Asegúrese de que no haya nadie mirando la pantalla",
"message": "Asegúrese de que nadie esté mirando",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "Datos con formato incorrecto"
},
"manageSnaps": {
"message": "Administre sus complementos instalados"
},
"max": {
"message": "Máx."
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Versión de MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Permitirle siempre optar por no participar a través de Configuración"
},
"metametricsCommitmentsBoldNever": {
"message": "Nunca",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask…"
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 recopilará su dirección IP completa",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 recopilará claves, direcciones, transacciones, saldos, hashes o cualquier otra información personal",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 venderá datos con afán de lucro. ¡Jamás!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Enviar eventos de vistas de página y clics anónimos"
},
"metametricsHelpImproveMetaMask": {
"message": "Ayúdenos a mejorar MetaMask"
},
"metametricsOptInDescription": {
"message": "A MetaMask le gustaría recopilar datos de uso para entender mejor cómo los usuarios interactúan con la extensión. Estos datos se usarán para mejorar de manera continua la usabilidad y la experiencia de usuario de nuestro producto y del ecosistema de Ethereum."
"metrics": {
"message": "Indicadores"
},
"mismatchedChainLinkText": {
"message": "verifique los detalles de la red",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "La función 'Sincronizar con la extensión' está temporalmente desactivada. Si desea utilizar su cartera de extensión en MetaMask móvil, haga lo siguiente en la aplicación móvil: vuelva a las opciones de configuración de la cartera y seleccione la opción 'Importar con frase secreta de recuperación'. Use la frase secreta de su cartera de extensión para importar su cartera al móvil."
},
"moreComingSoon": {
"message": "Más próximamente..."
},
"mustSelectOne": {
"message": "Debe seleccionar al menos 1 token."
},
@ -1992,10 +2049,6 @@
"message": "El token nativo en esta red es de $1. Es el token utilizado para las tarifas de gas.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Para interactuar con aplicaciones descentralizadas usando MetaMask, necesitará $1 en su billetera.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "¿Necesita ayuda? Comuníquese con $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Cuenta $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "¡El coleccionable fue añadido con éxito!"
},
"newContact": {
"message": "Contacto nuevo"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "¡\"$1\" se añadió con éxito!"
},
"newNftAddedMessage": {
"message": "¡NFT se agregó correctamente!"
},
"newPassword": {
"message": "Contraseña nueva (mín. de 8 caracteres)"
},
@ -2138,8 +2191,18 @@
"message": "El nonce es superior al nonce sugerido de $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "No se puede agregar el NFT porque los detalles de propiedad no coinciden. Asegúrese de haber ingresado la información correcta."
},
"nftAddressError": {
"message": "Este token es un NFT. Añadir a $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Descargo de responsabilidad: MetaMask extrae el archivo multimedia de la URL de origen. Esta URL a veces es modificada por el mercado en el que se acuñó el NFT."
},
"nftOptions": {
"message": "Opciones de NFT"
},
"nftTokenIdPlaceholder": {
"message": "Ingrese el id del token"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "No hay complementos instalados"
},
"noThanks": {
"message": "No, gracias"
},
"noThanksVariant2": {
"message": "No, gracias."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "No hay gas suficiente"
},
"notNow": {
"message": "Por ahora no"
},
"notifications": {
"message": "Notificaciones"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Mostrar configuración de seguridad y privacidad"
},
"notifications17Description": {
"message": "Esta actualización ofrece más opciones para que pueda controlar mejor su propia privacidad. Agregamos más transparencia sobre cómo se recopilan los datos y opciones más claras para compartirlos. Cambie sus preferencias o elimine los datos de uso de la extensión a través de la configuración de Seguridad y privacidad."
},
"notifications17Title": {
"message": "Configuración de Seguridad y privacidad"
},
@ -2525,11 +2585,11 @@
"message": "¡Su instalación de MetaMask ha finalizado!"
},
"onboardingShowIncomingTransactionsDescription": {
"message": "Mostrar las transacciones entrantes en su cartera depende de la comunicación con $1. Etherscan tendrá acceso a su dirección de Ethereum y a su dirección IP. Ver $2.",
"message": "Mostrar las transacciones entrantes en su cartera depende de la comunicación con $1. Etherscan tendrá acceso a su dirección de Ethereum y a su dirección IP. Ver 2$.",
"description": "$1 is a clickable link with text defined by the 'etherscan' key. $2 is a clickable link with text defined by the 'privacyMsg' key."
},
"onboardingUsePhishingDetectionDescription": {
"message": "Las alertas de detección de phishing se basan en la comunicación con $1. jsDeliver tendrá acceso a su dirección IP. Ver $2.",
"message": "Las alertas de detección de phishing se basan en la comunicación con $1. jsDeliver tendrá acceso a su dirección IP. Ver 2$.",
"description": "The $1 is the word 'jsDeliver', from key 'jsDeliver' and $2 is the words Privacy Policy from key 'privacyMsg', both separated here so that it can be wrapped as a link"
},
"onlyAddTrustedNetworks": {
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Abrir en el explorador de bloques"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "Proveedor de seguridad de OpenSea"
},
"openSeaDescription": {
"message": "OpenSea es el primer proveedor de seguridad para esta función. ¡Más proveedores próximamente!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Opcional"
},
"optionalWithParanthesis": {
"message": "(Opcional)"
},
"options": {
"message": "Opciones"
},
"or": {
"message": "o"
},
@ -2564,6 +2639,9 @@
"message": "otros complementos",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Su navegador está desactualizado. Si no actualiza su navegador, no podrá obtener los parches de seguridad y las nuevas funciones de MetaMask."
},
"padlock": {
"message": "Candado"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Revocado en esta actualización"
},
"permission_accessNamedSnap": {
"message": "Conectarse a $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Acceso a internet.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Conéctese al complemento de $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Programar y ejecutar acciones periódicas.",
@ -2671,6 +2753,10 @@
"message": "Controle sus cuentas y activos \"$1\".",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Controle sus cuentas y activos $1.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Almacene y administre sus datos en su dispositivo.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Ver su clave pública para $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Vea su clave pública para $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Permisos"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Redes populares personalizadas"
},
"portfolioSite": {
"message": "Sitio del portafolio"
"portfolio": {
"message": "Portafolio"
},
"preferredLedgerConnectionType": {
"message": "Tipo de conexión a Ledger preferida",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "Eliminar NFT"
},
"removeNftMessage": {
"message": "¡El NFT se eliminó con éxito!"
},
"removeSnap": {
"message": "Eliminar complemento"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "reemplazar"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "El proveedor de seguridad no ha compartido detalles adicionales"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Solicitud marcada como maliciosa"
},
"requestMayNotBeSafe": {
"message": "Es posible que la solicitud no sea segura"
},
"requestMayNotBeSafeError": {
"message": "El proveedor de seguridad no detectó ninguna actividad maliciosa conocida, pero es posible que no sea seguro continuar."
},
"requestNotVerified": {
"message": "Solicitud no verificada"
},
"requestNotVerifiedError": {
"message": "Debido a un error, el proveedor de seguridad no verificó esta solicitud. Proceda con precaución."
},
"requestsAwaitingAcknowledgement": {
"message": "solicitudes en espera de confirmación"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Restablecer"
},
"resetAccount": {
"message": "Restablecer cuenta"
},
"resetAccountDescription": {
"message": "Restablecer la cuenta borrará el historial de transacciones. Esto no cambiará los saldos de las cuentas ni se le pedirá que vuelva a escribir la frase secreta de recuperación."
},
"resetWallet": {
"message": "Restablecer cartera"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Revelar frase secreta de recuperación"
},
"revealSeedWordsDescription": {
"message": "Si alguna vez cambia de explorador o de equipo, necesitará esta frase secreta de recuperación para acceder a sus cuentas. Guárdela en un lugar seguro y secreto."
"revealSeedWordsDescription1": {
"message": "La $1 proporciona la $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask es un $1. Eso significa que usted es el propietario de su SRP.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "acceso completo a su billetera y fondos.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "billetera no custodiada"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Frase secreta de recuperación (SRP)"
},
"revealSeedWordsText": {
"message": "Texto"
},
"revealSeedWordsWarning": {
"message": "Estas palabras pueden usarse para robar todas sus cuentas."
"message": "Asegúrese de que nadie esté mirando su pantalla. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "NO comparta esta frase con nadie."
"revealSeedWordsWarning2": {
"message": "El soporte técnico de MetaMask nunca se lo solicitará.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Revelar frase semilla"
@ -2941,11 +3068,11 @@
"message": "Revise su límite de gasto"
},
"revokeAllTokensTitle": {
"message": "¿Revocar permiso para acceder a todo su $1?",
"message": "¿Revocar el permiso para acceder y transferir todos sus $1?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "Al revocar permisos, el/la siguiente $1 no tendrá más acceso a su $2",
"message": "Esto revoca el permiso para que un tercero acceda y transfiera la totalidad de su $1 sin previo aviso.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Guardar"
},
"saveAsCsvFile": {
"message": "Guardar como archivo CSV"
},
"scanInstructions": {
"message": "Ponga el código QR frente a la cámara"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Si no ve sus cuentas existentes en Ledger a continuación, intente cambiar de ruta de acceso a \"Legacy (MEW / MyCrypto)\""
},
"selectProvider": {
"message": "Seleccionar proveedores:"
},
"selectType": {
"message": "Seleccionar tipo"
},
@ -3246,16 +3373,9 @@
"message": "Está otorgando acceso clave de $2 al complemento \"$1\". Esto es irrevocable y le otorga a \"$1\" el control de sus cuentas y activos de $2. Asegúrese de que confía en \"$1\" antes de continuar.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Este complemento solicita los siguientes permisos:"
},
"snapUpdate": {
"message": "Actualizar complemento"
},
"snapUpdateExplanation": {
"message": "$1 necesita una versión más reciente de su complemento.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Complementos"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "El límite de gastos es demasiado alto"
},
"spendingCap": {
"message": "Límite de gasto"
},
"spendingCapError": {
"message": "Error: ingrese solo números"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "No conectado"
},
"staySafeWithOpenSea": {
"message": "Manténgase seguro con OpenSea"
},
"step1LatticeWallet": {
"message": "Conecte su Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "Cuota de MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Buscamos el mejor precio en las fuentes de liquidez más importantes, todo el tiempo. Se incorpora de manera automática a esta cotización una cuota del $1 %.",
"message": "La cuota de $1% se incluye automáticamente en esta cotización. Lo paga a cambio de una licencia para usar el software de agregación de información del proveedor de liquidez de MetaMask.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Términos de servicio"
},
"testFaucet": {
"message": "Faucet de prueba"
},
"testNetworks": {
"message": "Redes de prueba"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Cosas a tener en cuenta:"
},
"thisIsBasedOn": {
"message": "Esto se basa en información de "
},
"thisServiceIsExperimental": {
"message": "Este servicio es experimental"
},
"time": {
"message": "Tiempo"
},
@ -3914,6 +4043,12 @@
"message": "Para: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Actívelo para permitir que las dapps soliciten su firma mediante solicitudes eth_sign. eth_sign es un método de firma abierto que le permite firmar un hash arbitrario, lo que lo convierte en un peligroso riesgo de phishing. Solo firme solicitudes de eth_sign si puede leer lo que está firmando y confiar en el origen de la solicitud."
},
"toggleEthSignField": {
"message": "Alternar solicitudes de eth_sign"
},
"toggleTestNetworks": {
"message": "$1 redes de prueba",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Ya se agregó el token."
},
"tokenAutoDetection": {
"message": "Detección automática de tokens"
},
"tokenContractAddress": {
"message": "Dirección de contrato de token"
},
@ -4064,10 +4202,10 @@
"message": "Transacción reenviada con la cuota de gas aumentada a $1 en $2"
},
"transactionSecurityCheck": {
"message": "Control de seguridad de transacciones"
"message": "Habilitar proveedores de seguridad de transacciones"
},
"transactionSecurityCheckDescription": {
"message": "Actívelo para permitir que un tercero (OpenSea) revise todas sus transacciones y solicitudes de firma y le advierta sobre solicitudes maliciosas conocidas."
"message": "Usamos API de terceros para detectar y mostrar los riesgos involucrados en transacciones sin firmar y solicitudes de firma antes de que las firme. Estos servicios tendrán acceso a su transacción no firmada y solicitudes de firma, la dirección de su cuenta y su idioma preferido."
},
"transactionSubmitted": {
"message": "Transacción enviada con una cuota de gas de $1 en $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Vuelva a intentarlo"
},
"tryOur": {
"message": "Pruebe nuestro"
},
"turnOnTokenDetection": {
"message": "Activar la detección mejorada de tokens"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "El envío de tokens coleccionables (ERC-721) no se admite actualmente",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "Actualmente no se admite el envío de tokens NFT (ERC-721)",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "No podemos verificar este contrato. Asegúrese de que confía en esta dirección."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "En este momento, la red $1 está utilizando esta dirección URL."
},
"useCollectibleDetection": {
"message": "Detectar NFTs automáticamente"
},
"useCollectibleDetectionDescription": {
"message": "La visualización de medios y datos de NFT puede exponer su dirección IP a servidores centralizados. Las API de terceros (como OpenSea) se utilizan para detectar NFT en su cartera. Esto expone la dirección de su cuenta con esos servicios. Deje esta opción desactivada si no quiere que la aplicación extraiga datos de esos servicios."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Además, tenga en cuenta que:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Los metadatos de NFT pueden contener enlaces a sitios fraudulentos o de phishing."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Cualquiera puede enviar NFT a su cuenta. Esto puede incluir contenido ofensivo que podría mostrarse automáticamente en su billetera."
},
"useDefault": {
"message": "Uso por defecto"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Procesamos cuentas por lotes y consultamos a Infura para mostrar sus saldos de manera receptiva. Si desactiva esta opción, solo se consultarán las cuentas activas. Algunas dapps no funcionarán a menos que conecte su biletera."
},
"useNftDetection": {
"message": "Detección automática de NFT"
},
"useNftDetectionDescription": {
"message": "Usamos API de terceros para detectar NFT en su billetera, lo que significa que su dirección IP puede estar expuesta a servidores centralizados. Hay algunas cosas que debe tener cuidado al habilitar esta función."
},
"useNftDetectionDescriptionLine2": {
"message": "La dirección de su cuenta será visible para las API de terceros."
},
"useNftDetectionDescriptionLine3": {
"message": "La metadata de un NFT puede contener enlaces a sitios fraudulentos o de phishing."
},
"useNftDetectionDescriptionLine4": {
"message": "Cualquiera puede enviar un NFT no solicitado a su cuenta. Esto puede incluir contenido ofensivo que podría mostrarse automáticamente en su billetera."
},
"useNftDetectionDescriptionLine5": {
"message": "Deje esta función desactivada si no desea que la aplicación extraiga datos de esos servicios."
},
"usePhishingDetection": {
"message": "Usar detección de phishing"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Ver"
},
"viewAccount": {
"message": "Ver cuenta"
},
"viewAllDetails": {
"message": "Ver todos los detalles"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 El contrato podría gastar todo su saldo de tokens sin previo aviso o consentimiento. Protéjase personalizando un límite de gasto más bajo.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Débil"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Sí"
},
"yesLetsTry": {
"message": "Sí, intentémoslo"
},
"youHaveAddedAll": {
"message": "Ha agregado todas las redes populares. Puede descubrir más redes $1 o puede $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "Sus NFT podrían estar en riesgo"
},
"yourPrivateSeedPhrase": {
"message": "Su frase secreta de recuperación privada"
"message": "Su frase secreta de recuperación"
},
"zeroGasPriceOnSpeedUpError": {
"message": "No hay entradas sobre el precio del gas al acelerar la transacción"

View File

@ -163,9 +163,6 @@
"advancedPriorityFeeToolTip": {
"message": "La tarifa de prioridad (también llamada “propina del minero”) va directamente a los mineros para incentivarlos a priorizar su transacción."
},
"affirmAgree": {
"message": "Acepto"
},
"alertDisableTooltip": {
"message": "Esto se puede modificar en \"Configuración > Alertas\""
},
@ -235,12 +232,6 @@
"assets": {
"message": "Activos"
},
"attemptToCancel": {
"message": "¿Intentar cancelar?"
},
"attemptToCancelDescription": {
"message": "Enviar este intento no garantiza que se cancelará la transacción original. Si el intento de cancelación se realiza correctamente, se le cobrará la tarifa de transacción anterior."
},
"attemptingConnect": {
"message": "Intentando una conexión a la cadena de bloques."
},
@ -326,12 +317,6 @@
"buy": {
"message": "Comprar"
},
"buyWithWyre": {
"message": "Comprar $1 con Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre le permite usar una tarjeta de débito para depositar $1 directamente en su cuenta de MetaMask."
},
"bytes": {
"message": "Bytes"
},
@ -358,9 +343,6 @@
"message": "Para $1 una transacción, la tarifa de gas debe aumentar al menos un 10% para que sea reconocida por la red.",
"description": "$1 is string 'cancel' or 'speed up'"
},
"cancellationGasFee": {
"message": "Tarifa de gas por cancelación"
},
"cancelled": {
"message": "Cancelado"
},
@ -469,6 +451,9 @@
"connectingToGoerli": {
"message": "Estableciendo conexión a la red de prueba Goerli"
},
"connectingToLineaTestnet": {
"message": "Estableciendo conexión a la red de prueba Linea Goerli"
},
"connectingToMainnet": {
"message": "Estableciendo conexión a la red principal de Ethereum"
},
@ -481,12 +466,6 @@
"continue": {
"message": "Continuar"
},
"continueToTransak": {
"message": "Continuar a Transak"
},
"continueToWyre": {
"message": "Continuar a Wyre"
},
"contract": {
"message": "Contrato"
},
@ -905,7 +884,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Ver detalles",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Añadido el",
@ -1039,24 +1018,9 @@
"gasUsed": {
"message": "Gas usado"
},
"gdprMessage": {
"message": "Estos datos son agregados y, por lo tanto, son anónimos para los fines del Reglamento General de Protección de Datos (UE) 2016/679. Para obtener más información relacionada con nuestras prácticas de seguridad, consulte $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Política de privacidad aquí",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "General"
},
"getEther": {
"message": "Obtener ether"
},
"getEtherFromFaucet": {
"message": "Obtener ether de un faucet para $1",
"description": "Displays network name for Ether faucet"
},
"goBack": {
"message": "Volver"
},
@ -1308,6 +1272,9 @@
"likeToImportTokens": {
"message": "¿Quiere agregar estos tokens?"
},
"lineatestnet": {
"message": "Red de prueba Linea Goerli"
},
"link": {
"message": "Enlace"
},
@ -1392,37 +1359,6 @@
"metamaskVersion": {
"message": "Versión de MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Permitirle siempre excluirse a través de Configuración"
},
"metametricsCommitmentsBoldNever": {
"message": "Nunca",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask..."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 recopilará su dirección IP completa",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 recopilará claves, direcciones, transacciones, saldos, hashes o cualquier otra información personal",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 venderá datos con fines de lucro. ¡Jamás!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Enviar eventos de vistas de página y clics anónimos"
},
"metametricsHelpImproveMetaMask": {
"message": "Ayúdenos a mejorar MetaMask"
},
"metametricsOptInDescription": {
"message": "A MetaMask le gustaría recopilar datos de uso para entender mejor cómo interactúan los usuarios con la extensión. Estos datos se usarán para mejorar de manera continua la usabilidad y la experiencia de usuario de nuestro producto y del ecosistema de Ethereum."
},
"mismatchedChainLinkText": {
"message": "verifique los detalles de la red",
"description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key."
@ -1525,9 +1461,6 @@
"message": "Cuenta $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "¡El coleccionable fue añadido con éxito!"
},
"newContact": {
"message": "Contacto nuevo"
},
@ -1540,6 +1473,9 @@
"newNetworkAdded": {
"message": "¡\"$1\" se añadió con éxito!"
},
"newNftAddedMessage": {
"message": "¡El coleccionable fue añadido con éxito!"
},
"newPassword": {
"message": "Contraseña nueva (mín. de 8 caracteres)"
},
@ -1574,9 +1510,6 @@
"noNFTs": {
"message": "Aún no hay NFT"
},
"noThanks": {
"message": "No, gracias"
},
"noTransactions": {
"message": "No tiene transacciones"
},
@ -1975,12 +1908,6 @@
"reset": {
"message": "Restablecer"
},
"resetAccount": {
"message": "Restablecer cuenta"
},
"resetAccountDescription": {
"message": "Al restablecer la cuenta se borrará el historial de transacciones. Esto no cambiará los saldos de las cuentas ni se le pedirá que vuelva a escribir la frase secreta de recuperación."
},
"restore": {
"message": "Restaurar"
},
@ -1993,14 +1920,9 @@
"revealSeedWords": {
"message": "Revelar frase secreta de recuperación"
},
"revealSeedWordsDescription": {
"message": "Si alguna vez cambia de explorador o de equipo, necesitará esta frase secreta de recuperación para acceder a sus cuentas. Guárdela en un lugar seguro y secreto."
},
"revealSeedWordsWarning": {
"message": "Estas palabras pueden usarse para robar todas sus cuentas."
},
"revealSeedWordsWarningTitle": {
"message": "¡NO comparta esta frase con nadie!"
"message": "Estas palabras pueden usarse para robar todas sus cuentas.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Nueva dirección URL de RPC"
@ -2008,9 +1930,6 @@
"save": {
"message": "Guardar"
},
"saveAsCsvFile": {
"message": "Guardar como archivo CSV"
},
"scanInstructions": {
"message": "Ponga el código QR frente a la cámara"
},
@ -2672,9 +2591,6 @@
"termsOfService": {
"message": "Términos de servicio"
},
"testFaucet": {
"message": "Probar faucet"
},
"time": {
"message": "Tiempo"
},
@ -2893,7 +2809,7 @@
},
"unsendableAsset": {
"message": "El envío de tokens coleccionables (ERC-721) no se admite actualmente",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"updatedWithDate": {
"message": "$1 actualizado"
@ -2904,10 +2820,10 @@
"urlExistsErrorMsg": {
"message": "En este momento, la red $1 está utilizando esta dirección URL."
},
"useCollectibleDetection": {
"useNftDetection": {
"message": "Autodetectar NFT"
},
"useCollectibleDetectionDescription": {
"useNftDetectionDescription": {
"message": "La visualización de medios y datos de NFT puede exponer su dirección IP a servidores centralizados. Las API de terceros (como OpenSea) se utilizan para detectar NFT en su cartera. Esto expone la dirección de su cuenta con esos servicios. Deje esta opción desactivada si no quiere que la aplicación extraiga datos de esos servicios."
},
"usePhishingDetection": {
@ -2934,9 +2850,6 @@
"message": "Verifique este token en $1 y asegúrese de que sea el token con el que quiere realizar la transacción.",
"description": "Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
},
"viewAccount": {
"message": "Ver cuenta"
},
"viewAllDetails": {
"message": "Ver todos los detalles"
},
@ -3037,9 +2950,6 @@
"message": "$1 de $2 están pendientes",
"description": "$1 and $2 are intended to be two numbers, where $2 is a total number of pending confirmations, and $1 is a count towards that total"
},
"yesLetsTry": {
"message": "Sí, intentémoslo"
},
"youNeedToAllowCameraAccess": {
"message": "Necesita permitir el acceso a la cámara para usar esta función."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Vara"
},
"attemptToCancel": {
"message": "Tühistamiskatse?"
},
"attemptToCancelDescription": {
"message": "Selle katse esitamine ei taga teie originaaltehingu tühistamist. Kui tühistamiskatse on edukas, võetakse teilt ülaltoodud tehingutasu."
},
"attemptingConnect": {
"message": "Plokiahelaga ühenduse loomise katse."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Teie lehitsejat ei toetata..."
},
"buyWithWyre": {
"message": "Ostke $1 -d Wyre'iga"
},
"buyWithWyreDescription": {
"message": "Wyre võimaldab kasutada krediitkaarti, et teha $1 sissemakse otse MetaMaski kontole."
},
"bytes": {
"message": "Baidid"
},
"cancel": {
"message": "Tühista"
},
"cancellationGasFee": {
"message": "Tühistamise gaasitasu"
},
"cancelled": {
"message": "Tühistatud"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Ühendamine Goerli testvõrguga"
},
"connectingToLineaTestnet": {
"message": "Ühendamine Linea Goerli testvõrguga"
},
"connectingToMainnet": {
"message": "Ühenduse loomine peamise Etherumi võrguga"
},
"continueToWyre": {
"message": "Ava Wyre"
},
"contractDeployment": {
"message": "Lepingu juurutamine"
},
@ -332,13 +317,6 @@
"general": {
"message": "Üldine teave"
},
"getEther": {
"message": "Hankige eetrit"
},
"getEtherFromFaucet": {
"message": "Hankige kraanist eetrit $1eest",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli testvõrk"
},
@ -433,6 +411,9 @@
"likeToImportTokens": {
"message": "Kas soovite need load lisada?"
},
"lineatestnet": {
"message": "Linea Goerli testvõrk"
},
"links": {
"message": "Lingid"
},
@ -629,26 +610,15 @@
"reset": {
"message": "Lähtesta"
},
"resetAccount": {
"message": "Lähtesta konto"
},
"resetAccountDescription": {
"message": "Konto lähtestamine tühjendab tehingute ajaloo."
},
"restore": {
"message": "Taasta"
},
"revealSeedWords": {
"message": "Kuva seemnesõnu"
},
"revealSeedWordsDescription": {
"message": "Kui vahetate veebilehitsejat või arvutit, vajate oma kontodele ligipääsemiseks seemnefraasi. Hoidke seda turvalises ja salajases kohas."
},
"revealSeedWordsWarning": {
"message": "Neid sõnu saab kasutada kõigi teie kontode tühjendamiseks."
},
"revealSeedWordsWarningTitle": {
"message": "ÄRGE jagage seda fraasi mitte kellegagi!"
"message": "Neid sõnu saab kasutada kõigi teie kontode tühjendamiseks.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Uus RPC URL"
@ -656,9 +626,6 @@
"save": {
"message": "Salvesta"
},
"saveAsCsvFile": {
"message": "Salvesta CSV-failina"
},
"scanInstructions": {
"message": "Asetage QR-kood kaamera ette"
},
@ -794,9 +761,6 @@
"terms": {
"message": "Teenusetingimused"
},
"testFaucet": {
"message": "Testkraan"
},
"tips": {
"message": "Preemiad"
},
@ -915,9 +879,6 @@
"userName": {
"message": "Kasutajanimi"
},
"viewAccount": {
"message": "Kuva konto"
},
"viewContact": {
"message": "Kuva kontakt"
},
@ -927,9 +888,6 @@
"welcomeBack": {
"message": "Tere tulemast tagasi!"
},
"yesLetsTry": {
"message": "Jah, proovime"
},
"youNeedToAllowCameraAccess": {
"message": "Selle funktsiooni kasutamiseks peate lubaga kaamera ligipääsu."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "سرمایه"
},
"attemptToCancel": {
"message": "تلاش یا لغو؟"
},
"attemptToCancelDescription": {
"message": "تسلیم این تلاش لغو معامله اصلی تان را تضمین نمیکند. در صورتیکه تلاش لغو موفق باشد، بر شما فیس معامله فوق الذکر چارج خواهد شد."
},
"attemptingConnect": {
"message": "در حال تلاش برای اتصال با زنجیره بلوکی"
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "مرورگر شما پشتیبانی نمیشود"
},
"buyWithWyre": {
"message": "$1 را توسط Wyre خریداری نمایید"
},
"buyWithWyreDescription": {
"message": "Wyre به شما اجازه میدهد تا یک کردیت کارت را جهت پرداخت 1$ مستقیمًا به حساب MetaMask تان استفاده نمایید."
},
"bytes": {
"message": "بایت ها"
},
"cancel": {
"message": "لغو"
},
"cancellationGasFee": {
"message": "لغو فیس گاز"
},
"cancelled": {
"message": "لغو شد"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "در حال اتصال به شبکه آزمایشی Goerli "
},
"connectingToLineaTestnet": {
"message": "در حال اتصال به شبکه آزمایشی Linea Goerli"
},
"connectingToMainnet": {
"message": "در حال اتصال به شبکه اصلی ایتریم"
},
"continueToWyre": {
"message": "ادامه به Wyre"
},
"contractDeployment": {
"message": "تطبیق قرارداد"
},
@ -336,13 +321,6 @@
"general": {
"message": "عمومی"
},
"getEther": {
"message": "اتر را بگیرید"
},
"getEtherFromFaucet": {
"message": "اخذ ایتر از یک فاست برای 1$1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "شبکه آزمایشی Goerli"
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "آیا میخواهید این رمزیاب ها را اضافه نمایید؟"
},
"lineatestnet": {
"message": "شبکه آزمایشی Linea Goerli"
},
"links": {
"message": "لینک ها"
},
@ -639,26 +620,15 @@
"reset": {
"message": "بازنشانی"
},
"resetAccount": {
"message": "تنظیم مجدد حساب"
},
"resetAccountDescription": {
"message": "دوباره سازی حساب تاریخچه معامله تان را پاک میکند."
},
"restore": {
"message": "بازیابی"
},
"revealSeedWords": {
"message": "کلمات بازیاب را آشکار کنید"
},
"revealSeedWordsDescription": {
"message": "در صورتیکه شما معمولًا براوزر ها را تغییر داده یا کمپیوتر ها را انتقال میدهید، شما این عبارت آغازین را نیاز خواهید داشت تا به حساب های تان دسترسی داشته باشید. آنها را در یکجای مصؤن و مخفی نگهدارید."
},
"revealSeedWordsWarning": {
"message": "این کلمات را میتوان جهت سرقت همه حساب های تان استفاده نمود."
},
"revealSeedWordsWarningTitle": {
"message": "این عبارت را با هیچکس شریک نسازید!"
"message": "این کلمات را میتوان جهت سرقت همه حساب های تان استفاده نمود.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "RPC URL جدید"
@ -666,9 +636,6 @@
"save": {
"message": "ذخیره"
},
"saveAsCsvFile": {
"message": "ذخیره منحیث فایل CSV"
},
"scanInstructions": {
"message": "رمز QR را در مقابل کمره تان قرار دهید"
},
@ -804,9 +771,6 @@
"terms": {
"message": "شرایط استفاده"
},
"testFaucet": {
"message": " آزمایش فاسیت یا Test Faucet "
},
"tips": {
"message": "انعام"
},
@ -925,9 +889,6 @@
"userName": {
"message": "نام کاربری"
},
"viewAccount": {
"message": "مشاهده حساب"
},
"viewContact": {
"message": "مشاهده تماس"
},
@ -937,9 +898,6 @@
"welcomeBack": {
"message": "بازگشت شما را خوش‌آمد می‌گوییم!"
},
"yesLetsTry": {
"message": "بلی، بیایید امتحان کنیم"
},
"youNeedToAllowCameraAccess": {
"message": "لازم است تا شما جهت استفاده از این مشخصه، به کمره اجازه دسترسی بدهید."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Omaisuuserä"
},
"attemptToCancel": {
"message": "Yritetäänkö peruuttaa?"
},
"attemptToCancelDescription": {
"message": "Tämän yrityksen lähettäminen ei takaa, että alkuperäinen tapahtuma peruutettaisiin. Mikäli peruutusyritys onnistuu, sinulta veloitetaan yllä mainittu tapahtumamaksu."
},
"attemptingConnect": {
"message": "Yritetään yhdistää lohkoketjuun."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Selaintasi ei tueta..."
},
"buyWithWyre": {
"message": "Osta $1 :ta Wyrella"
},
"buyWithWyreDescription": {
"message": "Wyre antaa sinun käyttää luottokorttia, jotta voit tallettaa $1 :ta suoraan MetaMask-tilillesi."
},
"bytes": {
"message": "Tavua"
},
"cancel": {
"message": "Peruuta"
},
"cancellationGasFee": {
"message": "Peruutuksen gas-maksu"
},
"cancelled": {
"message": "Peruttu"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Yhdistetään Goerlin testiverkostoon"
},
"connectingToLineaTestnet": {
"message": "Yhdistetään Linea Goerli testiverkostoon"
},
"connectingToMainnet": {
"message": "Yhdistetään Ethereumin pääverkkoon"
},
"continueToWyre": {
"message": "Jatka Wyreen"
},
"contractDeployment": {
"message": "Sopimuksen käyttö"
},
@ -336,13 +321,6 @@
"general": {
"message": "Yleistä"
},
"getEther": {
"message": "Hanki Etheriä"
},
"getEtherFromFaucet": {
"message": "Hanki etheriä faucetista kohteelle $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli-testiverkko"
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "Haluaisitko lisätä nämä poletit?"
},
"lineatestnet": {
"message": "Linea-testiverkko"
},
"links": {
"message": "Linkit"
},
@ -636,26 +617,15 @@
"reset": {
"message": "Tyhjennä"
},
"resetAccount": {
"message": "Nollaa tili"
},
"resetAccountDescription": {
"message": "Tilisi nollaaminen tyhjentää tapahtumahistoriasi."
},
"restore": {
"message": "Palauta"
},
"revealSeedWords": {
"message": "Paljasta salaussanat"
},
"revealSeedWordsDescription": {
"message": "Mikäli vaihdat jossakin vaiheessa selainta tai tietokonetta, tarvitset tämän salaustekstin tiliesi käyttämiseen. Tallenna se johonkin turvalliseen ja salaiseen paikkaan."
},
"revealSeedWordsWarning": {
"message": "Näitä sanoja voidaan käyttää kaikkien tiliesi ryöstämiseen."
},
"revealSeedWordsWarningTitle": {
"message": "ÄLÄ jaa tätä tekstiä kenellekään!"
"message": "Näitä sanoja voidaan käyttää kaikkien tiliesi ryöstämiseen.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Uusi RPC:n URL"
@ -663,9 +633,6 @@
"save": {
"message": "Tallenna"
},
"saveAsCsvFile": {
"message": "Tallenna CSV-tiedostona"
},
"scanInstructions": {
"message": "Aseta QR-koodi kamerasi eteen"
},
@ -801,9 +768,6 @@
"terms": {
"message": "Käyttöehdot"
},
"testFaucet": {
"message": "Koe-faucet"
},
"tips": {
"message": "Tipit"
},
@ -922,9 +886,6 @@
"userName": {
"message": "Käyttäjätunnus"
},
"viewAccount": {
"message": "Näytä tili"
},
"viewContact": {
"message": "Näytä yhteyshenkilö"
},
@ -934,9 +895,6 @@
"welcomeBack": {
"message": "Tervetuloa takaisin!"
},
"yesLetsTry": {
"message": "Kyllä, kokeillaan"
},
"youNeedToAllowCameraAccess": {
"message": "Käyttääksesi tätä ominaisuutta sinun tarvitsee antaa kameralle käyttöoikeudet."
},

View File

@ -66,12 +66,6 @@
"approved": {
"message": "Inaprubahan"
},
"attemptToCancel": {
"message": "Subukang Kanselahin?"
},
"attemptToCancelDescription": {
"message": "Ang pagsusumite sa pagtangkang ito ay hindi makakagarantiya na nakansela ang iyong orihinal na transaksyon. Kung matagumpay ang pagtangkang magkansela, sisingilin sa iyo ang bayarin sa transaksyon sa itaas."
},
"attemptingConnect": {
"message": "Sinusubukang kumonekta sa blockchain."
},
@ -115,18 +109,9 @@
"browserNotSupported": {
"message": "Hindi sinusuportahan ang iyong Browser..."
},
"buyWithWyre": {
"message": "Bumili ng $1 gamit ang Wyre"
},
"buyWithWyreDescription": {
"message": "Binibigyang-daan ka ng Wyre na gumamit ng credit card para magdeposito ng $1 nang direkta sa iyong MetaMask account."
},
"cancel": {
"message": "Kanselahin"
},
"cancellationGasFee": {
"message": "Gas Fee sa Pagkansela"
},
"cancelled": {
"message": "Nakansela"
},
@ -157,12 +142,12 @@
"connectingToGoerli": {
"message": "Kumokonekta sa Goerli Test Network"
},
"connectingToLineaTestnet": {
"message": "Kumokonekta sa Linea Goerli Test Network"
},
"connectingToMainnet": {
"message": "Kumokonekta sa Ethereum Mainnet"
},
"continueToWyre": {
"message": "Magpatuloy sa Wyre"
},
"contractDeployment": {
"message": "Deployment ng Contract"
},
@ -305,13 +290,6 @@
"general": {
"message": "Pangkalahatan"
},
"getEther": {
"message": "Kumuha ng Ether"
},
"getEtherFromFaucet": {
"message": "Kumuha ng Ether mula sa isang faucet para sa $1",
"description": "Displays network name for Ether faucet"
},
"hardwareWalletConnected": {
"message": "Nakakonekta ang hardware wallet"
},
@ -566,26 +544,15 @@
"reset": {
"message": "I-reset"
},
"resetAccount": {
"message": "I-reset ang Account"
},
"resetAccountDescription": {
"message": "Kapag na-reset ang iyong account, maki-clear ang iyong kasaysayan ng transaksyon."
},
"restore": {
"message": "Ipanumbalik"
},
"revealSeedWords": {
"message": "Ipakita ang Seed Words"
},
"revealSeedWordsDescription": {
"message": "Kung lilipat ka ng browser o magpapalit ka ng computer, kakailanganin mo ang seed phrase na ito para ma-access ang iyong mga account. I-save ang mga iyon sa isang lugar na ligtas at lihim."
},
"revealSeedWordsWarning": {
"message": "Maaaring gamitin ang mga salitang ito para nakawin ang lahat ng iyong account."
},
"revealSeedWordsWarningTitle": {
"message": "HUWAG ibahagi ang pariralang ito sa kahit sino!"
"message": "Maaaring gamitin ang mga salitang ito para nakawin ang lahat ng iyong account.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Bagong RPC URL"
@ -593,9 +560,6 @@
"save": {
"message": "I-save"
},
"saveAsCsvFile": {
"message": "I-save bilang CSV File"
},
"scanInstructions": {
"message": "Ilagay ang QR code sa harap ng iyong camera"
},
@ -834,9 +798,6 @@
"usedByClients": {
"message": "Ginagamit ng iba't ibang client"
},
"viewAccount": {
"message": "Tingnan ang Account"
},
"viewContact": {
"message": "Tingnan ang Contact"
},
@ -846,9 +807,6 @@
"welcomeBack": {
"message": "Welcome Ulit!"
},
"yesLetsTry": {
"message": "Oo, subukan natin"
},
"youNeedToAllowCameraAccess": {
"message": "Kailangan mong payagan ang access sa camera para magamit ang feature na ito."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Les frais de priorité (aussi appelés « pourboire du mineur ») vont directement aux mineurs et les incitent à accorder la priorité à votre transaction."
},
"affirmAgree": {
"message": "Je suis daccord"
},
"airgapVault": {
"message": "Coffre-fort AirGap"
},
@ -332,6 +329,9 @@
"message": "Permettre à $1 de retirer et de dépenser jusquau montant suivant:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Vous devez faire preuve de diligence raisonnable avant dapprouver toute demande."
},
"amount": {
"message": "Montant"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask institutionnel",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Approuver"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Approuver"
},
"approveSpendingCap": {
"message": "Approuver le plafond de dépenses de $1",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Tant que vous naurez pas révoqué cette autorisation, lautre partie pourra accéder à votre portefeuille et transférer sans préavis les NFT suivants."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Si vous essayez denvoyer des actifs directement dun réseau à un autre, une perte permanente des actifs pourrait en résulter. Assurez-vous dutiliser une passerelle."
},
"attemptToCancel": {
"message": "Tenter dannuler ?"
},
"attemptToCancelDescription": {
"message": "Faire une demande dannulation ne garantit pas que votre transaction originale sera bien annulée. Dans le cas où lannulation réussit, vous payerez les frais de transaction indiqués ci-dessus."
},
"attemptingConnect": {
"message": "Tentative de connexion au réseau"
},
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Version MetaMask Beta"
},
"betaPortfolioSite": {
"message": "site de portefeuille bêta"
},
"betaTerms": {
"message": "Conditions dutilisation de la version bêta"
},
@ -535,38 +534,9 @@
"message": "Acheter $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Achetez des $1 avec Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Vous pouvez facilement acheter et transférer des cryptomonnaies en utilisant votre compte Coinbase.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Acheter $1 avec MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay prend en charge les moyens de paiement populaires, incluant Visa, Mastercard, Apple / Google / Samsung Pay et les virements bancaires dans plus de 145 pays. Les tokens sont déposés sur votre compte MetaMask."
},
"buyCryptoWithTransak": {
"message": "Acheter $1 avec Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak prend en charge les cartes de crédit et de débit, Apple Pay, MobiKwik et les virements bancaires (selon lemplacement) dans plus de 100 pays. Les tokens $1 sont directement déposés sur votre compte MetaMask.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Achetez maintenant"
},
"buyWithWyre": {
"message": "Acheter des $1 avec Wyre"
},
"buyWithWyreDescription": {
"message": "Intégration facile pour les achats à hauteur de 1000 $. Vérification interactive et rapide des achats pour les comptes qui bénéficient dun plafond de paiement élevé. Prise en charge des cartes de débit/crédit, dApple Pay et des virements bancaires. Disponible dans plus de 100 pays. Dépôt de jetons sur votre compte MetaMask."
},
"bytes": {
"message": "Octets"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Annuler le swap gratuitement"
},
"cancellationGasFee": {
"message": "Frais dannulation de la transaction"
},
"cancelled": {
"message": "Annulé"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Pour connecter votre portefeuille matériel, vous devez utiliser MetaMask pour Google Chrome."
},
"clear": {
"message": "Effacer"
},
"clearActivity": {
"message": "Effacer les données dactivité et de nonce"
},
"clearActivityButton": {
"message": "Effacer les données de longlet « Activité »"
},
"clearActivityDescription": {
"message": "Cela réinitialise le nonce du compte et efface les données de longlet « Activité » dans votre portefeuille. Seuls le compte et le réseau actuels seront affectés. Aucun changement ne sera apporté aux soldes ou transactions entrantes."
},
"clickToConnectLedgerViaWebHID": {
"message": "Cliquez ici pour connecter votre Ledger via WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Fermer"
},
"collectibleAddFailedMessage": {
"message": "Ce NFT ne peut pas être ajouté, car les informations de propriété ne correspondent pas. Vérifiez que votre saisie est correcte."
},
"collectibleAddressError": {
"message": "Ce token est un NFT. Ajouter sur la $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Confirmer"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Connexion au testnet Goerli"
},
"connectingToLineaTestnet": {
"message": "Connexion au réseau de test Linea Goerli"
},
"connectingToMainnet": {
"message": "Connexion au réseau principal Ethereum"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Continuer"
},
"continueToCoinbasePay": {
"message": "Accéder à Coinbase Pay"
},
"continueToMoonPay": {
"message": "Continuer vers MoonPay"
},
"continueToTransak": {
"message": "Continuer vers Transak"
},
"continueToWyre": {
"message": "Continuer vers Wyre"
},
"contract": {
"message": "Contrat"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Copié!"
"message": "Copié."
},
"copyAddress": {
"message": "Copier laddresse dans le presse-papier"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Créer un mot de passe"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Conversion des devises"
},
"currencyRateCheckToggle": {
"message": "Afficher le solde et le prix actuel du jeton"
},
"currencyRateCheckToggleDescription": {
"message": "Nous utilisons les API $1 et $2 pour afficher le solde de votre compte et le prix du jeton. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Symbole de la devise"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Effectuez un dépôt"
},
"depositCrypto": {
"message": "Effectuer un dépôt de $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "En savoir plus"
},
@ -992,15 +964,108 @@
"description": {
"message": "Description"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Cette erreur peut être passagère essayez de redémarrer lextension ou de désactiver MetaMask Desktop."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask a rencontré des difficultés à démarrer"
},
"desktopConnectionLostErrorDescription": {
"message": "Veuillez vérifier que lapplication de bureau est opérationnelle ou désactivez MetaMask Desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "La connexion à MetaMask Desktop a été perdue"
},
"desktopDisableButton": {
"message": "Désactiver lapplication Desktop"
},
"desktopDisableErrorCTA": {
"message": "Désactiver MetaMask Desktop"
},
"desktopEnableButton": {
"message": "Activer lapplication Desktop"
},
"desktopEnableButtonDescription": {
"message": "Cliquez pour exécuter tous les processus darrière-plan dans lapplication de bureau."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Retour à la page des paramètres (« Settings »)"
},
"desktopErrorRestartMMCTA": {
"message": "Redémarrer MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Télécharger MetaMask Desktop"
},
"desktopNotFoundErrorDescription1": {
"message": "Veuillez vous assurer que lapplication de bureau est installée et quelle fonctionne."
},
"desktopNotFoundErrorDescription2": {
"message": "Si vous navez pas installé lapplication de bureau, veuillez la télécharger sur le site Web de MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Desktop est introuvable"
},
"desktopOpenOrDownloadCTA": {
"message": "Ouvrir MetaMask Desktop"
},
"desktopOutdatedErrorCTA": {
"message": "Mettre à jour MetaMask Desktop"
},
"desktopOutdatedErrorDescription": {
"message": "Votre application MetaMask Desktop doit être mise à jour."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop est obsolète"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Mettre à jour lextension MetaMask"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Votre extension MetaMask doit être mise à jour."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "Lextension MetaMask est obsolète"
},
"desktopPageDescription": {
"message": "Si le couplage est réussi, lextension redémarrera et vous devrez saisir à nouveau votre mot de passe."
},
"desktopPageSubTitle": {
"message": "Ouvrez votre application MetaMask Desktop et saisissez ce code"
},
"desktopPageTitle": {
"message": "Couplage avec Desktop"
},
"desktopPairedWarningDeepLink": {
"message": "Allez dans les paramètres (« Settings ») de MetaMask Desktop"
},
"desktopPairedWarningDescription": {
"message": "Si vous souhaitez lancer un nouveau couplage, veuillez supprimer la connexion actuelle."
},
"desktopPairedWarningTitle": {
"message": "MM Desktop est déjà couplée"
},
"desktopPairingExpireMessage": {
"message": "Le code expire dans $1 secondes"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Retour à la page daccueil (« Home ») de MetaMask"
},
"desktopUnexpectedErrorDescription": {
"message": "Vérifiez votre application MetaMask Desktop pour rétablir la connexion"
},
"desktopUnexpectedErrorTitle": {
"message": "Nous avons eu un problème…"
},
"details": {
"message": "Détails"
},
"directDepositCrypto": {
"message": "Déposer directement $1"
},
"directDepositCryptoExplainer": {
"message": "Si vous avez déjà un peu de $1, la façon la plus rapide dobtenir $1 dans votre nouveau portefeuille est par dépôt direct."
},
"disabledGasOptionToolTipMessage": {
"message": "« $1 » est désactivé parce quil ne correspond pas au minimum daugmentation de 10 % par rapport aux gas fees initiaux.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Utilisez lAPI OpenSea pour récupérer les données de NFT. La détection automatique de NFT repose sur lAPI OpenSea et ne sera pas disponible si elle est désactivée."
},
"enableOpenSeaSecurityProvider": {
"message": "Activer le fournisseur de services de sécurité"
},
"enableSmartTransactions": {
"message": "Activer les transactions intelligentes"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Afficher sur Etherscan"
},
"expandExperience": {
"message": "Développez votre expérience web3"
},
"expandView": {
"message": "Agrandir la vue"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Voir les détails",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Ajouté le",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Gaz utilisé"
},
"gdprMessage": {
"message": "Ces données sont agrégées et sont donc anonymes aux fins du règlement général sur la protection des données (UE) 2016/679. Pour plus dinformations concernant nos pratiques en matière de confidentialité, veuillez consulter notre $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Politique de confidentialité ici",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Général"
},
"getEther": {
"message": "Obtenir des Ether"
},
"getEtherFromFaucet": {
"message": "Obtenir de lEther dun faucet pour le réseau $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "OpenSea vous avertira dès que vous recevrez une requête malveillante."
},
"goBack": {
"message": "Retour"
@ -1545,6 +1598,32 @@
"history": {
"message": "Historique"
},
"holdToReveal": {
"message": "Appuyez longuement pour révéler la PSR"
},
"holdToRevealContent1": {
"message": "Votre phrase secrète de récupération donne $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "un accès complet à votre portefeuille et à vos fonds.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Ne la partagez avec personne. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "Le service dassistance de MetaMask ne vous la demandera jamais,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "mais les hameçonneurs pourraient le faire.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Conservez votre PSR en lieu sûr"
},
"ignoreAll": {
"message": "Ignorer tout"
},
@ -1577,7 +1656,7 @@
"message": "page Importer des NFT"
},
"importNFTTokenIdToolTip": {
"message": "LID dun collectible est un identifiant unique puisquil ny a pas deux NFT identiques. Encore une fois, sur OpenSea, ce numéro se trouve dans la section « Détails ». Prenez-en note ou copiez-le dans votre presse-papiers."
"message": "LID dun NFT est un identifiant unique puisquil ny a pas deux NFT identiques. Encore une fois, sur OpenSea, ce numéro se trouve dans la section « Détails ». Prenez-en note ou copiez-le dans votre presse-papiers."
},
"importNFTs": {
"message": "Importer des NFT"
@ -1724,9 +1803,6 @@
"message": "Fichier JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "pour garder un œil sur vos jetons et vos NFT sur lensemble de vos comptes et réseaux."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Dernière connexion"
},
"lastPriceSold": {
"message": "Prix de la dernière vente"
},
"lastSold": {
"message": "Dernière vente"
},
"learnCancelSpeeedup": {
"message": "Découvrir comment $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Souhaitez-vous ajouter ces jetons ?"
},
"lineatestnet": {
"message": "Réseau de test Linea Goerli"
},
"link": {
"message": "Associer"
},
@ -1873,9 +1958,6 @@
"malformedData": {
"message": "Données malformées"
},
"manageSnaps": {
"message": "Gérez vos Snaps installés"
},
"max": {
"message": "Max."
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Version de MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Toujours pouvoir vous désinscrire via les Paramètres"
},
"metametricsCommitmentsBoldNever": {
"message": "Jamais",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask:"
},
"metametricsCommitmentsNeverCollectIP": {
"message": "Ne collectera $1 votre adresse IP complète",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "Ne collectera $1 vos clés, adresses, transactions, soldes, hachages ou toute autre information personnelle",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "Ne vendra $1 de données à des fins lucratives. Jamais!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Enverra des événements de clics et de pages vues anonymisés"
},
"metametricsHelpImproveMetaMask": {
"message": "Aidez-nous à améliorer MetaMask"
},
"metametricsOptInDescription": {
"message": "MetaMask souhaite recueillir des données dutilisation afin de mieux comprendre comment nos utilisateurs interagissent avec lextension. Elles seront utilisées pour améliorer en permanence la convivialité et lexpérience utilisateur de notre produit et de lécosystème Ethereum."
"metrics": {
"message": "Indicateurs"
},
"mismatchedChainLinkText": {
"message": "vérifier les détails du réseau",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "La fonction «Synchronisation avec lextension» est temporairement désactivée. Si vous souhaitez utiliser votre portefeuille dextension sur MetaMask mobile: sur votre application mobile, revenez aux options de configuration du portefeuille et sélectionnez loption «Importation avec la phrase secrète de récupération». Utilisez la phrase secrète de votre portefeuille dextension pour importer celui-ci sur votre mobile."
},
"moreComingSoon": {
"message": "Dautres à venir..."
},
"mustSelectOne": {
"message": "Vous devez sélectionner au moins 1 jeton."
},
@ -1992,10 +2049,6 @@
"message": "Le jeton natif de ce réseau est $1. Cest le jeton utilisé pour les frais de gaz.\n",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Pour interagir avec des applications décentralisées à laide de MetaMask, vous devrez avoir $1 dans votre portefeuille.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Vous avez besoin daide? Contactez $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Compte $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Le collectible a été ajouté avec succès!"
},
"newContact": {
"message": "Nouveau contact"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "« $1» a été ajouté avec succès!"
},
"newNftAddedMessage": {
"message": "Le NFT a été ajouté avec succès!"
},
"newPassword": {
"message": "Nouveau mot de passe (min 8 caractères)"
},
@ -2138,8 +2191,18 @@
"message": "Le nonce est supérieur au nonce suggéré de $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "Ce NFT ne peut pas être ajouté, car les informations de propriété ne correspondent pas. Vérifiez que votre saisie est correcte."
},
"nftAddressError": {
"message": "Ce token est un NFT. Ajouter sur la $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Avertissement : MetaMask importe le fichier multimédia de l'URL source. Cette URL est parfois modifiée par la place de marché sur laquelle le NFT a été frappé."
},
"nftOptions": {
"message": "Options NFT"
},
"nftTokenIdPlaceholder": {
"message": "Saisissez lidentifiant du jeton"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Aucun Snap installé"
},
"noThanks": {
"message": "Non merci"
},
"noThanksVariant2": {
"message": "Non merci."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Pas assez de gaz"
},
"notNow": {
"message": "Pas maintenant"
},
"notifications": {
"message": "Notifications"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Afficher les paramètres de sécurité et de confidentialité"
},
"notifications17Description": {
"message": "Nous vous proposons dans cette mise à jour davantage doptions pour protéger votre vie privée. Nous avons clarifié notre politique de collecte des données et les options de partage de ces données. Modifiez vos préférences ou supprimez les données dutilisation des extensions depuis les paramètres de sécurité et de confidentialité."
},
"notifications17Title": {
"message": "Paramètres de sécurité et de confidentialité"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Ouvrir dans lexplorateur de blocs"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "Fournisseur de services de sécurité OpenSea"
},
"openSeaDescription": {
"message": "OpenSea est le premier fournisseur de services de sécurité à offrir cette fonctionnalité. Dautres fournisseurs seront bientôt ajoutés !"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Facultatif"
},
"optionalWithParanthesis": {
"message": "(Facultatif)"
},
"options": {
"message": "Options"
},
"or": {
"message": "ou"
},
@ -2564,6 +2639,9 @@
"message": "autres Snaps",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Votre navigateur nest pas à jour. Si vous ne mettez pas à jour votre navigateur, vous ne pourrez pas obtenir les correctifs de sécurité et profiter des nouvelles fonctionnalités de MetaMask."
},
"padlock": {
"message": "Cadenas"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Révoqué dans cette mise à jour"
},
"permission_accessNamedSnap": {
"message": "Se connecter à $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Accéder à internet.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Connexion au Snap $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Planifiez et exécutez des actions périodiques.",
@ -2671,6 +2753,10 @@
"message": "Contrôlez vos comptes et actifs « $1 ».",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Contrôlez vos actifs et vos comptes « $1 ».",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Stockez et gérez ses données sur votre appareil.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Consultez votre clé publique pour $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Afficher votre clé publique pour $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Autorisations"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Réseaux personnalisés populaires"
},
"portfolioSite": {
"message": "Site du portefeuille"
"portfolio": {
"message": "Portefeuille"
},
"preferredLedgerConnectionType": {
"message": "Type de connexion préférée au Ledger",
@ -2858,8 +2948,11 @@
"removeNFT": {
"message": "Supprimer le NFT"
},
"removeNftMessage": {
"message": "Le NFT a été supprimé avec succès !"
},
"removeSnap": {
"message": "Supprimer le Snap"
"message": "Supprimer Snap"
},
"removeSnapConfirmation": {
"message": "Voulez-vous vraiment supprimer $1 ?",
@ -2871,6 +2964,24 @@
"replace": {
"message": "remplacer"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Le fournisseur de sécurité na pas partagé dautres détails"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Demande signalée comme malveillante"
},
"requestMayNotBeSafe": {
"message": "Cette demande peut présenter des risques"
},
"requestMayNotBeSafeError": {
"message": "Le fournisseur de sécurité na pas détecté dactivité malveillante connue, mais continuer peut présenter un risque."
},
"requestNotVerified": {
"message": "Demande non vérifiée"
},
"requestNotVerifiedError": {
"message": "Suite à une erreur, cette demande na pas été vérifiée par le fournisseur de sécurité. Veuillez agir avec prudence."
},
"requestsAwaitingAcknowledgement": {
"message": "demandes en attente dun accusé de réception"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Reinitialiser"
},
"resetAccount": {
"message": "Réinitialiser le compte"
},
"resetAccountDescription": {
"message": "La réinitialisation de votre compte effacera lhistorique de vos transactions. Les soldes de vos comptes ne seront pas modifiés. Vous ne serez pas obligé de saisir à nouveau votre phrase secrète de récupération."
},
"resetWallet": {
"message": "Réinitialiser le portefeuille"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Révéler la phrase secrète de récupération"
},
"revealSeedWordsDescription": {
"message": "Si jamais vous changez de navigateur ou dordinateur, vous aurez besoin de cette phrase secrète de récupération pour accéder à vos comptes. Sauvegardez-la dans un emplacement sûr et secret."
"revealSeedWordsDescription1": {
"message": "La $1 donne $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask est un $1. Cela signifie que vous êtes le seul à connaître votre PSR.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "un accès complet à votre portefeuille et à vos fonds.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "portefeuille non dépositaire"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Phrase secrète de récupération (PSR)"
},
"revealSeedWordsText": {
"message": "Texte"
},
"revealSeedWordsWarning": {
"message": "Ces mots peuvent être utilisés pour voler tous vos comptes."
"message": "Assurez-vous que personne ne regarde votre écran. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "Ne communiquez PAS cette phrase à quelquun !"
"revealSeedWordsWarning2": {
"message": "Le service dassistance de MetaMask ne vous la demandera jamais.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Révéler la phrase mnémonique"
@ -2941,11 +3068,11 @@
"message": "Modifiez votre plafond de dépenses"
},
"revokeAllTokensTitle": {
"message": "Révoquer lautorisation daccéder à tous vos $1 ?",
"message": "Révoquer lautorisation daccès et de transfert de tous vos $1 ?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "En révoquant cette autorisation, les $1 suivants ne pourront plus accéder à vos $2. ",
"message": "Cela révoque lautorisation pour un tiers daccéder et de transférer la totalité de vos $1 sans préavis.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Enregistrer"
},
"saveAsCsvFile": {
"message": "Enregistrer comme fichier CSV"
},
"scanInstructions": {
"message": "Placez le code QR devant votre appareil photo"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Si vos comptes napparaissent pas ci-dessous, essayez de sélectionner le chemin HD."
},
"selectProvider": {
"message": "Sélectionner les fournisseurs :"
},
"selectType": {
"message": "Sélectionner le type"
},
@ -3246,16 +3373,9 @@
"message": "Vous autorisez $2 à accéder à la clé du snap « $1 ». Cette action est irréversible et accorde à « $1 » le contrôle de vos comptes et actifs $2. Assurez-vous que vous faites confiance à « $1 » avant de continuer.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Ce snap demande les autorisations suivantes :"
},
"snapUpdate": {
"message": "Mettre à jour Snap"
},
"snapUpdateExplanation": {
"message": "$1 a besoin dune version plus récente de votre snap.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snaps"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Limite de dépenses trop élevée"
},
"spendingCap": {
"message": "Plafond de dépenses"
},
"spendingCapError": {
"message": "Erreur : saisissez uniquement des chiffres"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Non connecté"
},
"staySafeWithOpenSea": {
"message": "Restez en sécurité avec OpenSea"
},
"step1LatticeWallet": {
"message": "Connectez votre Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "Frais MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Nous recherchons systématiquement le meilleur prix auprès des meilleures sources de liquidité. Une commission de $1 % est automatiquement incluse dans cette cotation.",
"message": "Des frais de $1 % sont automatiquement ajoutés à ce devis. Ces frais vous sont facturés en échange d'une licence d'utilisation du logiciel d'agrégation d'informations sur les fournisseurs de liquidités de MetaMask.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Conditions de service"
},
"testFaucet": {
"message": "Faucet testnet"
},
"testNetworks": {
"message": "Réseaux de test"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Les choses que vous devez garder à lesprit :"
},
"thisIsBasedOn": {
"message": "Ces informations proviennent de "
},
"thisServiceIsExperimental": {
"message": "Ce service est expérimental"
},
"time": {
"message": "Temps"
},
@ -3914,6 +4043,12 @@
"message": "Vers: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Activez cette option pour permettre aux dapps de demander votre signature à laide de requêtes eth_sign. eth_sign est un mode de signature non restrictif qui vous permet de signer une fonction de hachage arbitraire, cela signifie que ce mode de signature peut vous rendre plus vulnérable aux attaques par hameçonnage. Vous devez donc toujours lire attentivement les requêtes eth_sign et vous assurer que lexpéditeur est digne de confiance avant de les signer."
},
"toggleEthSignField": {
"message": "Activer/Désactiver les requêtes eth-sign"
},
"toggleTestNetworks": {
"message": "$1 réseaux de test",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Ce jeton a déjà été ajouté."
},
"tokenAutoDetection": {
"message": "Détection automatique des jetons"
},
"tokenContractAddress": {
"message": "Adresse du contrat de jeton"
},
@ -4064,10 +4202,10 @@
"message": "La transaction a été soumise à nouveau avec une augmentation du prix du gaz, désormais de $1 à $2"
},
"transactionSecurityCheck": {
"message": "Vérification des transactions"
"message": "Autoriser les fournisseurs de services de vérification des transactions"
},
"transactionSecurityCheckDescription": {
"message": "Activez cette option si vous voulez quun tiers (OpenSea) examine toutes vos transactions et vos demandes de signature afin quil puisse identifier les requêtes malveillantes."
"message": "Nous utilisons des API tierces pour détecter et afficher les risques liés aux transactions non signées et aux demandes de signature avant que vous ne les signiez. Ces services auront accès à vos transactions non signées et à vos demandes de signature, à ladresse de votre compte et à la langue que vous préférez."
},
"transactionSubmitted": {
"message": "Transaction envoyée sur $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Réessayez"
},
"tryOur": {
"message": "Essayez notre"
},
"turnOnTokenDetection": {
"message": "Activer la détection améliorée des jetons"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "Lenvoi de jetons collectibles (ERC-721) nest pas pris en charge actuellement",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "Lenvoi de jetons NFT (ERC-721) nest pas pris en charge actuellement",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Nous ne pouvons pas vérifier ce contrat. Assurez-vous que vous faites confiance à cette adresse."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "Cette URL est actuellement utilisée par le réseau $1."
},
"useCollectibleDetection": {
"message": "Détection automatique des NFT"
},
"useCollectibleDetectionDescription": {
"message": "Laffichage des médias et des données des NFT peut exposer votre adresse IP à des serveurs centralisés. Des API tierces (comme OpenSea) sont utilisées pour détecter les NFT dans votre portefeuille. Cela expose donc ladresse de votre compte à ces services. Désactivez cette option si vous ne souhaitez pas que lapplication récupère des données auprès de ces services."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "De plus, veuillez noter que :"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Les métadonnées des NFT peuvent contenir des liens vers des sites darnaques ou dhameçonnage."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Nimporte qui peut déposer des NFT sur votre compte. Les NFT peuvent contenir du contenu offensant qui pourrait safficher automatiquement dans votre portefeuille."
},
"useDefault": {
"message": "Utiliser par défaut"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Nous regroupons vos comptes et demandons à Infura de fournir des informations sur le solde de chacun de vos comptes. Si vous désactivez cette fonction, Infura ne fournira que des informations sur le solde des comptes actifs. Certaines applications décentralisées (dapps) ne fonctionneront pas si vous ne connectez pas votre portefeuille."
},
"useNftDetection": {
"message": "Détection automatique des NFT"
},
"useNftDetectionDescription": {
"message": "Laffichage des médias et des données des NFT peut exposer votre adresse IP à des serveurs centralisés. Des API tierces (comme OpenSea) sont utilisées pour détecter les NFT dans votre portefeuille. Cela expose donc ladresse de votre compte à ces services. Désactivez cette option si vous ne souhaitez pas que lapplication récupère des données auprès de ces services."
},
"useNftDetectionDescriptionLine2": {
"message": "De plus, veuillez noter que :"
},
"useNftDetectionDescriptionLine3": {
"message": "Les métadonnées des NFT peuvent contenir des liens vers des sites darnaques ou dhameçonnage."
},
"useNftDetectionDescriptionLine4": {
"message": "Nimporte qui peut déposer des NFT sur votre compte. Les NFT peuvent contenir du contenu offensant qui pourrait safficher automatiquement dans votre portefeuille."
},
"useNftDetectionDescriptionLine5": {
"message": "Nactivez pas cette fonctionnalité si vous ne voulez pas que lapplication extraie des données de ces services."
},
"usePhishingDetection": {
"message": "Utiliser la fonction anti-hameçonnage"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Affichez"
},
"viewAccount": {
"message": "Voir le compte"
},
"viewAllDetails": {
"message": "Afficher tous les détails"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Lautre partie au contrat peut dépenser la totalité de votre solde de jetons sans préavis et sans demander votre consentement. Protégez-vous en abaissant le plafond des dépenses.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Faible"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Oui"
},
"yesLetsTry": {
"message": "Oui, essayons"
},
"youHaveAddedAll": {
"message": "Vous avez ajouté tous les réseaux populaires. Vous pouvez découvrir dautres réseaux $1 ou $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"

View File

@ -144,8 +144,5 @@
},
"userName": {
"message": "વપરાશકર્તાનામ"
},
"viewAccount": {
"message": "એકાઉન્ટ જુઓ"
}
}

View File

@ -75,12 +75,6 @@
"asset": {
"message": "נכס"
},
"attemptToCancel": {
"message": "לנסות לבטל?"
},
"attemptToCancelDescription": {
"message": "הגשת ניסיון זה אינה מבטיחה כי העסקה המקורית שלך תבוטל. אם ניסיון הביטול יצליח, תחויב/י בעמלת העסקה המופיעה מעלה."
},
"attemptingConnect": {
"message": "מנסה להתחבר לבלוקצ'יין."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "הדפדפן שלך אינו נתמך..."
},
"buyWithWyre": {
"message": "רכישת את'ר עם Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre מאפשרת לך להשתמש בכרטיס אשראי כדי להפקיד $1 ישירות בחשבון ה-MetaMask שלך."
},
"bytes": {
"message": "בייטים"
},
"cancel": {
"message": "ביטול"
},
"cancellationGasFee": {
"message": "עמלת דלק עבור ביטול"
},
"cancelled": {
"message": "מבוטל"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "מתחבר ל-Goerli Test Network"
},
"connectingToLineaTestnet": {
"message": "מתחבר ל-Linea Goerli Test Network"
},
"connectingToMainnet": {
"message": "מתחבר לרשת אתריום הראשית"
},
"continueToWyre": {
"message": "המשך ל-Wyre"
},
"contractDeployment": {
"message": "שליחת חוזה (Contract Deployment)"
},
@ -336,13 +321,6 @@
"general": {
"message": "כללי"
},
"getEther": {
"message": "השג/י את'ר"
},
"getEtherFromFaucet": {
"message": "השג/י את'ר מברז (faucet) עבור ה-$1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "רשת בדיקה Goerli "
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "האם ברצונך להוסיף טוקנים אלה?"
},
"lineatestnet": {
"message": "רשת בדיקה Linea Goerli"
},
"links": {
"message": "קישורים"
},
@ -636,26 +617,15 @@
"reset": {
"message": "אפס"
},
"resetAccount": {
"message": "אפס חשבון"
},
"resetAccountDescription": {
"message": "איפוס חשבונך ינקה את היסטוריית העסקאות שלך."
},
"restore": {
"message": "שחזר"
},
"revealSeedWords": {
"message": "גלה מילות Seed"
},
"revealSeedWordsDescription": {
"message": "אם בעתיד תחליף/י דפדפנים או תעביר/י מחשבים, תצטרך/י seed phrase זה כדי לקבל גישה לחשבונות שלך. יש לשמור אותם במקום בטוח וסודי."
},
"revealSeedWordsWarning": {
"message": "במילים אלה עלול להיעשות שימוש כדי לגנוב את כל חשבונותיך."
},
"revealSeedWordsWarningTitle": {
"message": "אין לשתף צירוף מילים זה עם אף אחד!"
"message": "במילים אלה עלול להיעשות שימוש כדי לגנוב את כל חשבונותיך.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "כתובת URL חדשה של RPC"
@ -663,9 +633,6 @@
"save": {
"message": "שמור"
},
"saveAsCsvFile": {
"message": "שמירה כקובץ CSV"
},
"scanInstructions": {
"message": "הצב/י את קוד ה-QR שלך מול המצלמה"
},
@ -801,9 +768,6 @@
"terms": {
"message": "תנאי שימוש"
},
"testFaucet": {
"message": "בדיקת ברז (Faucet)"
},
"tips": {
"message": "טיפים"
},
@ -922,9 +886,6 @@
"userName": {
"message": "שם משתמש"
},
"viewAccount": {
"message": "הצג חשבון"
},
"viewContact": {
"message": "הצג איש קשר"
},
@ -934,9 +895,6 @@
"welcomeBack": {
"message": "ברוך שובך!"
},
"yesLetsTry": {
"message": "כן, בוא ננסה"
},
"youNeedToAllowCameraAccess": {
"message": "עליך לאפשר גישה למצלמה כדי להשתמש בתכונה זו."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "प्राथमिकता शुल्क (उर्फ \"माइनर टिप\") सीधे खनिकों के पास जाता है और उन्हें आपके लेन-देन को प्राथमिकता देने के लिए प्रोत्साहित करता है।"
},
"affirmAgree": {
"message": "मैं सहमत हूं"
},
"airgapVault": {
"message": "AirGap का वॉल्ट"
},
@ -332,6 +329,9 @@
"message": "$1 को निम्नलिखित तक राशि निकालने और खर्च करने की अनुमति दें:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "किसी भी अनुरोध को मंजूरी देने से पहले हमेशा अपनी खुद की उचित कर्मठता सुनिश्चित करें।"
},
"amount": {
"message": "राशि"
},
@ -351,6 +351,10 @@
"message": "MetaMask Fask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask संस्थागत",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "खर्च सीमा अनुमोदित करें"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "अनुमोदित करें"
},
"approveSpendingCap": {
"message": "खर्च की सीमा $1 को स्वीकृत करें",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "यह किसी तीसरे पक्ष को बिना किसी नोटिस के निम्नलिखित NFTs को ऐक्सेस करने और स्थानांतरित करने की अनुमति देता है जब तक कि आप इसकी ऐक्सेस को रद्द नहीं कर देते।"
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "यदि आप ऐसेट्स को सीधे एक नेटवर्क से दूसरे नेटवर्क पर भेजने का प्रयास करते हैं, तो इसके परिणामस्वरूप स्थायी ऐसेट्स का नुकसान हो सकता है। ब्रिज का उपयोग करना सुनिश्चित करें।"
},
"attemptToCancel": {
"message": "रद्द करने का प्रयास?"
},
"attemptToCancelDescription": {
"message": "इस प्रयास को सबमिट करने से आपके मूल लेनदेन को रद्द करने की गारंटी नहीं होगी। यदि रद्दीकरण का प्रयास सफल होता है, तो आपसे ऊपर दिया गया लेनदेन शुल्क लिया जाएगा।"
},
"attemptingConnect": {
"message": "ब्लॉकचेन से कनेक्ट करने का प्रयास कर रहे हैं।"
},
@ -418,7 +420,7 @@
"message": "टोकन ऑटो-डिटेक्ट करें"
},
"autoDetectTokensDescription": {
"message": "हम आपके वॉलेट में भेजे गए नए टोकन का पता लगाने और प्रदर्शित करने के लिए थर्ड पार्टी ऐप्स का उपयोग करते हैं। अगर आप चाहते हैं कि ऐप उन सेवाओं से डेटा न ले, तो उसे बंद कर दें। $1",
"message": "हम आपके वॉलेट में भेजे गए नए टोकन का पता लगाने और प्रदर्शित करने के लिए तृतीय-पक्ष APIs का उपयोग करते हैं। अगर आप नहीं चाहते हैं कि ऐप उन सेवाओं से डेटा अपने आप खींचे तो इसे बंद कर दें। $1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "MetaMask बीटा संस्करण"
},
"betaPortfolioSite": {
"message": "बीटा पोर्टफोलियो साइट"
},
"betaTerms": {
"message": "बीटा के उपयोग की शर्तें"
},
@ -535,38 +534,9 @@
"message": "$1 खरीदें",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "कॉइनबेस पे से $1 खरीदें",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "अपने कॉइनबेस अकाउंट के साथ आप क्रिप्टो को आसानी से खरीद या ट्रांसफर कर सकते हैं।",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "MoonPay से $1 खरीदें",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay कई लोकप्रिय भुगतान विधियों को सपोर्ट करता है, जिसमें Visa, Mastercard, Apple / Google / Samsung Pay और 145+ देशों में बैंक हस्तांतरण शामिल हैं। टोकन आपके MetaMask के अकाउंट में जमा होते हैं।"
},
"buyCryptoWithTransak": {
"message": "Transak से $1 खरीदें",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak 100+ देशों में क्रेडिट और डेबिट कार्ड, Apple Pay, MobiKwik और बैंक ट्रांसफ़र (स्थान के आधार पर) को सपोर्ट करता है। $1 सीधे आपके MetaMask के अकाउंट में जमा होता है।",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "अभी खरीदें"
},
"buyWithWyre": {
"message": "Wyre के साथ $1 खरीदें"
},
"buyWithWyreDescription": {
"message": "$1000 तक की खरीदारी के लिए आसान ऑनबोर्डिंग। तेज़ इंटरैक्टिव उच्च सीमा खरीद सत्यापन। डेबिट / क्रेडिट कार्ड, ऐप्पल पे, बैंक ट्रांसफर का समर्थन करता है। 100+ देशों में उपलब्ध है। टोकन आपके मेटामास्क खाते में जमा होते हैं"
},
"bytes": {
"message": "बाइट"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "मुफ्त में स्वैप रद्द करें"
},
"cancellationGasFee": {
"message": "रद्दीकरण गैस शुल्क"
},
"cancelled": {
"message": "रद्द किया गया"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "अपने हार्डवेयर वॉलेट से कनेक्ट करने के लिए आपको Google Chrome पर MetaMask का उपयोग करने की आवश्यकता है।"
},
"clear": {
"message": "साफ़ करें"
},
"clearActivity": {
"message": "गतिविधि और अस्थायी डेटा साफ़ करें"
},
"clearActivityButton": {
"message": "गतिविधि टैब डेटा साफ़ करें"
},
"clearActivityDescription": {
"message": "यह खाते की अस्थायीता को रीसेट करता है और आपके वॉलेट में गतिविधि टैब से डेटा मिटा देता है। केवल मौजूदा खाता और नेटवर्क प्रभावित होंगे। आपकी शेष राशि और आने वाले लेन-देन नहीं बदलेंगे।"
},
"clickToConnectLedgerViaWebHID": {
"message": "अपने लेजर को WebHID के जरिये कनेक्ट करने के लिए यहां क्लिक करें",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "बंद करें"
},
"collectibleAddFailedMessage": {
"message": "एनएफटी जोड़ा नहीं जा सकता क्योंकि स्वामित्व विवरण मेल नहीं खा रहे हैं। सुनिश्चित करें कि आपने सही जानकारी दर्ज की है।"
},
"collectibleAddressError": {
"message": "ये टोकन एक एनएफटी है। $1 पर जोड़ें",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "कॉइनगेको"
},
"confirm": {
"message": "पुष्टि करें"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Goerli टेस्ट नेटवर्क से कनेक्ट हो रहा है"
},
"connectingToLineaTestnet": {
"message": "Linea Goerli टेस्ट नेटवर्क से कनेक्ट हो रहा है"
},
"connectingToMainnet": {
"message": "Ethereum Mainnet से कनेक्ट हो रहा है"
},
@ -755,18 +733,6 @@
"continue": {
"message": "जारी रखें"
},
"continueToCoinbasePay": {
"message": "कॉइनबेस-पे पर जारी रहें"
},
"continueToMoonPay": {
"message": "MoonPay के लिए जारी रखें"
},
"continueToTransak": {
"message": "Transak के लिए जारी रखें"
},
"continueToWyre": {
"message": "Wyre पर जारी रखें"
},
"contract": {
"message": "अनुबंध"
},
@ -842,9 +808,19 @@
"createPassword": {
"message": "पासवर्ड बनाएं"
},
"cryptoCompare": {
"message": "क्रिप्टोतुलना"
},
"currencyConversion": {
"message": "मुद्रा रूपांतरण"
},
"currencyRateCheckToggle": {
"message": "शेष राशि और टोकन मूल्य चेकर दिखाएं"
},
"currencyRateCheckToggleDescription": {
"message": "हम आपकी शेष राशि और टोकन मूल्य प्रदर्शित करने के लिए $1 और $2 API का उपयोग करते हैं। $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "मुद्रा चिह्न"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "जमा करें"
},
"depositCrypto": {
"message": "$1 जमा करें",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "अधिक जानें"
},
@ -992,15 +964,108 @@
"description": {
"message": "विवरण"
},
"desktopConnectionCriticalErrorDescription": {
"message": "यह त्रुटि रुक-रुक कर हो सकती है, इसलिए एक्सटेंशन को फिर से शुरू करने का प्रयास करें या MetaMask डेस्कटॉप को अक्षम करें।"
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask को शुरू करने में परेशानी हुई"
},
"desktopConnectionLostErrorDescription": {
"message": "कृपया सुनिश्चित करें कि आपके पास डेस्कटॉप ऐप चालू है और चल रहा है या MetaMask डेस्कटॉप को अक्षम करें।"
},
"desktopConnectionLostErrorTitle": {
"message": "MetaMask डेस्कटॉप कनेक्शन खत्म हो गया था"
},
"desktopDisableButton": {
"message": "डेस्कटॉप ऐप को अक्षम करें"
},
"desktopDisableErrorCTA": {
"message": "MetaMask डेस्कटॉप को अक्षम करें"
},
"desktopEnableButton": {
"message": "डेस्कटॉप ऐप को सक्षम करें"
},
"desktopEnableButtonDescription": {
"message": "डेस्कटॉप ऐप में सभी बैकग्राउंड प्रक्रियाओं को चलाने के लिए क्लिक करें।"
},
"desktopErrorNavigateSettingsCTA": {
"message": "सेटिंग्स पृष्ठ पर वापस लौटें"
},
"desktopErrorRestartMMCTA": {
"message": "MetaMask को फिर से शुरू करें"
},
"desktopNotFoundErrorCTA": {
"message": "MetaMask डेस्कटॉप डाउनलोड करें"
},
"desktopNotFoundErrorDescription1": {
"message": "कृपया सुनिश्चित करें कि आपके पास डेस्कटॉप ऐप चालू है और चल रहा है।"
},
"desktopNotFoundErrorDescription2": {
"message": "अगर आपके पास कोई डेस्कटॉप ऐप इंस्टॉल नहीं है, तो कृपया इसे MetaMask वेबसाइट पर डाउनलोड करें।"
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask डेस्कटॉप नहीं पाया गया"
},
"desktopOpenOrDownloadCTA": {
"message": "MetaMask डेस्कटॉप को खोलें"
},
"desktopOutdatedErrorCTA": {
"message": "मेटामास्क डेस्कटॉप अद्यतन करें"
},
"desktopOutdatedErrorDescription": {
"message": "आपके MetaMask डेस्कटॉप ऐप को अपग्रेड करने की आवश्यकता है।"
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask डेस्कटॉप पुराना हो चुका है"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "MetaMask एक्सटेंशन का अद्यतन करें"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "आपके MetaMask एक्सटेंशन को अपग्रेड करने की आवश्यकता है।"
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask एक्सटेंशन पुराना हो चुका है"
},
"desktopPageDescription": {
"message": "यदि पेयरिंग सफल होता है, तो एक्सटेंशन फिर से शुरू हो जाएगा और आपको अपना पासवर्ड फिर से दर्ज करना होगा।"
},
"desktopPageSubTitle": {
"message": "अपना MetaMask डेस्कटॉप खोलें और इस कोड को टाइप करें"
},
"desktopPageTitle": {
"message": "डेस्कटॉप के साथ पेयर करें"
},
"desktopPairedWarningDeepLink": {
"message": "MetaMask डेस्कटॉप में सेटिंग्स में जाएं"
},
"desktopPairedWarningDescription": {
"message": "यदि आप एक नया पेयरिंग शुरू करना चाहते हैं, तो कृपया वर्तमान कनेक्शन को हटा दें।"
},
"desktopPairedWarningTitle": {
"message": "MM डेस्कटॉप पहले से पेयर हो चुका है"
},
"desktopPairingExpireMessage": {
"message": "कोड $1 सेकंड में समाप्त हो रहा है"
},
"desktopRouteNotFoundErrorDescription": {
"message": "डेस्कटॉप मार्ग नहीं मिला त्रुटि विवरण"
},
"desktopRouteNotFoundErrorTitle": {
"message": "डेस्कटॉप मार्ग नहीं मिला त्रुटि शीर्षक"
},
"desktopUnexpectedErrorCTA": {
"message": "MetaMask होम को लौटें"
},
"desktopUnexpectedErrorDescription": {
"message": "कनेक्शन को पुनर्स्थापित करने के लिए अपने MetaMask डेस्कटॉप की जाँच करें"
},
"desktopUnexpectedErrorTitle": {
"message": "कुछ गलत हो गया..."
},
"details": {
"message": "विस्तृत जानकारी"
},
"directDepositCrypto": {
"message": "$1 सीधे जमा करें"
},
"directDepositCryptoExplainer": {
"message": "यदि आपके पास कुछ $1 पहले से हैं, तो अपने नए वॉलेट में $1 प्राप्त करने का सबसे तेज़ तरीका है सीधे जमा करना है।"
},
"disabledGasOptionToolTipMessage": {
"message": "\"$1\" अक्षम किया गया है क्योंकि यह मूल गैस शुल्क से न्यूनतम 10% वृद्धि को पूरा नहीं करता है।",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "NFT डेटा लाने के लिए OpenSea के API का उपयोग करें। NFT ऑटो-डिटेक्शन OpenSea के API पर निर्भर करता है, और इसके बंद होने पर उपलब्ध नहीं होगा।"
},
"enableOpenSeaSecurityProvider": {
"message": "सुरक्षा प्रदाता सक्षम करें"
},
"enableSmartTransactions": {
"message": "स्मार्ट लेनदेन को सक्षम करें"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Etherscan पर देखें"
},
"expandExperience": {
"message": "अपने web3 अनुभव का विस्तार करें"
},
"expandView": {
"message": "दृश्य का विस्तार करें"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "विवरण देखें",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "जोड़ा गया",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "प्रयुक्त गैस"
},
"gdprMessage": {
"message": "यह डेटा समेकित किया गया है और इसलिए सामान्य डेटा संरक्षण विनियमन (EU) 2016/679 के प्रयोजनों के लिए बेनाम है। हमारी गोपनीयता प्रक्रियाओं के संबंध में अधिक जानकारी के लिए, कृपया हमारे $1 देखें।",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "गोपनीयता नीति यहां है",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "सामान्य"
},
"getEther": {
"message": "Ether प्राप्त करें"
},
"getEtherFromFaucet": {
"message": "$1 के लिए एक फॉसेट से Ether प्राप्त करें",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "जब भी आप एक ज्ञात दुर्भावनापूर्ण अनुरोध प्राप्त करते हैं, OpenSea से चेतावनी प्राप्त करें।"
},
"goBack": {
"message": "वापस जाएं"
@ -1545,6 +1598,32 @@
"history": {
"message": "इतिहास"
},
"holdToReveal": {
"message": "SRP देखने के लिए होल्ड करें"
},
"holdToRevealContent1": {
"message": "आपका सीक्रेट रिकवरी फ्रेज $1 प्रदान करता है",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "आपके वॉलेट और फंड तक पूरी एक्सेस।",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "इसे किसी के साथ साझा न करें। $1$2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "MetaMask सपोर्ट इसका अनुरोध नहीं करेगा,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "लेकिन फिशर कर सकते हैं।",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "अपने SRP को सुरक्षित रखें"
},
"ignoreAll": {
"message": "सभी को अनदेखा करें"
},
@ -1577,7 +1656,7 @@
"message": "एनएफटी के पेज को इंपोर्ट करें"
},
"importNFTTokenIdToolTip": {
"message": "किसी संग्रहणीय वस्तु की आईडी एक विशिष्ट पहचानकर्ता है क्योंकि कोई भी दो एनएफटी एक जैसे नहीं होते हैं। फिर से, OpenSea पर यह संख्या 'डिटेल्स' के नीचे होगी। इसे नोट कर लें या अपने क्लिपबोर्ड पर कॉपी कर लें।"
"message": "किसी एनएफटी की आईडी एक विशिष्ट पहचानकर्ता है क्योंकि कोई भी दो एनएफटी एक जैसे नहीं होते हैं। फिर से, OpenSea पर यह संख्या 'डिटेल्स' के नीचे होगी। इसे नोट कर लें या अपने क्लिपबोर्ड पर कॉपी कर लें।"
},
"importNFTs": {
"message": "NFT आयात करें"
@ -1724,9 +1803,6 @@
"message": "JSON फाइल",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "खातों और नेटवर्क पर अपने टोकन और एनएफटी पर नज़र रखने के लिए।"
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "अंतिम बार जुड़ा"
},
"lastPriceSold": {
"message": "पिछली बार की बिक्री दर"
},
"lastSold": {
"message": "पिछली बार बेचा गया"
},
"learnCancelSpeeedup": {
"message": "$1 करने का तरीका जानें",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "क्या आप इन टोकन को इंपोर्ट करना चाहते हैं?"
},
"lineatestnet": {
"message": "Linea Goerli टेस्ट नेटवर्क"
},
"link": {
"message": "लिंक"
},
@ -1867,15 +1952,12 @@
"message": "एक नया स्वैप बनाएं"
},
"makeSureNoOneWatching": {
"message": "सुनिश्चित करें कि आपकी स्क्रीन कोई भी नहीं देख रहा है",
"message": "सुनिश्चित करें कि इसे कोई भी नहीं देख रहा है",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "विकृत डेटा"
},
"manageSnaps": {
"message": "अपने इंस्टाल किए गए स्नैप्स मैनेज करें"
},
"max": {
"message": "अधिकतम"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "MetaMask संस्करण"
},
"metametricsCommitmentsAllowOptOut": {
"message": "हमेशा आपको सेटिंग्स के माध्यम से ऑप्ट-आउट करने की अनुमति देगा"
},
"metametricsCommitmentsBoldNever": {
"message": "कभी नहीं",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask निम्न चीजें करेगा.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 आपका पूरा IP पता एकत्र करेगा",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 कुंजी, पते, लेनदेन, शेषराशि, हैश या कोई भी व्यक्तिगत जानकारी एकत्र करता है",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 लाभ के लिए डेटा बेचता है। कभी भी!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "बेनाम क्लिक और पेजव्यू ईवेंट भेजता है"
},
"metametricsHelpImproveMetaMask": {
"message": "MetaMask को बेहतर बनाने में हमारी मदद करें"
},
"metametricsOptInDescription": {
"message": "MetaMask इस बात की बेहतर समझ प्राप्त करने के लिए डेटा एकत्र करना चाहता है कि हमारे उपयोगकर्ता विस्तार के साथ कैसे सहभागिता करते हैं। इस डेटा का उपयोग हमारे उत्पाद और Ethereum पारिस्थितिकी तंत्र की उपयोगिता और उपयोगकर्ता अनुभव को लगातार सुधारने के लिए किया जाएगा।"
"metrics": {
"message": "मेट्रिक्स"
},
"mismatchedChainLinkText": {
"message": "नेटवर्क विवरण सत्यापित करें",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "'एक्सटेंशन के साथ सिंक' फीचर अस्थायी रूप से अक्षम है। यदि आप MetaMask मोबाइल पर अपने एक्सटेंशन वॉलेट का उपयोग करना चाहते हैं, तो अपने मोबाइल ऐप पर: वॉलेट सेटअप ऑप्शन पर वापस जाएं और 'सीक्रेट रिकवरी फ्रेज के साथ इम्पोर्ट करें' विकल्प चुनें। फिर अपने वॉलेट को मोबाइल में इम्पोर्ट करने के लिए अपने एक्सटेंशन वॉलेट के सीक्रेट फ्रेज का उपयोग करें।"
},
"moreComingSoon": {
"message": "और अधिक जल्द ही आ रहा..."
},
"mustSelectOne": {
"message": "कम से कम 1 टोकन का चयन करना होगा।"
},
@ -1992,10 +2049,6 @@
"message": "इस नेटवर्क पर मूल टोकन $1 है। यह गैस शुल्क के लिए इस्तेमाल किया जाने वाला टोकन है।",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "MetaMask का इस्तेमाल करते हुए विकेंद्रीकृत एप्लिकेशन्स के साथ इंटरैक्ट करने के लिए आपके वॉलेट में $1 होना ज़रूरी है।",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "मदद चाहिए? $1 से संपर्क करें",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "खाता $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "संग्रहणीय सफलतापूर्वक जोड़ा गया!"
},
"newContact": {
"message": "नया संपर्क"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "\"$1\" सफलतापूर्वक जोड़ा गया था!"
},
"newNftAddedMessage": {
"message": "एनएफटी सफलतापूर्वक जोड़ा गया!"
},
"newPassword": {
"message": "नया पासवर्ड (न्यूनतम 8 वर्ण)"
},
@ -2138,8 +2191,18 @@
"message": "नॉन्स $1 के सुझाए गए नॉन्स से अधिक है",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "एनएफटी"
"nftAddFailedMessage": {
"message": "एनएफटी जोड़ा नहीं जा सकता क्योंकि स्वामित्व विवरण मेल नहीं खा रहे हैं। सुनिश्चित करें कि आपने सही जानकारी दर्ज की है।"
},
"nftAddressError": {
"message": "ये टोकन एक एनएफटी है। $1 जोड़ें",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "अस्वीकरण: MetaMask मीडिया फ़ाइल को स्रोत url से खींचता है। यह url कभी-कभी मार्केटप्लेस द्वारा बदल दिया जाता है जिस पर NFT का खनन किया गया था।"
},
"nftOptions": {
"message": "NFT विकल्प"
},
"nftTokenIdPlaceholder": {
"message": "संग्रहणीय ID दर्ज करें"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "कोई स्नैप इंस्टाल नहीं किया गया"
},
"noThanks": {
"message": "जी नहीं, धन्यवाद"
},
"noThanksVariant2": {
"message": "नहीं, धन्यवाद।"
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "पर्याप्त गैस नहीं"
},
"notNow": {
"message": "अभी नहीं"
},
"notifications": {
"message": "सूचनाएं"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "सुरक्षा और गोपनीयता सेटिंग्स को दिखाएं"
},
"notifications17Description": {
"message": "यह अपडेट अधिक विकल्प प्रदान करता है ताकि आप अपनी गोपनीयता को बेहतर ढंग से नियंत्रित कर सकें। हमने डेटा कैसे एकत्र किया जाता है और इसे साझा करने के लिए स्पष्ट विकल्पों के बारे में और अधिक पारदर्शिता जोड़ी है। सुरक्षा और गोपनीयता के सेटिंग्स के माध्यम से अपनी प्राथमिकताओं को बदलें या एक्सटेंशन उपयोग डेटा हटाएं।"
},
"notifications17Title": {
"message": "सुरक्षा और गोपनीयता सेटिंग्स"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "ब्लॉक एक्सप्लोरर में खोलें"
},
"openSea": {
"message": "OpenSea (बीटा)"
},
"openSeaAltText": {
"message": "OpenSea सुरक्षा प्रदाता"
},
"openSeaDescription": {
"message": "OpenSea इस सुविधा के लिए पहला सुरक्षा प्रदाता है।अधिक प्रदाता जल्द ही आ रहे हैं!"
},
"openSeaNew": {
"message": "ओपनसी"
},
"optional": {
"message": "वैकल्पिक"
},
"optionalWithParanthesis": {
"message": "(वैकल्पिक)"
},
"options": {
"message": "विकल्प"
},
"or": {
"message": "या"
},
@ -2564,6 +2639,9 @@
"message": "अन्य स्नैप",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "आपका ब्राउज़र पुराना हो चुका है। यदि आप अपने ब्राउज़र को अपडेट नहीं करते हैं, तो आप MetaMask से सुरक्षा पैच और नई फीचर्स प्राप्त नहीं कर पाएंगे।"
},
"padlock": {
"message": "पैडलॉक"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "इस अपडेट में रद्द किया गया"
},
"permission_accessNamedSnap": {
"message": "$1 से कनेक्ट करें।",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "इंटरनेट एक्सेस करें।",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "$1 स्नैप से कनेक्ट करें।",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "समय-समय पर आने वाले क्रियाओं को शेड्यूल और निष्पादित करें।",
@ -2671,6 +2753,10 @@
"message": "आपके \"$1\" अकाउंट्स और एसेट्स नियंत्रित करें।",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "आपके $1 खातों और संपत्तियों को नियंत्रित करें।",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "उसके डेटा को अपने डिवाइस पर स्टोर करें और प्रबंधित करें।",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "$1 ($2) के लिए अपनी पब्लिक की को देखें।",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "$1 के लिए अपनी पब्लिक की को देखें",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "अनुमतियाँ"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "लोकप्रिय कस्टम नेटवर्क"
},
"portfolioSite": {
"message": "पोर्टफोलियो साइट"
"portfolio": {
"message": "पोर्टफोलियो"
},
"preferredLedgerConnectionType": {
"message": "वरीयता वाले लेजर कनेक्शन के प्रकार",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "NFT हटाएं"
},
"removeNftMessage": {
"message": "NET सफलतापूर्वक हटा दिया गया!"
},
"removeSnap": {
"message": "स्नैप हटाएं"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "बदलें"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "सुरक्षा प्रदाता ने अतिरिक्त जानकारी साझा नहीं की है"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "अनुरोध दुर्भावनापूर्ण के रूप में फ़्लैग किया गया"
},
"requestMayNotBeSafe": {
"message": "अनुरोध सुरक्षित नहीं हो सकता है"
},
"requestMayNotBeSafeError": {
"message": "सुरक्षा प्रदाता को किसी भी ज्ञात दुर्भावनापूर्ण गतिविधि का पता नहीं चला, लेकिन इसे जारी रखना अभी भी सुरक्षित नहीं हो सकता है।"
},
"requestNotVerified": {
"message": "अनुरोध सत्यापित नहीं है"
},
"requestNotVerifiedError": {
"message": "किसी त्रुटि के कारण, इस अनुरोध को सुरक्षा प्रदाता द्वारा सत्यापित नहीं किया गया था। सावधानी के साथ आगे बढ़ना।"
},
"requestsAwaitingAcknowledgement": {
"message": "अनुरोधों के स्वीकार किए जाने की प्रतीक्षा की जा रही है"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "रीसेट करें"
},
"resetAccount": {
"message": "अकाउंट रीसेट करें"
},
"resetAccountDescription": {
"message": "आपके खाते को रीसेट करने से आपका लेनदेन इतिहास साफ हो जाएगा। इससे आपके खातों में शेषराशि नहीं बदलेगी या आपको अपने गुप्त रिकवरी फ्रेज को फिर से दर्ज करने की आवश्यकता नहीं होगी।"
},
"resetWallet": {
"message": "वॉलेट रीसेट करें"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "गुप्त रिकवरी फ्रेज प्रकट करें"
},
"revealSeedWordsDescription": {
"message": "यदि आप कभी ब्राउजर बदलते हैं या कंप्यूटर को स्थानांतरित करते हैं, तो आपको अपने खातों तक पहुंचने के लिए इस गुप्त रिकवरी फ्रेज की आवश्यकता होगी। उन्हें कहीं सुरक्षित और गोपनीय तरीके से सहेजें।"
"revealSeedWordsDescription1": {
"message": "$1 प्रदान करता है $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask एक $1 है। इसका मतलब आप आपने SRP के मालिक हैं।",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "आपके वॉलेट और फंड तक पूरी एक्सेस।\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "गैर-कस्टोडियल वॉलेट"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "सीक्रेट रिकवरी फ्रेज (SRP)"
},
"revealSeedWordsText": {
"message": "टेक्स्ट"
},
"revealSeedWordsWarning": {
"message": "इन शब्दों का उपयोग आपके सभी खातों को चुराने के लिए किया जा सकता है।"
"message": "यह सुनिश्चित करें कि कोई भी आपकी स्क्रीन ना देख रहा हो। $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "इस फ्रेज को किसी के साथ साझा न करें!"
"revealSeedWordsWarning2": {
"message": "MetaMask सपोर्ट कभी इसका अनुरोध नहीं करेगा।",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "सीड फ़्रेज़ दिखाएं"
@ -2941,11 +3068,11 @@
"message": "अपनी खर्च के सीमा की समीक्षा करें"
},
"revokeAllTokensTitle": {
"message": "अपने सभी $1 को एक्सेस करने की अनुमति निरस्त करें?",
"message": "आपके सभी $1 को एक्सेस और स्थानांतरित करने की अनुमति निरस्त करें?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "अनुमति निरस्त करने से, निम्नलिखित $1 अब आपके $2 को एक्सेस नहीं कर सकेगा",
"message": "यह बिना किसी नोटिस के आपके सभी $1 तक पहुंचने और स्थानांतरित करने के लिए किसी तीसरे पक्ष की अनुमति को निरस्त करता है।",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "सहेजें"
},
"saveAsCsvFile": {
"message": "CSV फाइल के रूप में सहेजें"
},
"scanInstructions": {
"message": "QR कोड को अपने कैमरे के सामने रखें"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "यदि आपको अपेक्षित खाते दिखाई नहीं देते हैं, तो HD पथ बदलने का प्रयास करें।"
},
"selectProvider": {
"message": "प्रदाताओं का चयन करें:"
},
"selectType": {
"message": "प्रकार का चयन करें"
},
@ -3246,16 +3373,9 @@
"message": "आप स्नैप \"$1\" के लिए $2 कुंजी का एक्सेस प्रदान कर रहे हैं। यह अपरिवर्तनीय है और आपके $2 खातों और संपत्तियों पर \"$1\" नियंत्रण प्रदान करता है। आगे बढ़ने से पहले सुनिश्चित करें कि आप \"$1\" पर भरोसा करते हैं।",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "ये स्नैप निम्नलिखित अनुमतियों हेतु अनुरोध कर रहा है:"
},
"snapUpdate": {
"message": "स्नैप अपडेट करें"
},
"snapUpdateExplanation": {
"message": "$1 को आपके स्नैप के नए वर्जन की जरूरत है।",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "स्नैप्स"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "खर्च सीमा बहुत अधिक है"
},
"spendingCap": {
"message": "खर्च की सीमा"
},
"spendingCapError": {
"message": "त्रुटि: केवल संख्या दर्ज करें"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "कनेक्ट नहीं है"
},
"staySafeWithOpenSea": {
"message": "OpenSea के साथ सुरक्षित रहें"
},
"step1LatticeWallet": {
"message": "अपना Lattice1 कनेक्ट करें"
},
@ -3636,7 +3762,7 @@
"message": "MetaMask शुल्क"
},
"swapMetaMaskFeeDescription": {
"message": "हम हर बार शीर्ष चलनिधि स्रोतों से सबसे अच्छे मूल्य ढूंढते हैं। इस उद्धरण में $1% का शुल्क स्वतः ही शामिल हो जाता है।",
"message": "$1% का शुल्क स्वचालित रूप से इस उद्धरण में समाविष्ट हो जाता है। आप इसे MetaMask's के तरलता प्रदाता सूचना एकत्रीकरण सॉफ़्टवेयर का उपयोग करने के लिए लाइसेंस के बदले में भुगतान करते हैं।",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "सेवा की शर्तें"
},
"testFaucet": {
"message": "फॉसेट का परीक्षण करें"
},
"testNetworks": {
"message": "टेस्ट नेटवर्क्स"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "ध्यान रखने योग्य बातें"
},
"thisIsBasedOn": {
"message": "से प्राप्त जानकारी पर आधारित है"
},
"thisServiceIsExperimental": {
"message": "यह सेवा प्रयोगात्मक है"
},
"time": {
"message": "समय"
},
@ -3914,6 +4043,12 @@
"message": "प्रति: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Eth_sign अनुरोधों का उपयोग करके dapps को आपके हस्ताक्षर का अनुरोध करने देने के लिए इसे चालू करें। eth_sign एक ओपन-एंडेड साइनिंग विधि है जो आपको मनमाने ढंग से हैश पर हस्ताक्षर करने देती है, जिससे यह एक खतरनाक फ़िशिंग जोखिम बन जाता है। eth_sign अनुरोधों पर केवल तभी हस्ताक्षर करें यदि आप पढ़ सकते हैं कि आप क्या हस्ताक्षर कर रहे हैं और अनुरोध के मूल पर भरोसा करते हैं।"
},
"toggleEthSignField": {
"message": "Eth_sign अनुरोधों को टॉगल करें"
},
"toggleTestNetworks": {
"message": "$1 परीक्षण नेटवर्क",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "टोकन पहले ही जोड़ा जा चुका है।"
},
"tokenAutoDetection": {
"message": "टोकन ऑटो-डिटेक्शन"
},
"tokenContractAddress": {
"message": "टोकन अनुबंध पता"
},
@ -4064,10 +4202,10 @@
"message": "$2 गैस शुल्क में $1 वृद्धि के साथ लेनदेन फिर से सबमिट किया गया"
},
"transactionSecurityCheck": {
"message": "लेन-देन की सुरक्षा जांच"
"message": "लेन-देन सुरक्षा प्रदाताओं को सक्षम करें"
},
"transactionSecurityCheckDescription": {
"message": "अपने सभी लेन-देन और हस्ताक्षर अनुरोधों की समीक्षा करने और ज्ञात दुर्भावनापूर्ण अनुरोधों के बारे में आपको चेतावनी देने के लिए तीसरे पक्ष (OpenSea) को सक्षम करने के लिए इसे चालू करें।"
"message": "आपके हस्ताक्षर करने से पहले अहस्ताक्षरित लेन-देन और हस्ताक्षर अनुरोधों में शामिल जोखिमों का पता लगाने और प्रदर्शित करने के लिए हम तृतीय-पक्ष एपीआई का उपयोग करते हैं। इन सेवाओं के पास आपके अहस्ताक्षरित लेनदेन और हस्ताक्षर अनुरोध, आपके खाते का पता और आपकी पसंदीदा भाषा तक पहुंच होगी।"
},
"transactionSubmitted": {
"message": "$2 पर $1 के गैस शुल्क के साथ लेनदेन सबमिट किया गया।"
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "पुनः प्रयास करें"
},
"tryOur": {
"message": "हमारा आजमाएं"
},
"turnOnTokenDetection": {
"message": "उन्नत टोकन डिटेक्शन चालू करें"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "वर्तमान में संग्रहणीय (ERC-721) टोकन भेजना समर्थित नहीं है",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "वर्तमान में एनएफटी (ERC-721) टोकन भेजना समर्थित नहीं है",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "हम इस कॉन्ट्रैक्ट को सत्यापित नहीं कर सकते हैं। सुनिश्चित करें कि आपको इस एड्रेस पर भरोसा हो।"
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "यह URL वर्तमान में $1 नेटवर्क द्वारा उपयोग किया जाता है।"
},
"useCollectibleDetection": {
"message": "NFT को ऑटो-डिटेक्ट करें"
},
"useCollectibleDetectionDescription": {
"message": "NFT के मीडिया और डेटा प्रदर्शित करना आपके IP पते को केंद्रीकृत सर्वर के सामने उजागर कर सकता है। आपके वॉलेट में NFT को डिटेक्ट करने के लिए तीसरे-पक्ष API (जैसे OpenSea) का उपयोग किया जाता है। यह उन सेवाओं के साथ आपके अकाउंट के पते को उजागर करता है। इसे अक्षम कर दें यदि आप नहीं चाहते कि ऐप उन सेवाओं से डेटा पुल करे।"
},
"useCollectibleDetectionDescriptionLine2": {
"message": "इसके अतिरिक्त, ध्यान रखें कि:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "NFT मेटाडेटा में धोखाधड़ी या फिशिंग साइटों के लिंक हो सकते हैं।"
},
"useCollectibleDetectionDescriptionLine4": {
"message": "कोई भी आपके खाते में NFT को एयरड्रॉप कर सकता है। इसमें आपत्तिजनक सामग्री शामिल हो सकती है जो आपके वॉलेट में स्वचालित रूप से प्रदर्शित हो सकती है।"
},
"useDefault": {
"message": "डिफॉल्ट का उपयोग करें"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "हम खातों को बैच करते हैं और Infura से आपकी शेष राशि को प्रतिक्रियात्मक रूप से दिखाने के लिए पूछताछ करते हैं। यदि आप इसे बंद कर देते हैं, तो केवल सक्रिय खातों के बारे में पूछताछ की जाएगी। कुछ डैप तब तक काम नहीं करेंगे जब तक आप अपने वॉलेट को कनेक्ट नहीं करते।"
},
"useNftDetection": {
"message": "एनएफटी को ऑटो-डिटेक्ट करें"
},
"useNftDetectionDescription": {
"message": "आपके वॉलेट में एनएफटी को डिटेक्ट करने के लिए हम थर्ड-पार्टी API का उपयोग करते हैं, जिसका मतलब है आपका IP पता केंद्रीकृत सर्वर्स को उजागर किया जा सकता है। ये कुछ ऐसी चीजें हैं जिस पर इस फीचर को एनेबल करते समय सतर्क रहना होगा।"
},
"useNftDetectionDescriptionLine2": {
"message": "आपका अकाउंट पता थर्ड-पार्टी API देख सकते हैं।"
},
"useNftDetectionDescriptionLine3": {
"message": "एनएफटी मेटाडेटा में धोखाधड़ी या फिशिंग साइटों के लिंक हो सकते हैं।"
},
"useNftDetectionDescriptionLine4": {
"message": "कोई भी आपके खाते में एनएफटी को एयरड्रॉप कर सकता है। इसमें आपत्तिजनक सामग्री शामिल हो सकती है जो आपके वॉलेट में स्वचालित रूप से प्रदर्शित हो सकती है।"
},
"useNftDetectionDescriptionLine5": {
"message": "यदि आप नहीं चाहते कि ऐप उन सेवाओं से डेटा खींचे तो इस सुविधा को बंद कर दें।"
},
"usePhishingDetection": {
"message": "फिशिंग डिटेक्शन का उपयोग करें"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "देखें"
},
"viewAccount": {
"message": "अकाउंट देखें"
},
"viewAllDetails": {
"message": "सभी विवरण देखें"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 अनुबंध आगे की सूचना या सहमति के बिना आपकी संपूर्ण टोकन शेष राशि खर्च कर सकता है। कम खर्च करने की सीमा को समायोजित करके अपनी सुरक्षा करें।",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "कमज़ोर"
@ -4372,9 +4507,6 @@
"yes": {
"message": "हां"
},
"yesLetsTry": {
"message": "हां, आइए आजमाते हैं"
},
"youHaveAddedAll": {
"message": "आपने सभी लोकप्रिय नेटवर्क जोड़ लिए हैं। आप अधिक नेटवर्क खोज सकते हैं $1 या आप $2 कर सकते हैं",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "आपका NFT खतरे में हो सकता है"
},
"yourPrivateSeedPhrase": {
"message": "आपका निजी गुप्त रिकवरी फ्रेज"
"message": "आपका सीक्रेट रिकवरी फ्रेज"
},
"zeroGasPriceOnSpeedUpError": {
"message": "जीरो गैस मूल्य में तेजी"

View File

@ -122,13 +122,6 @@
"gasPrice": {
"message": "गैस मूल्य (जीडब्ल्यूईआई),(GWEI)"
},
"getEther": {
"message": "ईथर प्राप्त करें"
},
"getEtherFromFaucet": {
"message": "$1 के लिए एक नल से ईथर प्राप्त करें",
"description": "Displays network name for Ether faucet"
},
"here": {
"message": "यहां",
"description": "as in -click here- for more information (goes with troubleTokenBalances)"
@ -266,14 +259,12 @@
"required": {
"message": "आवश्यक"
},
"resetAccount": {
"message": "खाता रीसेट करें"
},
"revealSeedWords": {
"message": "बीज शब्द प्रकट करें"
},
"revealSeedWordsWarning": {
"message": "किसी सार्वजनिक स्थान पर अपने बीज के शब्द ठीक नहीं करें! ये शब्द आपके सभी खातों को चोरी करने के लिए उपयोग किए जा सकते हैं।"
"message": "किसी सार्वजनिक स्थान पर अपने बीज के शब्द ठीक नहीं करें! ये शब्द आपके सभी खातों को चोरी करने के लिए उपयोग किए जा सकते हैं।",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"save": {
"message": "सहेजें"
@ -320,9 +311,6 @@
"terms": {
"message": "उपयोग की शर्तें"
},
"testFaucet": {
"message": "टेस्ट नलि"
},
"to": {
"message": "के लिए"
},
@ -357,9 +345,6 @@
"usedByClients": {
"message": "विभिन्न क्लाइंट्स द्वारा उपयोग किया जाता है"
},
"viewAccount": {
"message": "खाता देखें"
},
"visitWebSite": {
"message": "हमारी वेब साइट पर जाएं"
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Imovina"
},
"attemptToCancel": {
"message": "Pokušati otkazati?"
},
"attemptToCancelDescription": {
"message": "Slanjem ovog pokušaja ne jamči se da će se vaša izvorna transakcija otkazati. Ako je pokušaj otkazivanja uspješan, naplaćuje vam se prethodno navedena naknada za prijenos."
},
"attemptingConnect": {
"message": "Pokušaj povezivanja na podatkovni blok."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Vaš se preglednik ne podržava..."
},
"buyWithWyre": {
"message": "Kupi $1 Wyerom"
},
"buyWithWyreDescription": {
"message": "Wyreom vam se omogućava korištenje kreditnom karticom za polaganje $1 -a izravno na vaš račun za MetaMask."
},
"bytes": {
"message": "Bajtovi"
},
"cancel": {
"message": "Odustani"
},
"cancellationGasFee": {
"message": "Otkazivanje naknade za gorivo"
},
"cancelled": {
"message": "Otkazano"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Povezivanje na testnu mrežu Goerli"
},
"connectingToLineaTestnet": {
"message": "Povezivanje na testnu mrežu Linea Goerli"
},
"connectingToMainnet": {
"message": "Povezivanje na glavnu mrežu Ethereum"
},
"continueToWyre": {
"message": "Nastavi na uslugu Wyre"
},
"contractDeployment": {
"message": "Primjena ugovora"
},
@ -332,13 +317,6 @@
"general": {
"message": "Opće"
},
"getEther": {
"message": "Dohvati Ether"
},
"getEtherFromFaucet": {
"message": "Dohvati Ether iz svežnja za $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Testna mreža Goerli"
},
@ -433,6 +411,9 @@
"likeToImportTokens": {
"message": "Želite li dodati ove tokene?"
},
"lineatestnet": {
"message": "Testna mreža Linea Goerli"
},
"links": {
"message": "Poveznice"
},
@ -632,26 +613,15 @@
"reset": {
"message": "Ponovno postavi"
},
"resetAccount": {
"message": "Poništi račun"
},
"resetAccountDescription": {
"message": "Poništavanjem se računa uklanja vaša povijest transakcija."
},
"restore": {
"message": "Vrati"
},
"revealSeedWords": {
"message": "Otkrij početne riječi"
},
"revealSeedWordsDescription": {
"message": "Ako ikada promijenite preglednike ili računala, trebate ovu početnu rečenicu za pristupanje svojim računima. Spremite ih negdje na sigurno i tajno mjesto."
},
"revealSeedWordsWarning": {
"message": "Ove se riječi mogu upotrijebiti za krađu vaših računa."
},
"revealSeedWordsWarningTitle": {
"message": "NE DIJELITE ovu rečenicu ni s kim!"
"message": "Ove se riječi mogu upotrijebiti za krađu vaših računa.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Novi URL RPC-a"
@ -659,9 +629,6 @@
"save": {
"message": "Spremi"
},
"saveAsCsvFile": {
"message": "Spremi kao datoteku CSV"
},
"scanInstructions": {
"message": "Postavite kôd QR ispred kamere"
},
@ -797,9 +764,6 @@
"terms": {
"message": "Odredbe uporabe"
},
"testFaucet": {
"message": "Testni snop"
},
"tips": {
"message": "Napojnice"
},
@ -915,9 +879,6 @@
"userName": {
"message": "Korisničko ime"
},
"viewAccount": {
"message": "Prikaz računa"
},
"viewContact": {
"message": "Prikaži kontakt"
},
@ -927,9 +888,6 @@
"welcomeBack": {
"message": "Dobro došli natrag!"
},
"yesLetsTry": {
"message": "Da, isprobajmo"
},
"youNeedToAllowCameraAccess": {
"message": "Trebate dopustiti pristupanje kameri za korištenje ovom funkcijom."
},

View File

@ -60,12 +60,6 @@
"approved": {
"message": "Apwouve"
},
"attemptToCancel": {
"message": "Eseye anile?"
},
"attemptToCancelDescription": {
"message": "Soumèt tantativ sa a pa garanti ke yo pral anile tranzaksyon ou anile. Si tantativ anile an gen siksè, ou pral chaje frè yo tranzaksyon pi wo a."
},
"attemptingConnect": {
"message": "Eseye konekte nan blockchain."
},
@ -84,9 +78,6 @@
"cancel": {
"message": "Anile"
},
"cancellationGasFee": {
"message": "Anilasyon Gaz Chaj"
},
"chromeRequiredForHardwareWallets": {
"message": "Ou bezwen sèvi ak MetaMask sou Google Chrome yo nan lòd yo konekte sou Hardware Wallet."
},
@ -209,13 +200,6 @@
"gasUsed": {
"message": "Gaz yo Itilize"
},
"getEther": {
"message": "Jwenn Ether"
},
"getEtherFromFaucet": {
"message": "Jwenn Ether nan yon tiyo pou $1 la",
"description": "Displays network name for Ether faucet"
},
"hardware": {
"message": "materyèl"
},
@ -452,33 +436,19 @@
"reset": {
"message": "Repwograme"
},
"resetAccount": {
"message": "Repwograme Kont"
},
"resetAccountDescription": {
"message": "Repwograme kont a netwaye tranzaksyon ou yo."
},
"restore": {
"message": "Retabli"
},
"revealSeedWords": {
"message": "Revele Seed Mo Yo"
},
"revealSeedWordsDescription": {
"message": "Si ou pa janm chanje navigatè ou deplase òdinatè, ou pral bezwen fraz seed la pou ka gen aksè a kont ou. Sere yo on kote an sekirite e an sekrè."
},
"revealSeedWordsWarning": {
"message": "Yo ka itilize mo sa pou vòlè kont ou."
},
"revealSeedWordsWarningTitle": {
"message": "PA pataje fraz sa a avèk nenpòt moun!"
"message": "Yo ka itilize mo sa pou vòlè kont ou.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"save": {
"message": "Sove"
},
"saveAsCsvFile": {
"message": "Sove kòm dosye CSV"
},
"scanInstructions": {
"message": "Mete kòd QR la devan kamera ou"
},
@ -560,9 +530,6 @@
"terms": {
"message": "Tèm pou itilize"
},
"testFaucet": {
"message": "Tès Tiyo"
},
"to": {
"message": "Pou"
},
@ -642,18 +609,12 @@
"usedByClients": {
"message": "Itilize pa yon varyete de kliyan diferan"
},
"viewAccount": {
"message": "Wè Kont"
},
"visitWebSite": {
"message": "Vizite sit entènèt nou an"
},
"welcomeBack": {
"message": "Bon Retou!"
},
"yesLetsTry": {
"message": "Wi, ann eseye"
},
"youNeedToAllowCameraAccess": {
"message": "Ou bezwen bay kamera aksè pou sèvi ak fonksyon sa."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Eszköz"
},
"attemptToCancel": {
"message": "Megpróbálja törölni?"
},
"attemptToCancelDescription": {
"message": "A próbálkozás elküldése nem garantálja, hogy az eredeti tranzakció törlésre kerül. Ha a törlési kísérlet sikeres, akkor a fenti tranzakciós díjat számítjuk fel önnek."
},
"attemptingConnect": {
"message": "Próbálunk csatlakozni a blokklánchoz."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Az ön böngészője nem támogatott..."
},
"buyWithWyre": {
"message": "Vásároljon $1 -t a Wyre-rel"
},
"buyWithWyreDescription": {
"message": "A Wyre segítségével egyensen a MetaMaks fiókjában tehet letétbe ETH-t."
},
"bytes": {
"message": "Bájtok"
},
"cancel": {
"message": "Mégse"
},
"cancellationGasFee": {
"message": "A törlés gázára"
},
"cancelled": {
"message": "Megszakítva"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Csatlakozás a Goerli teszthálózathoz"
},
"connectingToLineaTestnet": {
"message": "Csatlakozás a Linea Goerli teszthálózathoz"
},
"connectingToMainnet": {
"message": "Csatlakozás a fő Ethereum hálózathoz"
},
"continueToWyre": {
"message": "Tovább a Wyre-re"
},
"contractDeployment": {
"message": "Szerződés alkalmazása"
},
@ -332,13 +317,6 @@
"general": {
"message": "Általános"
},
"getEther": {
"message": "Ether beszerzése"
},
"getEtherFromFaucet": {
"message": "Szerezzen Ethert pénzcsapból a(z) $1-ért",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli teszthálózat"
},
@ -433,6 +411,9 @@
"likeToImportTokens": {
"message": "Hozzá szeretné adni ezeket az érméket?"
},
"lineatestnet": {
"message": "Linea Goerli teszthálózat"
},
"links": {
"message": "Linkek"
},
@ -632,26 +613,15 @@
"reset": {
"message": "Visszaállítás"
},
"resetAccount": {
"message": "Fiók visszaállítása"
},
"resetAccountDescription": {
"message": "A fiók visszaállítása törli a tranzakciók előzményeit."
},
"restore": {
"message": "Visszaállítás"
},
"revealSeedWords": {
"message": "Seed szavak megjelenítése"
},
"revealSeedWordsDescription": {
"message": "Ha valamikor böngészőt váltasz, vagy számítógépet cserélsz, a fiókjaid használatához szükséged lesz erre a kulcsszóláncra. Őrizd őket egy biztonságos és titkos helyen."
},
"revealSeedWordsWarning": {
"message": "Ezekkel a szavakkal ellophatóak a fiókjai."
},
"revealSeedWordsWarningTitle": {
"message": "NE ossza meg ezt a mondatot senkivel!"
"message": "Ezekkel a szavakkal ellophatóak a fiókjai.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Új RPC URL"
@ -659,9 +629,6 @@
"save": {
"message": "Mentés"
},
"saveAsCsvFile": {
"message": "Mentés CSV-fájlként"
},
"scanInstructions": {
"message": "Helyezze a QR-kódot a fényképezőgép elé"
},
@ -797,9 +764,6 @@
"terms": {
"message": "Használati feltételek"
},
"testFaucet": {
"message": "Teszt csap"
},
"tips": {
"message": "Adományok"
},
@ -915,9 +879,6 @@
"userName": {
"message": "Felhasználónév"
},
"viewAccount": {
"message": "Fiók megtekintése"
},
"viewContact": {
"message": "Névjegy megtekintése"
},
@ -927,9 +888,6 @@
"welcomeBack": {
"message": "Üdvözöljük újra!"
},
"yesLetsTry": {
"message": "Igen, próbáljuk ki!"
},
"youNeedToAllowCameraAccess": {
"message": "Ennek a funkciónak a használatához engedélyeznie kell a kamerához való hozzáférést."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Biaya prioritas (alias “tip penambang”) langsung masuk ke penambang dan memberi insentif kepada mereka untuk memprioritaskan transaksi Anda."
},
"affirmAgree": {
"message": "Saya setuju"
},
"airgapVault": {
"message": "Brankas AirGap"
},
@ -332,6 +329,9 @@
"message": "Izinkan $1 untuk ditarik dan digunakan hingga jumlah berikut:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Selalu pastikan untuk melakukan uji tuntas Anda sendiri sebelum menyetujui permintaan apa pun."
},
"amount": {
"message": "Jumlah"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institusional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Setujui batas penggunaan"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Setujui"
},
"approveSpendingCap": {
"message": "Setujui batas pengeluaran $1",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Hal ini memungkinkan pihak ketiga untuk mengakses dan mentransfer NFT berikut tanpa pemberitahuan lebih lanjut sampai Anda mencabut aksesnya."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Jika Anda mencoba untuk mengirim aset secara langsung dari satu jaringan ke jaringan lain, aset Anda berpotensi hilang secara permanen. Pastikan untuk menggunakan penghubung."
},
"attemptToCancel": {
"message": "Coba membatalkan?"
},
"attemptToCancelDescription": {
"message": "Mengupayakan hal ini tidak menjamin transaksi asli Anda akan dibatalkan. Jika upaya pembatalan berhasil, Anda akan dikenakan biaya transaksi di atas."
},
"attemptingConnect": {
"message": "Mencoba terhubung ke blockchain."
},
@ -418,7 +420,7 @@
"message": "Deteksi otomatis token"
},
"autoDetectTokensDescription": {
"message": "Kami menggunakan API pihak ketiga untuk mendeteksi dan menampilkan token baru yang dikirim ke dompet Anda. Nonaktifkan jika Anda tidak ingin aplikasi memakai data dari layanan tersebut. $1",
"message": "Kami menggunakan API pihak ketiga untuk mendeteksi dan menampilkan token baru yang dikirim ke dompet Anda. Nonaktifkan jika Anda tidak ingin aplikasi memakai data secara otomatis dari layanan tersebut. $1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Versi Beta MetaMask"
},
"betaPortfolioSite": {
"message": "situs portofolio beta"
},
"betaTerms": {
"message": "Syarat penggunaan Beta"
},
@ -535,38 +534,9 @@
"message": "Beli $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Beli $1 melalui Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Anda dapat dengan mudah membeli atau mentransfer kripto dengan akun Coinbase Anda.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Beli $1 melalui MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay mendukung metode pembayaran populer, termasuk Visa, Mastercard, Apple/Google/Samsung Pay, dan transfer bank di 145+ negara. Token akan didepositokan ke akun MetaMask Anda."
},
"buyCryptoWithTransak": {
"message": "Beli $1 melalui Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak mendukung kartu kredit & debit, Apple Pay, MobiKwik, dan transfer bank (tergantung lokasi) di 100+ negara. $1 akan langsung didepositokan ke akun MetaMask Anda.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Beli Sekarang"
},
"buyWithWyre": {
"message": "Beli $1 dengan Wyre"
},
"buyWithWyreDescription": {
"message": "Orientasi mudah untuk pembelian hingga $ 1000. Verifikasi pembelian limit tinggi interaktif yang cepat. Mendukung Kartu Debit/Kredit, Apple Pay, Transfer Bank. Tersedia di 100+ negara. Token disetor ke Akun MetaMask Anda"
},
"bytes": {
"message": "Byte"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Batalkan swap gratis"
},
"cancellationGasFee": {
"message": "Biaya gas pembatalan"
},
"cancelled": {
"message": "Dibatalkan"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Anda perlu menggunakan MetaMask di Google Chrome untuk terhubung ke Dompet Perangkat Keras Anda."
},
"clear": {
"message": "Hapus"
},
"clearActivity": {
"message": "Hapus aktivitas dan data nonce"
},
"clearActivityButton": {
"message": "Hapus data tab aktivitas"
},
"clearActivityDescription": {
"message": "Tindakan ini mereset nonce akun dan menghapus data dari tab aktivitas di dompet Anda. Hanya akun dan jaringan saat ini yang akan terpengaruh. Saldo dan transaksi masuk Anda tidak akan berubah."
},
"clickToConnectLedgerViaWebHID": {
"message": "Klik di sini untuk menghubungkan Ledger Anda melalui WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Tutup"
},
"collectibleAddFailedMessage": {
"message": "NFT tidak dapat ditambahkan karena detail kepemilikan tidak cocok. Pastikan Anda telah memasukkan informasi yang benar."
},
"collectibleAddressError": {
"message": "Token ini merupakan NFT. Tambahkan ke $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Konfirmasikan"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Menghubungkan ke jaringan uji Goerli"
},
"connectingToLineaTestnet": {
"message": "Menghubungkan ke jaringan uji Linea Goerli"
},
"connectingToMainnet": {
"message": "Menghubungkan ke Ethereum Mainnet"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Lanjutkan"
},
"continueToCoinbasePay": {
"message": "Lanjutkan ke Coinbase Pay"
},
"continueToMoonPay": {
"message": "Lanjutkan ke MoonPay"
},
"continueToTransak": {
"message": "Lanjutkan ke Transak"
},
"continueToWyre": {
"message": "Lanjutkan ke Wyre"
},
"contract": {
"message": "Kontrak"
},
@ -842,9 +808,19 @@
"createPassword": {
"message": "Buat kata sandi"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Konversi mata uang"
},
"currencyRateCheckToggle": {
"message": "Tampilkan saldo dan pemeriksa harga token"
},
"currencyRateCheckToggleDescription": {
"message": "Kami menggunakan API $1 dan $2 untuk menampilkan saldo serta harga token Anda. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Simbol mata uang"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Deposit"
},
"depositCrypto": {
"message": "Deposit $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Pelajari selengkapnya"
},
@ -992,15 +964,108 @@
"description": {
"message": "Deskripsi"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Kesalahan ini dapat terjadi secara berkala, jadi coba mulai ulang ekstensi atau nonaktifkan MetaMask Desktop."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask mengalami masalah untuk memulai"
},
"desktopConnectionLostErrorDescription": {
"message": "Pastikan Anda memiliki aplikasi desktop serta menjalankan atau menonaktifkan MetaMask Desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "Koneksi MetaMask Desktop terputus"
},
"desktopDisableButton": {
"message": "Nonaktifkan Aplikasi Desktop"
},
"desktopDisableErrorCTA": {
"message": "Nonaktifkan MetaMask Desktop"
},
"desktopEnableButton": {
"message": "Aktifkan Aplikasi Desktop"
},
"desktopEnableButtonDescription": {
"message": "Klik untuk menjalankan semua proses latar belakang di aplikasi desktop."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Kembali ke Halaman Pengaturan"
},
"desktopErrorRestartMMCTA": {
"message": "Mulai ulang MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Unduh MetaMask Desktop"
},
"desktopNotFoundErrorDescription1": {
"message": "Pastikan Anda memiliki aplikasi desktop dan menjalankannya."
},
"desktopNotFoundErrorDescription2": {
"message": "Jika Anda belum menginstal aplikasi desktop, unduh di situs web MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Desktop tidak ditemukan"
},
"desktopOpenOrDownloadCTA": {
"message": "Buka MetaMask Desktop"
},
"desktopOutdatedErrorCTA": {
"message": "Perbarui MetaMask Desktop"
},
"desktopOutdatedErrorDescription": {
"message": "Aplikasi MetaMask desktop perlu ditingkatkan."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop sudah usang"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Perbarui Ekstensi MetaMask"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Ekstensi MetaMask perlu ditingkatkan."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "Ekstensi MetaMask sudah usang"
},
"desktopPageDescription": {
"message": "Jika penyandingan berhasil, ekstensi akan dimulai ulang dan Anda harus memasukkan kembali kata sandi."
},
"desktopPageSubTitle": {
"message": "Buka MetaMask Desktop dan ketikkan kode ini"
},
"desktopPageTitle": {
"message": "Sandingkan dengan Desktop"
},
"desktopPairedWarningDeepLink": {
"message": "Buka Pengaturan di MetaMask Desktop"
},
"desktopPairedWarningDescription": {
"message": "Jika Anda ingin memulai penyandingan baru, hapus koneksi saat ini."
},
"desktopPairedWarningTitle": {
"message": "MM Desktop sudah disandingkan"
},
"desktopPairingExpireMessage": {
"message": "Kode kedaluwarsa dalam $1 detik"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Kembali ke Beranda MetaMask"
},
"desktopUnexpectedErrorDescription": {
"message": "Periksa MetaMask Desktop untuk memulihkan koneksi"
},
"desktopUnexpectedErrorTitle": {
"message": "Terjadi kesalahan..."
},
"details": {
"message": "Detail"
},
"directDepositCrypto": {
"message": "Deposit langsung $1"
},
"directDepositCryptoExplainer": {
"message": "Jika sudah memiliki $1, cara tercepat mendapatkan $1 di dompet baru Anda adalah dengan deposit langsung."
},
"disabledGasOptionToolTipMessage": {
"message": "“$1” dinonaktifkan karena tidak memenuhi kenaikan minimum 10% dari biaya gas asli.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Gunakan API OpenSea untuk mengambil data NFT. Deteksi otomatis NFT bergantung pada API OpenSea, dan tidak akan tersedia saat API ditutup."
},
"enableOpenSeaSecurityProvider": {
"message": "Aktifkan penyedia keamanan"
},
"enableSmartTransactions": {
"message": "Aktifkan transaksi pintar"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Lihat di Etherscan"
},
"expandExperience": {
"message": "Perluas pengalaman web3 Anda"
},
"expandView": {
"message": "Perluas tampilan"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Lihat detailnya",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Ditambahkan di",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Gas yang digunakan"
},
"gdprMessage": {
"message": "Data ini dikumpulkan dan oleh karenanya bersifat anonim untuk tujuan Peraturan Perlindungan Data Umum (UE) 2016/679. Untuk informasi selengkapnya sehubungan dengan praktik privasi kami, lihat $1 kami.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Kebijakan privasi di sini",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Umum"
},
"getEther": {
"message": "Dapatkan Ether"
},
"getEtherFromFaucet": {
"message": "Dapatkan Ether dari keran untuk jaringan $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Dapatkan peringatan dari OpenSea setiap kali Anda menerima permintaan berbahaya yang diketahui."
},
"goBack": {
"message": "Kembali"
@ -1545,6 +1598,32 @@
"history": {
"message": "Riwayat"
},
"holdToReveal": {
"message": "Tahan untuk mengungkap FPR"
},
"holdToRevealContent1": {
"message": "Frasa Pemulihan Rahasia memberikan $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "akses penuh ke dompet dan dana Anda.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Jangan bagikan ini kepada siapa pun. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "Dukungan MetaMask tidak akan memintanya,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "tetapi penipu akan mencoba memintanya.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Jaga keamanan FPR Anda"
},
"ignoreAll": {
"message": "Abaikan semua"
},
@ -1577,7 +1656,7 @@
"message": "Impor halaman NFT"
},
"importNFTTokenIdToolTip": {
"message": "ID koleksi merupakan pengenal unik karena tidak ada dua NFT yang sama. Sekali lagi, angka ini berada di bawah 'Detail' pada OpenSea. Catat atau salin ke papan klip."
"message": "ID NFT merupakan pengenal unik karena tidak ada dua NFT yang sama. Sekali lagi, angka ini berada di bawah 'Detail' pada OpenSea. Catat atau salin ke papan klip."
},
"importNFTs": {
"message": "Impor NFT"
@ -1724,9 +1803,6 @@
"message": "File JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "untuk mengawasi token dan NFT Anda di seluruh akun dan jaringan."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Terakhir terhubung"
},
"lastPriceSold": {
"message": "Harga terakhir terjual"
},
"lastSold": {
"message": "Terakhir terjual"
},
"learnCancelSpeeedup": {
"message": "Pelajari cara $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Apakah Anda ingin menambahkan token ini?"
},
"lineatestnet": {
"message": "Jaringan uji Linea Goerli"
},
"link": {
"message": "Tautan"
},
@ -1873,9 +1958,6 @@
"malformedData": {
"message": "Format data salah"
},
"manageSnaps": {
"message": "Kelola Snap yang Anda instal"
},
"max": {
"message": "Maks"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Versi MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Selalu izinkan Anda untuk keluar melalui Pengaturan"
},
"metametricsCommitmentsBoldNever": {
"message": "Jangan",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask akan.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 mengumpulkan alamat IP lengkap Anda",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 mengumpulkan kunci, alamat, transaksi, saldo, hash, atau informasi pribadi lainnya",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 menjual data untuk mendapatkan keuntungan. Jangan pernah!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Kirim kejadian pageview & klik anonim"
},
"metametricsHelpImproveMetaMask": {
"message": "Bantu Kami Menyempurnakan MetaMask"
},
"metametricsOptInDescription": {
"message": "MetaMask ingin mengumpulkan data penggunaan untuk lebih memahami cara pengguna berinteraksi dengan ekstensi. Data ini akan digunakan untuk meningkatkan kegunaan dan pengalaman pengguna atas produk kami dan ekosistem Ethereum secara berkala."
"metrics": {
"message": "Metrik"
},
"mismatchedChainLinkText": {
"message": "memverifikasi detail jaringan",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "Fitur 'Sinkronkan dengan ekstensi' dinonaktifkan untuk sementara waktu. Jika Anda ingin menggunakan dompet ekstensi Anda di ponsel MetaMask, maka pada aplikasi seluler Anda: kembali ke opsi pengaturan dompet dan pilih opsi 'Impor dengan Frasa Pemulihan Rahasia'. Gunakan frasa rahasia dompet ekstensi Anda untuk mengimpor dompet Anda ke ponsel nantinya."
},
"moreComingSoon": {
"message": "Selanjutnya akan segera hadir..."
},
"mustSelectOne": {
"message": "Harus memilih minimal 1 token."
},
@ -1992,10 +2049,6 @@
"message": "Token asli di jaringan ini adalah $1. Ini merupakan token yang digunakan untuk biaya gas.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Untuk berinteraksi dengan aplikasi terdesentralisasi menggunakan MetaMask, Anda memerlukan $1 di dompet.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Butuh bantuan? Hubungi $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Akun $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Koleksi berhasil ditambahkan!"
},
"newContact": {
"message": "Kontak baru"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "“$1” berhasil ditambahkan!"
},
"newNftAddedMessage": {
"message": "NFT berhasil ditambahkan!"
},
"newPassword": {
"message": "Kata sandi baru (min 8 karakter)"
},
@ -2138,8 +2191,18 @@
"message": "Nonce lebih tinggi dari nonce $1 yang disarankan",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "NFT tidak dapat ditambahkan karena detail kepemilikan tidak cocok. Pastikan Anda telah memasukkan informasi yang benar."
},
"nftAddressError": {
"message": "Token ini merupakan NFT. Tambahkan ke $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Penafian: MetaMask mengambil fail media dari url sumber. Url ini terkadang diubah oleh lokapasar tempat NFT dicetak."
},
"nftOptions": {
"message": "Opsi NFT"
},
"nftTokenIdPlaceholder": {
"message": "Masukkan id token"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Belum ada Snap yang diinstal"
},
"noThanks": {
"message": "Tidak, terima kasih"
},
"noThanksVariant2": {
"message": "Tidak, terima kasih."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Gas tidak cukup"
},
"notNow": {
"message": "Tidak sekarang"
},
"notifications": {
"message": "Notifikasi"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Tampilkan pengaturan Keamanan & Privasi"
},
"notifications17Description": {
"message": "Pembaruan ini memberikan lebih banyak opsi sehingga Anda dapat mengontrol privasi Anda sendiri dengan lebih baik. Kami telah menambahkan penjelasan seputar cara pengumpulan data dan opsi yang lebih mudah untuk membagikannya. Ubah preferensi Anda atau hapus data penggunaan ekstensi melalui pengaturan Keamanan & Privasi."
},
"notifications17Title": {
"message": "Pengaturan Keamanan & Privasi"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Buka di block explorer"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "Penyedia keamanan OpenSea"
},
"openSeaDescription": {
"message": "OpenSea merupakan penyedia keamanan pertama untuk fitur ini. Penyedia lainnya akan segera hadir!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Opsional"
},
"optionalWithParanthesis": {
"message": "(Opsional)"
},
"options": {
"message": "Opsi"
},
"or": {
"message": "atau"
},
@ -2564,6 +2639,9 @@
"message": "snap lainnya",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Peramban Anda sudah usang. Jika peramban tidak diperbarui, Anda tidak akan bisa mendapatkan tambalan keamanan dan fitur baru dari MetaMask."
},
"padlock": {
"message": "Gembok"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Dicabut dalam pembaruan ini"
},
"permission_accessNamedSnap": {
"message": "Hubungkan ke $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Akses internet.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Hubungkan ke Snap $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Jadwalkan dan lakukan tindakan berkala.",
@ -2671,6 +2753,10 @@
"message": "Kontrol akun dan aset \"$1\" Anda.",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Kontrol akun dan aset $1 Anda.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Simpan dan kelola datanya di perangkat Anda.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Lihat kunci publik Anda untuk $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Lihat kunci publik Anda untuk $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Izin"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Jaringan khusus populer"
},
"portfolioSite": {
"message": "Situs portofolio"
"portfolio": {
"message": "Portofolio"
},
"preferredLedgerConnectionType": {
"message": "Jenis koneksi Ledger Pilihan",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "Hapus NFT"
},
"removeNftMessage": {
"message": "NFT berhasil dihapus!"
},
"removeSnap": {
"message": "Hapus Snap"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "mengganti"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Penyedia keamanan belum membagikan detail tambahan"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Permintaan ditandai sebagai berbahaya"
},
"requestMayNotBeSafe": {
"message": "Permintaan mungkin tidak aman"
},
"requestMayNotBeSafeError": {
"message": "Penyedia keamanan tidak mendeteksi aktivitas jahat apa pun yang diketahui, tetapi kemungkinan terdapat risiko apabila dilanjutkan."
},
"requestNotVerified": {
"message": "Permintaan tidak diverifikasi"
},
"requestNotVerifiedError": {
"message": "Karena terjadi kesalahan, permintaan ini tidak diverifikasi oleh penyedia keamanan. Lanjutkan dengan hati-hati."
},
"requestsAwaitingAcknowledgement": {
"message": "permintaan menunggu untuk disetujui"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Atur ulang"
},
"resetAccount": {
"message": "Reset akun"
},
"resetAccountDescription": {
"message": "Mengatur ulang akun akan mengosongkan riwayat transaksi Anda. Ini tidak akan mengubah saldo di akun atau mengharuskan Anda untuk memasukkan kembali Frasa Pemulihan Rahasia."
},
"resetWallet": {
"message": "Reset dompet"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Tampilkan Frasa Pemulihan Rahasia"
},
"revealSeedWordsDescription": {
"message": "Jika Anda pernah mengubah peramban atau mengganti komputer, Frasa Pemulihan Rahasia ini akan berguna untuk mengakses akun Anda. Simpan di tempat yang aman dan rahasia."
"revealSeedWordsDescription1": {
"message": "$1 memberikan $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask merupakan $1. Artinya, Anda adalah pemilik FPR Anda sendiri.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "akses penuh ke dompet dan dana Anda.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "dompet dengan kendali penuh"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Frasa Pemulihan Rahasia (FPR)"
},
"revealSeedWordsText": {
"message": "Teks"
},
"revealSeedWordsWarning": {
"message": "Kata-kata ini dapat digunakan untuk mencuri semua akun Anda."
"message": "Pastikan tidak ada yang melihat layar Anda. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "JANGAN bagikan frasa ini kepada siapa pun!"
"revealSeedWordsWarning2": {
"message": "Dukungan MetaMask tidak akan pernah memintanya.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Ungkap frasa seed"
@ -2941,11 +3068,11 @@
"message": "Tinjau batas pengeluaran Anda"
},
"revokeAllTokensTitle": {
"message": "Cabut izin untuk mengakses seluruh $1 Anda?",
"message": "Cabut izin untuk mengakses dan mentransfer seluruh $1 Anda?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "Dengan mencabut izin, $1 berikut tidak lagi dapat mengakses $2 Anda",
"message": "Hal ini mencabut izin pihak ketiga untuk mengakses dan mentransfer seluruh $1 Anda tanpa pemberitahuan lebih lanjut.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Simpan"
},
"saveAsCsvFile": {
"message": "Simpan sebagai file CSV"
},
"scanInstructions": {
"message": "Tempatkan kode QR di bagian depan kamera Anda"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Jika Anda tidak menemukan akun yang diharapkan, coba alihkan jalur HD."
},
"selectProvider": {
"message": "Pilih penyedia:"
},
"selectType": {
"message": "Pilih Jenis"
},
@ -3246,16 +3373,9 @@
"message": "Anda memberikan $2 akses kunci ke snap \"$1\". Tindakan ini tidak dapat dibatalkan dan memberikan kendali \"$1\" atas akun dan aset $2 Anda. Sebelum melanjutkan, pastikan \"$1\" aman.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Snap ini meminta izin berikut:"
},
"snapUpdate": {
"message": "Perbarui Snap"
},
"snapUpdateExplanation": {
"message": "$1 memerlukan versi snap yang lebih baru.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snap"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Batas penggunaan terlalu besar"
},
"spendingCap": {
"message": "Batas pengeluaran"
},
"spendingCapError": {
"message": "Kesalahan: Masukkan angka saja"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Tidak terhubung"
},
"staySafeWithOpenSea": {
"message": "Tetap aman bersama OpenSea"
},
"step1LatticeWallet": {
"message": "Hubungkan Lattice1 Anda"
},
@ -3636,7 +3762,7 @@
"message": "Biaya MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Kami menemukan harga terbaik dari sumber likuiditas teratas, setiap waktu. Biaya sebesar $1% otomatis diperhitungkan ke kuotasi ini.",
"message": "Biaya sebesar $1% otomatis diperhitungkan ke dalam kuotasi ini. Anda membayarnya sebagai ganti lisensi untuk menggunakan perangkat lunak pengumpul informasi penyedia likuiditas MetaMask.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Ketentuan layanan"
},
"testFaucet": {
"message": "Uji fungsi"
},
"testNetworks": {
"message": "Jaringan pengujian"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Hal-hal yang perlu diingat:"
},
"thisIsBasedOn": {
"message": "Hal ini berdasarkan informasi dari "
},
"thisServiceIsExperimental": {
"message": "Layanan ini bersifat eksperimental"
},
"time": {
"message": "Waktu"
},
@ -3914,6 +4043,12 @@
"message": "Ke: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Aktifkan fitur ini agar aplikasi terdesentralisasi dapat meminta tanda tangan Anda menggunakan permintaan eth_sign. eth_sign adalah metode penandatanganan terbuka untuk menandatangani hash arbitrer. Oleh karenanya, terdapat risiko pengelabuan yang berbahaya. Hanya tanda tangani permintaan eth_sign jika Anda dapat membaca yang ditandatangani dan mengenali asal permintaan tersebut."
},
"toggleEthSignField": {
"message": "Alihkan permintaan eth_sign"
},
"toggleTestNetworks": {
"message": "$1 jaringan pengujian",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Token telah ditambahkan."
},
"tokenAutoDetection": {
"message": "Deteksi otomatis token"
},
"tokenContractAddress": {
"message": "Alamat kontrak token"
},
@ -4064,10 +4202,10 @@
"message": "Transaksi dikirim kembali dengan estimasi biaya gas naik $1 pada $2"
},
"transactionSecurityCheck": {
"message": "Pemeriksaan keamanan transaksi"
"message": "Aktifkan penyedia keamanan transaksi"
},
"transactionSecurityCheckDescription": {
"message": "Aktifkan ini untuk mengizinkan pihak ketiga (OpenSea) meninjau semua transaksi dan permintaan tanda tangan Anda serta memperingatkan Anda terkait permintaan berbahaya yang terdeteksi."
"message": "Kami menggunakan API pihak ketiga untuk mendeteksi dan menampilkan berbagai risiko yang muncul dalam transaksi yang belum ditandatangani dan permintaan tanda tangan sebelum Anda menandatanganinya. Layanan ini akan dapat mengakses transaksi yang belum ditandatangani dan permintaan tanda tangan, alamat akun, serta bahasa pilihan Anda."
},
"transactionSubmitted": {
"message": "Transaksi dikirim dengan estimasi biaya gas sebesar $1 pada $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Coba lagi"
},
"tryOur": {
"message": "Cobalah"
},
"turnOnTokenDetection": {
"message": "Nyalakan deteksi token yang ditingkatkan"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "Tidak mendukung pengiriman token koleksi (ERC-721) untuk saat ini",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "Tidak mendukung pengiriman token NFT (ERC-721) untuk saat ini",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Kami tidak dapat memverifikasi kontrak ini. Pastikan alamat ini aman."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "URL ini saat ini digunakan oleh jaringan $1."
},
"useCollectibleDetection": {
"message": "Deteksi otomatis NFT"
},
"useCollectibleDetectionDescription": {
"message": "Menampilkan media & data NFT dapat mengekspos alamat IP Anda ke server terpusat. API pihak ketiga (seperti OpenSea) digunakan untuk mendeteksi NFT di dompet Anda. API memperlihatkan alamat akun Anda dengan layanan tersebut. Biarkan nonaktif jika Anda tidak ingin aplikasi memakai data dari layanan tersebut."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Selain itu, ketahuilah bahwa:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Metadata NFT dapat berisi tautan ke situs penipuan atau pencurian."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Siapa pun dapat mengirimkan NFT ke akun Anda. Ini mencakup konten ofensif yang dapat ditampilkan secara otomatis di dompet Anda."
},
"useDefault": {
"message": "Gunakan default"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Kami mengelompokkan akun dan meminta Infura untuk menunjukkan saldo Anda secara responsif. Jika Anda menonaktifkannya, hanya akun aktif yang akan diminta. Beberapa aplikasi terdesentralisasi (dapp) tidak akan berfungsi kecuali dompet Anda terhubung."
},
"useNftDetection": {
"message": "Deteksi otomatis NFT"
},
"useNftDetectionDescription": {
"message": "Kami menggunakan API pihak ketiga untuk mendeteksi NFT di dompet Anda, yang berarti alamat IP Anda dapat terpapar ke server pusat. Ada beberapa hal yang perlu diwaspadai saat mengaktifkan fitur ini,."
},
"useNftDetectionDescriptionLine2": {
"message": "Alamat akun Anda akan dapat dlihat oleh API pihak ketiga."
},
"useNftDetectionDescriptionLine3": {
"message": "Metadata NFT dapat berisi tautan ke situs penipuan atau pencurian."
},
"useNftDetectionDescriptionLine4": {
"message": "Siapa pun dapat mengirimkan NFT ke akun Anda. Ini mencakup konten ofensif yang dapat ditampilkan secara otomatis di dompet Anda."
},
"useNftDetectionDescriptionLine5": {
"message": "Biarkan fitur ini nonaktif jika Anda tidak ingin aplikasi mengambil data dari layanan tersebut."
},
"usePhishingDetection": {
"message": "Gunakan deteksi pengelabuan"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Lihat"
},
"viewAccount": {
"message": "Lihat akun"
},
"viewAllDetails": {
"message": "Lihat semua detail"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Kontrak dapat mempergunakan seluruh saldo token Anda tanpa pemberitahuan atau persetujuan lebih lanjut. Lindungi diri Anda dengan menyesuaikan batas pengeluaran yang lebih rendah.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Lemah"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Ya"
},
"yesLetsTry": {
"message": "Ya, mari kita coba"
},
"youHaveAddedAll": {
"message": "Anda telah menambahkan semua jaringan populer. Anda dapat menemukan lebih banyak jaringan $1 atau dapat $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"

View File

@ -228,9 +228,6 @@
"advancedPriorityFeeToolTip": {
"message": "La commissione di priorità avanzata (nota anche come \"suggerimento del minatore\") va direttamente ai minatori e li incentiva a dare la priorità alla tua commissione di transazione."
},
"affirmAgree": {
"message": "Acconsento"
},
"alertDisableTooltip": {
"message": "Può essere cambiato in \"Impostazioni > Avvisi\""
},
@ -324,12 +321,6 @@
"attemptSendingAssets": {
"message": "Se si tenta di inviare risorse direttamente da una rete all'altra, ciò potrebbe comportare una perdita permanente della risorca coinvolta. Assicurati di usare un bridge."
},
"attemptToCancel": {
"message": "Tentativo di Annullamento?"
},
"attemptToCancelDescription": {
"message": "Tentare di annullare non garantisce che la transazione verrà annullata. Se annullata, è comunque richiesto pagare alla rete la commissione sulla transazione."
},
"attemptingConnect": {
"message": "Tentativo di connessione alla blockchain."
},
@ -417,35 +408,6 @@
"message": "Compra $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Compra $1 con Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Puoi facilmente acquistare o trasferire criptovalute con il tuo account Coinbase.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Compra $1 con MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay supporta metodi di pagamento popolari, incluso Visa, Mastercard, Apple / Google / Samsung Pay e bonifici bancari in 145+ paesi. I Token vengono depositati nel tuo account MetaMask."
},
"buyCryptoWithTransak": {
"message": "Compra $1 con Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak supporta carte di credito e debito, Apple Pay, MobiKwik e bonifici bancari (in base alla località) in 100+ paesi. Deposita $1 direttamente nel tuo account MetaMask.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyWithWyre": {
"message": "Compra $1 con Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre ti consente di usare la carta di credito per depositare $1 direttamente nel tuo account MetaMask."
},
"canToggleInSettings": {
"message": "Puoi riabilitare questa notifica in Impostazioni -> Avvisi."
},
@ -476,9 +438,6 @@
"cancelSwapForFree": {
"message": "Annulla scambio gratuitamente"
},
"cancellationGasFee": {
"message": "Costo di Annullamento in Gas"
},
"cancelled": {
"message": "Annullata"
},
@ -505,13 +464,6 @@
"close": {
"message": "Chiudi"
},
"collectibleAddFailedMessage": {
"message": "Non è possibile aggiungere questo NFT poiché i dettagli della proprietà non corrispondono. Assicurati di aver inserito le informazioni corrette."
},
"collectibleAddressError": {
"message": "Questo token è un NFT. Aggiungilo su $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"confirm": {
"message": "Conferma"
},
@ -599,6 +551,9 @@
"connectingToGoerli": {
"message": "Connessione alla Rete di Test Goerli"
},
"connectingToLineaTestnet": {
"message": "Connessione alla Rete di test Linea Goerli"
},
"connectingToMainnet": {
"message": "Connessione alla Rete Ethereum Principale"
},
@ -614,18 +569,6 @@
"continue": {
"message": "Continua"
},
"continueToCoinbasePay": {
"message": "Continua su Coinbase Pay"
},
"continueToMoonPay": {
"message": "Continua su MoonPay"
},
"continueToTransak": {
"message": "Continua su Transak"
},
"continueToWyre": {
"message": "Continua su Wyre"
},
"contract": {
"message": "Contratto"
},
@ -811,10 +754,6 @@
"deleteNetworkDescription": {
"message": "Sei sicuro di voler eliminare questa rete?"
},
"depositCrypto": {
"message": "Deposita $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Scopri di più"
},
@ -827,12 +766,6 @@
"details": {
"message": "Dettagli"
},
"directDepositCrypto": {
"message": "Deposito diretto $1"
},
"directDepositCryptoExplainer": {
"message": "Se hai già $1, il modo più rapido per ottenere $1 nel tuo nuovo portafoglio tramite deposito diretto."
},
"disabledGasOptionToolTipMessage": {
"message": "“$1” è disabilitato perché non soddisfa la maggiorazione minima del 10% rispetto al canone gas originario.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1056,24 +989,9 @@
"gasUsed": {
"message": "Gas Utilizzato"
},
"gdprMessage": {
"message": "Questi dati sono aggregati e sono quindi anonimi per le finalità del Regolamento generale sulla protezione dei dati (UE) 2016/679. Per maggiori informazioni sulla nostra politica sulla privacy, vedi $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Politica Privacy qua",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Generale"
},
"getEther": {
"message": "Ottieni Ether"
},
"getEtherFromFaucet": {
"message": "Ottieni Get Ether da un faucet per $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Rete di test Goerli"
},
@ -1210,6 +1128,9 @@
"likeToImportTokens": {
"message": "Vorresti aggiungere questi token?"
},
"lineatestnet": {
"message": "Rete di test Linea Goerli"
},
"links": {
"message": "Collegamenti"
},
@ -1255,37 +1176,6 @@
"metamaskVersion": {
"message": "versione di MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Ti consentirà sempre di rimuovere il consenso tramite Impostazioni"
},
"metametricsCommitmentsBoldNever": {
"message": "Non",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 raccoglierà il tuo indirizzo IP completo",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 raccoglierà chiavi, indirizzi, transazioni, bilanci, hash, o qualsiasi altra informazione personale",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 venderà i tuoi dati per profitto. Mai!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Invierà click e visualizzazioni di pagina in modo anonimo"
},
"metametricsHelpImproveMetaMask": {
"message": "Aiutaci a Migliorare MetaMask"
},
"metametricsOptInDescription": {
"message": "MetaMask vorrebbe raccogliere dati di utilizzo per capire meglio come gli utenti interagiscono con l'estensione. Questi dati verranno usati continuamente per migliorare l'usabilità e l'esperienza utente dei nostri prodotti e dell'ecosistema Ethereum."
},
"mustSelectOne": {
"message": "Devi selezionare almeno un token."
},
@ -1330,6 +1220,13 @@
"message": "Numero di transazione deve essere maggiore di $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nftAddFailedMessage": {
"message": "Non è possibile aggiungere questo NFT poiché i dettagli della proprietà non corrispondono. Assicurati di aver inserito le informazioni corrette."
},
"nftAddressError": {
"message": "Questo token è un NFT. Aggiungilo su $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"noAccountsFound": {
"message": "Nessun account trovato per la ricerca effettuata"
},
@ -1339,9 +1236,6 @@
"noConversionRateAvailable": {
"message": "Tasso di conversione non disponibile"
},
"noThanks": {
"message": "No Grazie"
},
"noTransactions": {
"message": "Nessuna Transazione"
},
@ -1496,12 +1390,6 @@
"reset": {
"message": "Ripristina"
},
"resetAccount": {
"message": "Ripristina account"
},
"resetAccountDescription": {
"message": "Ripristinare il tuo account cancellerà lo storico delle transazioni."
},
"restore": {
"message": "Ripristina"
},
@ -1511,14 +1399,9 @@
"revealSeedWords": {
"message": "Rivela Frase Seed"
},
"revealSeedWordsDescription": {
"message": "Se cambierai browser o computer, ti servirà questa frase seed per accedere ai tuoi account. Salvala in un posto sicuro e segreto."
},
"revealSeedWordsWarning": {
"message": "Non ripristinare la tua frase seed in pubblico!. Queste parole possono essere usate per rubare il tuo account."
},
"revealSeedWordsWarningTitle": {
"message": "NON CONDIVIDERE questa frase con nessuno!"
"message": "Non ripristinare la tua frase seed in pubblico!. Queste parole possono essere usate per rubare il tuo account.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Nuovo URL RPC"
@ -1526,9 +1409,6 @@
"save": {
"message": "Salva"
},
"saveAsCsvFile": {
"message": "Salva Come File CSV"
},
"scanInstructions": {
"message": "Posizione il codice QR davanti alla fotocamera"
},
@ -1923,9 +1803,6 @@
"termsOfService": {
"message": "Termini di Servizio"
},
"testFaucet": {
"message": "Prova Faucet"
},
"tips": {
"message": "Suggerimenti"
},
@ -2065,9 +1942,6 @@
"message": "Verifica questo token su $1",
"description": "Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
},
"viewAccount": {
"message": "Vedi Account"
},
"viewAllDetails": {
"message": "Vedi tutti i dettagli"
},
@ -2094,9 +1968,6 @@
"message": "$1 di $2",
"description": "$1 and $2 are intended to be two numbers, where $2 is a total, and $1 is a count towards that total"
},
"yesLetsTry": {
"message": "Si, proviamo"
},
"youNeedToAllowCameraAccess": {
"message": "Devi consentire l'accesso alla fotocamera per usare questa funzionalità."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "優先手数料 (別名「マイナーチップ」) はマイナーに直接支払われ、トランザクションを優先するインセンティブとなります。"
},
"affirmAgree": {
"message": "同意する"
},
"airgapVault": {
"message": "AirGap Vault"
},
@ -332,6 +329,9 @@
"message": "$1に以下の額までの引き出しと使用を許可します。",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "リクエストを承認する前に、必ず独自のデューデリジェンスを行ってください。"
},
"amount": {
"message": "金額"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "使用限度額の承認"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "承認"
},
"approveSpendingCap": {
"message": "$1 の使用上限を承認する",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "これにより、アクセス許可を取り消すまで、第三者が今後通知なしに次の NFT にアクセスし、転送できるようになります。"
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "1 つのネットワークから別のネットワークに直接アセットを送ろうとすると、アセットが永久に失われる可能性があります。必ずブリッジを使用してください。"
},
"attemptToCancel": {
"message": "キャンセルを試みますか?"
},
"attemptToCancelDescription": {
"message": "この試みを送信しても、元のトランザクションのキャンセルは保証されません。キャンセルの試みが成功した場合、上記のトランザクション手数料が課金されます。"
},
"attemptingConnect": {
"message": "ブロックチェーンへの接続を試みています。"
},
@ -418,7 +420,7 @@
"message": "トークンを自動検出"
},
"autoDetectTokensDescription": {
"message": "サードパーティー API を使用して、ウォレットに送られた新しいトークンを検出・表示します。アプリがこれらのサービスからデータを取得しないようにするには、オフにしてください。$1",
"message": "サードパーティー API を使用して、ウォレットに送られた新しいトークンを検出・表示します。アプリがこれらのサービスからデータを自動的に取得しないようにするには、オフにしてください。$1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "MetaMaskベータバージョン"
},
"betaPortfolioSite": {
"message": "ベータポートフォリオサイト"
},
"betaTerms": {
"message": "ベータ版利用規約"
},
@ -535,38 +534,9 @@
"message": "$1 を購入",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Coinbase Pay で $1 を購入",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Coinbase アカウントで簡単に仮想通貨を購入または送金できます。",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "MoonPay で $1 を購入",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay は 145 か国以上で、Visa、Mastercard、Apple / Google / Samsung Pay、銀行送金などの一般的な支払方法に対応しています。トークンは MetaMask アカウントに入金されます。"
},
"buyCryptoWithTransak": {
"message": "Transak で $1 を購入",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak は、100 か国以上でクレジット・デビットカード、Apple Pay、MobiKwik、銀行送金 (場所による) に対応しています。$1 は MetaMask アカウントに直接入金されます。",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "今すぐ購入"
},
"buyWithWyre": {
"message": "Wyreで$1を購入"
},
"buyWithWyreDescription": {
"message": "簡単なオンボーディングプロセスで最高 $ 1000 購入可能。迅速かつインタラクティブな高限度額の購入検証。デビット・クレジットカード、Apple Pay、銀行送金に対応。100か国以上で利用可能。トークンは MetaMask アカウントに入金されます。"
},
"bytes": {
"message": "バイト"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "無料でスワップをキャンセル"
},
"cancellationGasFee": {
"message": "キャンセルのガス代"
},
"cancelled": {
"message": "キャンセル済み"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "ハードウェアウォレットに接続するには、MetaMaskをGoogle Chromeで使用する必要があります。"
},
"clear": {
"message": "消去"
},
"clearActivity": {
"message": "アクティビティとノンスデータを消去"
},
"clearActivityButton": {
"message": "アクティビティタブのデータを消去"
},
"clearActivityDescription": {
"message": "これによりアカウントのノンスがリセットされ、ウォレットのアクティビティタブからデータが消去されます。現在のアカウントとネットワークだけが影響を受けます。残高と受信トランザクションへの変更はありません。"
},
"clickToConnectLedgerViaWebHID": {
"message": "ここをクリックして、WebHIDでLedgerを接続します",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "閉じる"
},
"collectibleAddFailedMessage": {
"message": "所有者情報が一致していないため、NFT を追加できません。入力された情報が正しいことを確認してください。"
},
"collectibleAddressError": {
"message": "このトークンは NFT です。$1で追加してください",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "確認"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Goerliテストネットワークに接続中"
},
"connectingToLineaTestnet": {
"message": "Linea Goerli テストネットワークに接続中"
},
"connectingToMainnet": {
"message": "イーサリアムメインネットに接続中"
},
@ -755,18 +733,6 @@
"continue": {
"message": "続行"
},
"continueToCoinbasePay": {
"message": "Coinbase Pay に進む"
},
"continueToMoonPay": {
"message": "MoonPay に進む"
},
"continueToTransak": {
"message": "Transakに進む"
},
"continueToWyre": {
"message": "Wyreに進む"
},
"contract": {
"message": "コントラクト"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "コピーされました!"
"message": "コピーしました。"
},
"copyAddress": {
"message": "アドレスをクリップボードにコピー"
@ -842,9 +808,19 @@
"createPassword": {
"message": "パスワードを作成"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "通貨換算"
},
"currencyRateCheckToggle": {
"message": "残高とトークン価格チェッカーを表示"
},
"currencyRateCheckToggleDescription": {
"message": "MetaMask は $1 と $2 の API を使用して残高とトークンの価格を表示します。$3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "通貨記号"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "入金"
},
"depositCrypto": {
"message": "$1 を入金",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "詳細"
},
@ -992,15 +964,108 @@
"description": {
"message": "説明"
},
"desktopConnectionCriticalErrorDescription": {
"message": "このエラーは一時的なものかもしれないので、拡張機能を再起動するか、MetaMask Desktop を無効にしてみてください。"
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask がうまく起動できませんでした"
},
"desktopConnectionLostErrorDescription": {
"message": "デスクトップアプリが正常に動作していることを確認するか、MetaMask Desktop を無効にしてください。"
},
"desktopConnectionLostErrorTitle": {
"message": "MetaMask Desktop の接続が失われました"
},
"desktopDisableButton": {
"message": "デスクトップアプリを無効にする"
},
"desktopDisableErrorCTA": {
"message": "MetaMask Desktop を無効にする"
},
"desktopEnableButton": {
"message": "MetaMask Desktop を有効にする"
},
"desktopEnableButtonDescription": {
"message": "クリックして、デスクトップアプリのすべてのバックグラウンドプロセスを実行します。"
},
"desktopErrorNavigateSettingsCTA": {
"message": "設定ページに戻る"
},
"desktopErrorRestartMMCTA": {
"message": "MetaMask を再起動"
},
"desktopNotFoundErrorCTA": {
"message": "MetaMask Desktop をダウンロード"
},
"desktopNotFoundErrorDescription1": {
"message": "デスクトップアプリが正常に動作していることを確認してください。"
},
"desktopNotFoundErrorDescription2": {
"message": "デスクトップアプリがインストールされていない場合は、MetaMask Web サイトでダウンロードしてください。"
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Desktop が見つかりませんでした"
},
"desktopOpenOrDownloadCTA": {
"message": "MetaMask Desktop を開く"
},
"desktopOutdatedErrorCTA": {
"message": "MetaMask Desktop を更新"
},
"desktopOutdatedErrorDescription": {
"message": "ご使用の MetaMask デスクトップアプリはアップグレードが必要です。"
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop が古くなっています"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "MetaMask 拡張機能を更新"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "ご使用の MetaMask 拡張機能はアップグレードが必要です。"
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask 拡張機能が古くなっています"
},
"desktopPageDescription": {
"message": "ペアリングが成功したら、拡張機能が再起動し、パスワードの再入力が必要になります。"
},
"desktopPageSubTitle": {
"message": "MetaMask Desktop を開いてこのコードを入力してください"
},
"desktopPageTitle": {
"message": "Desktop とのペアリング"
},
"desktopPairedWarningDeepLink": {
"message": "MetaMask Desktop の設定に移動"
},
"desktopPairedWarningDescription": {
"message": "新しいペアリングを開始するには、現在の接続を削除してください。"
},
"desktopPairedWarningTitle": {
"message": "MM Desktop がすでにペアリングされています"
},
"desktopPairingExpireMessage": {
"message": "コードはあと $1 秒で期限切れになります"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "MetaMask のホームに戻る"
},
"desktopUnexpectedErrorDescription": {
"message": "MetaMask Desktop を確認して接続を復元してください"
},
"desktopUnexpectedErrorTitle": {
"message": "何か問題が発生しました..."
},
"details": {
"message": "詳細"
},
"directDepositCrypto": {
"message": "$1 を直接入金"
},
"directDepositCryptoExplainer": {
"message": "すでに $1 をお持ちの場合、新しいウォレットに最も素早く $1 を入金する方法が、直接入金です。"
},
"disabledGasOptionToolTipMessage": {
"message": "元のガス代の 10% 以上という増額の条件を満たしていないため、「$1」は利用できません。",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "OpenSea APIを使用してNFTデータを取得します。NFT自動検出はOpenSea APIを使用するため、この設定をオフにすると利用できなくなります。"
},
"enableOpenSeaSecurityProvider": {
"message": "セキュリティプロバイダーを有効にする"
},
"enableSmartTransactions": {
"message": "スマートトランザクションを有効にする"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Etherscanで表示"
},
"expandExperience": {
"message": "web3 エクスペリエンスを拡張"
},
"expandView": {
"message": "ビューを展開"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "詳細を表示",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "追加日",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "ガス使用量"
},
"gdprMessage": {
"message": "このデータは集約されているため、一般データ保護規則 (EU) (規則 2016/679) の目的において匿名とされます。弊社の個人情報の取り扱いに関する詳細については、弊社の$1をご覧ください。",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "プライバシーポリシーはこちら",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "一般"
},
"getEther": {
"message": "Etherを取得"
},
"getEtherFromFaucet": {
"message": "$1 ネットワークのフォーセットから Ether を取得",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "既知の悪質なリクエストを受けた際に OpenSea から警告を受けられます。"
},
"goBack": {
"message": "戻る"
@ -1545,6 +1598,32 @@
"history": {
"message": "履歴"
},
"holdToReveal": {
"message": "長押しして SRP を表示"
},
"holdToRevealContent1": {
"message": "秘密のリカバリーフレーズは$1を提供します。",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "ウォレットと資金への完全アクセス",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "これは誰にも教えないでください。$1$2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "MetaMask サポートがこの情報を尋ねることはなく、",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "もし尋ねられた場合はフィッシング詐欺の可能性があります。",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "SRP は安全に保管してください"
},
"ignoreAll": {
"message": "すべて無視"
},
@ -1577,7 +1656,7 @@
"message": "NFTページをインポート"
},
"importNFTTokenIdToolTip": {
"message": "コレクションの ID は一意の識別子で、同じ NFT は 2 つとして存在しません。前述の通り、OpenSea ではこの番号は「詳細」の下に表示されます。この ID を書き留めるか、クリップボードにコピーしてください。"
"message": "NFT の ID は一意の識別子で、同じ NFT は 2 つとして存在しません。前述の通り、OpenSea ではこの番号は「詳細」に表示されます。この ID を書き留めるか、クリップボードにコピーしてください。"
},
"importNFTs": {
"message": "NFTをインポート"
@ -1724,9 +1803,6 @@
"message": "JSONファイル",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "複数のアカウントやネットワークのトークンや NFT を監視するには。"
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "前回の接続"
},
"lastPriceSold": {
"message": "前回の売値"
},
"lastSold": {
"message": "前回の売却"
},
"learnCancelSpeeedup": {
"message": "$1の方法を学ぶ",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "これらのトークンを追加しますか?"
},
"lineatestnet": {
"message": "Linea Goerli テストネットワーク"
},
"link": {
"message": "リンク"
},
@ -1867,15 +1952,12 @@
"message": "新しいスワップの作成"
},
"makeSureNoOneWatching": {
"message": "誰にも画面を見られていないことを確認してください",
"message": "誰にも見られていないことを確認してください",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "不正な形式のデータ"
},
"manageSnaps": {
"message": "インストールされたスナップの管理"
},
"max": {
"message": "最大"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "MetaMaskのバージョン"
},
"metametricsCommitmentsAllowOptOut": {
"message": "いつでも設定からオプトアウトできるようにします"
},
"metametricsCommitmentsBoldNever": {
"message": "実行しない",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMaskが実行する内容"
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1が完全なIPアドレスを収集することはありません",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1は、キー、アドレス、トランザクション、残高、ハッシュなど、いかなる個人情報も収集しません",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1が営利目的でデータを販売することは決してありません。",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "匿名化されたクリック・ページビューイベントを送信します"
},
"metametricsHelpImproveMetaMask": {
"message": "MetaMaskの品質向上へのご協力のお願い"
},
"metametricsOptInDescription": {
"message": "MetaMaskでは、ユーザーによる拡張機能の利用状況についてよりよく理解するため、基本的な使用状況データを収集させていただきたいと考えています。このデータは、当社の製品およびイーサリアムエコシステムの使いやすさとユーザーエクスペリエンスを継続的に改善するために使用されます。"
"metrics": {
"message": "メトリクス"
},
"mismatchedChainLinkText": {
"message": "ネットワークの詳細の確認",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "「拡張機能と同期」機能は一時的に無効になっています。拡張ウォレットをMetaMaskモバイルで使用する場合は、モバイルアプリでウォレットの設定オプションに戻り、「シークレットリカバリーフレーズでインポート」オプションを選択します。拡張ウォレットのシークレットフレーズを使用して、ウォレットをモバイルにインポートします。"
},
"moreComingSoon": {
"message": "さらに近日追加予定..."
},
"mustSelectOne": {
"message": "トークンを1つ以上選択する必要があります。"
},
@ -1992,10 +2049,6 @@
"message": "このネットワークのネイティブトークンは $1 です。ガス代にもこのトークンが使用されます。",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "MetaMask で分散型アプリケーションとやり取りするには、ウォレットに $1 が必要です。",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "アシスタンスが必要な場合は、$1にお問い合わせください",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "アカウント$1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "コレクティブルが追加されました!"
},
"newContact": {
"message": "新しい連絡先"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "「$1」が追加されました!"
},
"newNftAddedMessage": {
"message": "NFT が追加されました!"
},
"newPassword": {
"message": "新しいパスワード (最低8文字)"
},
@ -2138,8 +2191,18 @@
"message": "ナンスが提案され$1よりも大きいです",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "所有者情報が一致していないため、NFT を追加できません。入力された情報が正しいことを確認してください。"
},
"nftAddressError": {
"message": "このトークンは NFT です。$1 で追加してください",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "開示事項: MetaMask はソース URL からメディアファイルを取得します。この URL は時々、NFT がミントされたマーケットプレイスにより変更されることがあります。"
},
"nftOptions": {
"message": "NFT オプション"
},
"nftTokenIdPlaceholder": {
"message": "トークンIDを入力してください"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "スナップがインストールされていません"
},
"noThanks": {
"message": "結構です"
},
"noThanksVariant2": {
"message": "結構です。"
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "ガスが不足しています"
},
"notNow": {
"message": "また後で"
},
"notifications": {
"message": "通知"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "セキュリティおよびプライバシー設定を表示"
},
"notifications17Description": {
"message": "このアップデートでは、自らのプライバシーをより適切に管理できるよう、より多くのオプションが提供されています。データの収集方法に関する透明性が高まり、共有オプションがより明確になりました。セキュリティおよびプライバシー設定で設定を変更するか、拡張機能の使用データを削除してください。"
},
"notifications17Title": {
"message": "セキュリティおよびプライバシー設定"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "ブロックエクスプローラーで開く"
},
"openSea": {
"message": "OpenSea (ベータ)"
},
"openSeaAltText": {
"message": "OpenSea セキュリティプロバイダー"
},
"openSeaDescription": {
"message": "OpenSea は、この機能を提供する最初のセキュリティプロバイダーです。他のプロバイダーも近日追加予定です!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "任意"
},
"optionalWithParanthesis": {
"message": "(任意)"
},
"options": {
"message": "オプション"
},
"or": {
"message": "または"
},
@ -2564,6 +2639,9 @@
"message": "他のスナップ",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "古いブラウザを使用しています。ブラウザをアップデートしないと、MetaMask からセキュリティパッチや新機能を入手できなくなります。"
},
"padlock": {
"message": "南京錠"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "この更新で取り消し"
},
"permission_accessNamedSnap": {
"message": "$1 に接続。",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "インターネットにアクセスします。",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "$1 スナップに接続します。",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "定期的なアクションのスケジュール設定と実行。",
@ -2671,6 +2753,10 @@
"message": "「$1」アカウントとアセットをコントロールします。",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "$1 アカウントとアセットをコントロールします。",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "デバイスにデータを保管し管理します。",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "$1 ($2) の公開鍵を表示します。",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "$1 の公開鍵を表示します。",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "許可"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "人気のカスタムネットワーク"
},
"portfolioSite": {
"message": "ポートフォリオサイト"
"portfolio": {
"message": "ポートフォリオ"
},
"preferredLedgerConnectionType": {
"message": "優先Ledger接続タイプ",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "NFTを削除"
},
"removeNftMessage": {
"message": "NFT が削除されました!"
},
"removeSnap": {
"message": "スナップを削除"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "置き換え"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "セキュリティプロバイダーが追加情報を共有していません"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "リクエストが悪質なものとして分類されました"
},
"requestMayNotBeSafe": {
"message": "リクエストは安全でない可能性があります"
},
"requestMayNotBeSafeError": {
"message": "セキュリティプロバイダーは既知の悪質なアクティビティを検出しませんでしたが、それでも続けるのは安全でない可能性があります。"
},
"requestNotVerified": {
"message": "リクエストが確認されませんでした"
},
"requestNotVerifiedError": {
"message": "エラーが発生したため、このリクエストはセキュリティプロバイダーにより確認されませんでした。慎重に進めてください。"
},
"requestsAwaitingAcknowledgement": {
"message": "承認されるまで待機の要求"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "リセット"
},
"resetAccount": {
"message": "アカウントをリセット"
},
"resetAccountDescription": {
"message": "アカウントをリセットすると、トランザクション履歴が消去されます。これによりアカウント内の残高が変更されることはありません。また、シークレットリカバリーフレーズの再入力が求められることもありません。"
},
"resetWallet": {
"message": "ウォレットをリセット"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "シークレットリカバリーフレーズを公開"
},
"revealSeedWordsDescription": {
"message": "ブラウザを変更した場合や、コンピューターを移動した場合は、アカウントにアクセスするためにこのシークレットリカバリーフレーズが必要になります。安全な秘密の場所に保管してください。"
"revealSeedWordsDescription1": {
"message": "$1 は$2を提供します。",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask は$1です。つまり、ユーザーが SRP の所有者となります。",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "ウォレットと資金への完全アクセス"
},
"revealSeedWordsNonCustodialWallet": {
"message": "ノンカストディアルウォレット"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "秘密のリカバリーフレーズ (SRP)"
},
"revealSeedWordsText": {
"message": "テキスト"
},
"revealSeedWordsWarning": {
"message": "これらの単語を使用すると、すべてのアカウントを窃取することができます。"
"message": "誰にも画面を見られていないことを確認してください。$1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "このフレーズは誰にも教えないでください。"
"revealSeedWordsWarning2": {
"message": "MetaMask サポートがこの情報を尋ねることはありません。",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "シードフレーズを表示"
@ -2941,11 +3068,11 @@
"message": "使用上限を確認してください"
},
"revokeAllTokensTitle": {
"message": "すべての $1 へのアクセス許可を取り消しますか?",
"message": "すべての $1 へのアクセスおよび転送許可を取り消しますか?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "アクセス許可を取り消すと、次の $1 が今後 $2 にアクセスできなくなります",
"message": "これにより、別途通知なしで第三者によるユーザーの $1 へのアクセスおよび転送の許可が取り消されます。",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "保存"
},
"saveAsCsvFile": {
"message": "CSVファイルとして保存"
},
"scanInstructions": {
"message": "QRコードにカメラを向けてください"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "アカウントが見当たらない場合は、HDパスを切り替えてみてください。"
},
"selectProvider": {
"message": "プロバイダーを選択してください:"
},
"selectType": {
"message": "種類を選択"
},
@ -3246,16 +3373,9 @@
"message": "スナップ「$1」に $2 へのキーアクセスを許可しようとしています。この操作は取り消し不能であり、$2 アカウントとアセットのコントロールを「$1」に許可することになります。続行する前に、必ず「$1」が信頼できることを確認してください。",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "このスナップが次のパーミッションをリクエストしています:"
},
"snapUpdate": {
"message": "スナップを更新"
},
"snapUpdateExplanation": {
"message": "$1 に新しいバージョンのスナップが必要です。",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "スナップ"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "使用限度額が大きすぎます"
},
"spendingCap": {
"message": "使用上限"
},
"spendingCapError": {
"message": "エラー: 数字のみを入力してください"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "未接続"
},
"staySafeWithOpenSea": {
"message": "OpenSea で安全を確保"
},
"step1LatticeWallet": {
"message": "Lattice1を接続する"
},
@ -3636,7 +3762,7 @@
"message": "MetaMask手数料"
},
"swapMetaMaskFeeDescription": {
"message": "弊社は毎回最上位の流動性ソースから最良の価格を見つけます。$1%の手数料が自動的にこの見積もりに含まれます。",
"message": "このクォートには、$1% の手数料が自動的に含まれています。この手数料は、MetaMask の流動性プロバイダーの情報集積ソフトウェアの使用ライセンスの代金として支払うものです。",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "サービス規約"
},
"testFaucet": {
"message": "テストフォーセット"
},
"testNetworks": {
"message": "テストネットワーク"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "留意点:"
},
"thisIsBasedOn": {
"message": "これは次の情報源からの情報に基づくものです: "
},
"thisServiceIsExperimental": {
"message": "このサービスは実験段階です"
},
"time": {
"message": "時間"
},
@ -3914,6 +4043,12 @@
"message": "移動先: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Dapps による eth_sign 要求を使用した署名のリクエストを許可する場合は、これをオンにします。eth_sign は任意ハッシュの署名が可能なオープンエンドの署名方法で、危険なフィッシングのリスクをもたらします。eth_sign 要求は、署名する内容が読め、要求元が信頼できる場合以外は署名しないでください。"
},
"toggleEthSignField": {
"message": "eth_sign 要求の設定"
},
"toggleTestNetworks": {
"message": "$1テストネットワーク",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "トークンの追加がすでに完了しています。"
},
"tokenAutoDetection": {
"message": "トークンの自動検出"
},
"tokenContractAddress": {
"message": "トークンコントラクトアドレス"
},
@ -4064,10 +4202,10 @@
"message": "推定のガス代を$2で$1に増加し、トランザクションを再送信しました"
},
"transactionSecurityCheck": {
"message": "トランザクションのセキュリティチェック"
"message": "トランザクションのセキュリティプロバイダーを有効にする"
},
"transactionSecurityCheckDescription": {
"message": "これをオンにすると、第三者 (OpenSea) がすべてのトランザクションや署名の要求を確認し、既知の悪質な要求に関して警告できるようになります。"
"message": "当社はサードパーティ API を使用して、ユーザーが署名する前に未署名のトランザクションおよび署名のリクエストに関するリスクを検出・表示します。このようなサービスは、ユーザーの未署名のトランザクションおよび署名のリクエスト、アカウントアドレス、希望言語にアクセスできます。"
},
"transactionSubmitted": {
"message": "$1の推定ガス代が$2でトランザクションが送信されました。"
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "再試行"
},
"tryOur": {
"message": "こちらをお試しください:"
},
"turnOnTokenDetection": {
"message": "強化されたトークン検出をオンにする"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "コレクティブル (ERC-721) トークンの送信は現在サポートされていません",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "NFT (ERC-721) トークンの送信は現在サポートされていません",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "このコントラクトを検証できません。このアドレスが信頼できることを確認してください。"
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "このURLは現在$1ネットワークで使用されています。"
},
"useCollectibleDetection": {
"message": "NFTを自動検出"
},
"useCollectibleDetectionDescription": {
"message": "NFTメディアとデータを表示すると、IPアドレスが集中型のサーバーに開示される可能性があります。ウォレット内のNFTの検出には、サードパーティーAPI (OpenSeaなど) が使用されます。これにより、これらのサービスにアカウントのアドレスが公開されます。これらのサービスからデータを取得しない場合は、この機能を無効にしてください。"
},
"useCollectibleDetectionDescriptionLine2": {
"message": "また、次の点にも留意してください。"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "NFT のメタデータには、詐欺サイトやフィッシングサイトへのリンクが含まれている可能性があります。"
},
"useCollectibleDetectionDescriptionLine4": {
"message": "誰でもあなたのアカウントに NFT をエアドロップできます。これには不快なコンテンツが含まれている場合があり、ウォレットに自動で表示される可能性があります。"
},
"useDefault": {
"message": "既定値を使用"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "当社は残高を素早く表示できるよう、アカウントをまとめて Infura にクエリを送ります。この機能をオフにすると、アクティブなアカウントのみクエリの対象となります。Dapps によっては、ウォレットを接続しないと機能しないものもあります。"
},
"useNftDetection": {
"message": "NFTを自動検出"
},
"useNftDetectionDescription": {
"message": "当社はサードパーティ API を使用して、ウォレットの NFT を検出します。これにより、ユーザーの IP アドレスが中央サーバーに開示される可能性があります。この機能を有効にする場合は、いくつかの注意点があります。"
},
"useNftDetectionDescriptionLine2": {
"message": "アカウントアドレスがサードパーティ API に開示されます。"
},
"useNftDetectionDescriptionLine3": {
"message": "NFT のメタデータには、詐欺サイトやフィッシングサイトへのリンクが含まれている可能性があります。"
},
"useNftDetectionDescriptionLine4": {
"message": "誰でもユーザーのアカウントに NFT をエアドロップできます。これには不快なコンテンツが含まれていて、ウォレットに自動的に表示される可能性があります。"
},
"useNftDetectionDescriptionLine5": {
"message": "アプリによるこれらのサービスからのデータの取得を希望しない場合は、この機能をオフのままにしてください。"
},
"usePhishingDetection": {
"message": "フィッシング検出を使用"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "表示"
},
"viewAccount": {
"message": "アカウントを表示"
},
"viewAllDetails": {
"message": "すべての詳細の表示"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 このコントラクトは今後、通知や承諾なしにトークン残高全額を使用できます。使用限度をより低い金額にカスタマイズして、自分の身を守りましょう。",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "弱"
@ -4372,9 +4507,6 @@
"yes": {
"message": "はい"
},
"yesLetsTry": {
"message": "はい、やってみます"
},
"youHaveAddedAll": {
"message": "すべての人気ネットワークを追加しました。$1で他のネットワークを発見するか、$2できます。",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "NFT が危険にさらされている可能性があります"
},
"yourPrivateSeedPhrase": {
"message": "秘密のシークレットリカバリーフレーズ"
"message": "シークレットリカバリーフレーズ"
},
"zeroGasPriceOnSpeedUpError": {
"message": "スピードアップのガス代ゼロ"

View File

@ -75,12 +75,6 @@
"asset": {
"message": "ಆಸ್ತಿ"
},
"attemptToCancel": {
"message": "ರದ್ದುಗೊಳಿಸಲು ಪ್ರಯತ್ನಿಸುತ್ತಿರುವಿರಾ?"
},
"attemptToCancelDescription": {
"message": "ಈ ಪ್ರಯತ್ನವನ್ನು ಸಲ್ಲಿಸುವುದರಿಂದ ನಿಮ್ಮ ಮೂಲ ವಹಿವಾಟು ರದ್ದುಗೊಳ್ಳುತ್ತದೆ ಎಂಬುದಾಗಿ ಖಾತ್ರಿಪಡಿಸಲಾಗುವುದಿಲ್ಲ. ರದ್ದು ಮಾಡುವ ಪ್ರಯತ್ನವು ಯಶಸ್ವಿಯಾದರೆ, ಮೇಲಿನ ವಹಿವಾಟು ಶುಲ್ಕವನ್ನು ನಿಮಗೆ ವಿಧಿಸಲಾಗುತ್ತದೆ."
},
"attemptingConnect": {
"message": "ಬ್ಲಾಕ್‌ಚೈನ್‌ಗೆ ಸಂಪರ್ಕಿಸಲು ಪ್ರಯತ್ನಿಸಲಾಗುತ್ತಿದೆ."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "ನಿಮ್ಮ ಬ್ರೌಸರ್ ಬೆಂಬಲಿಸುತ್ತಿಲ್ಲ..."
},
"buyWithWyre": {
"message": "Wyre ನೊಂದಿಗೆ $1 ಖರೀದಿಸಿ"
},
"buyWithWyreDescription": {
"message": "ನಿಮ್ಮ MetaMask ಖಾತೆಗೆ $1 ಅನ್ನು ಜಮಾ ಮಾಡಲು ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್ ಬಳಸಲು Wyre ನಿಮಗೆ ಅನುಮತಿಸುತ್ತದೆ."
},
"bytes": {
"message": "ಬೈಟ್‌ಗಳು"
},
"cancel": {
"message": "ರದ್ದುಮಾಡಿ"
},
"cancellationGasFee": {
"message": "ರದ್ದುಗೊಳಿಸುವ ಗ್ಯಾಸ್ ಶುಲ್ಕ"
},
"cancelled": {
"message": "ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Goerli ಪರೀಕ್ಷಾ ನೆಟ್‌ವರ್ಕ್‌ಗೆ ಸಂಪರ್ಕಿಸಲಾಗುತ್ತಿದೆ"
},
"connectingToLineaTestnet": {
"message": "Linea Goerli ಪರೀಕ್ಷಾ ನೆಟ್‌ವರ್ಕ್‌ಗೆ ಸಂಪರ್ಕಿಸಲಾಗುತ್ತಿದೆ"
},
"connectingToMainnet": {
"message": "ಮುಖ್ಯ ಎಥೆರಿಯಮ್ ನೆಟ್‌ವರ್ಕ್‌ಗೆ ಸಂಪರ್ಕಿಸಲಾಗುತ್ತಿದೆ"
},
"continueToWyre": {
"message": "Wyre ಗೆ ಮುಂದುವರಿಸಿ"
},
"contractDeployment": {
"message": "ಒಪ್ಪಂದದ ನಿಯೋಜನೆ"
},
@ -336,13 +321,6 @@
"general": {
"message": "ಸಾಮಾನ್ಯ"
},
"getEther": {
"message": "ಎಥರ್ ಪಡೆಯಿರಿ"
},
"getEtherFromFaucet": {
"message": "$1 ಗಾಗಿ ಫಾಸೆಟ್‌ನಿಂದ ಎಥರ್ ಅನ್ನು ಪಡೆಯಿರಿ",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli ಪರೀಕ್ಷೆ ನೆಟ್‌ವರ್ಕ್"
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "ನೀವು ಈ ಟೋಕನ್‌ಗಳನ್ನು ಸೇರಿಸಲು ಬಯಸುತ್ತೀರಾ?"
},
"lineatestnet": {
"message": "Linea Goerli ಪರೀಕ್ಷೆ ನೆಟ್‌ವರ್ಕ್"
},
"links": {
"message": "ಲಿಂಕ್‌ಗಳು"
},
@ -639,26 +620,15 @@
"reset": {
"message": "ಮರುಹೊಂದಿಸು"
},
"resetAccount": {
"message": "ಖಾತೆಯನ್ನು ಮರುಹೊಂದಿಸಿ"
},
"resetAccountDescription": {
"message": "ನಿಮ್ಮ ಖಾತೆಯ ಮರುಹೊಂದಿಸುವಿಕೆಯು ನಿಮ್ಮ ವಹಿವಾಟು ಇತಿಹಾಸವನ್ನು ತೆರವುಗೊಳಿಸುತ್ತದೆ."
},
"restore": {
"message": "ಮರುಸ್ಥಾಪನೆ"
},
"revealSeedWords": {
"message": "ಸೀಡ್ ವರ್ಡ್ಸ್ ಬಹಿರಂಗಪಡಿಸಿ"
},
"revealSeedWordsDescription": {
"message": "ನೀವು ಬ್ರೌಸರ್‌ಗಳನ್ನು ಬದಲಾಯಿಸಿದರೆ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ಗಳನ್ನು ಸರಿಸಿದರೆ, ನಿಮ್ಮ ಖಾತೆಗಳನ್ನು ಪ್ರವೇಶಿಸಲು ನಿಮಗೆ ಈ ಸೀಡ್ ಫ್ರೇಸ್‌ಗಳ ಅಗತ್ಯವಿರುತ್ತದೆ. ಅವುಗಳನ್ನು ಎಲ್ಲಿಯಾದರೂ ಸುರಕ್ಷಿತವಾಗಿ ಮತ್ತು ರಹಸ್ಯವಾಗಿ ಉಳಿಸಿ."
},
"revealSeedWordsWarning": {
"message": "ಈ ಪದಗಳನ್ನು ನಿಮ್ಮ ಎಲ್ಲಾ ಖಾತೆಗಳನ್ನು ಕದಿಯಲು ಬಳಸಬಹುದು."
},
"revealSeedWordsWarningTitle": {
"message": "ಈ ಫ್ರೇಸ್ ಅನ್ನು ಯಾರೊಂದಿಗೂ ಹಂಚಿಕೊಳ್ಳಬೇಡಿ!"
"message": "ಈ ಪದಗಳನ್ನು ನಿಮ್ಮ ಎಲ್ಲಾ ಖಾತೆಗಳನ್ನು ಕದಿಯಲು ಬಳಸಬಹುದು.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "ಹೊಸ RPC URL"
@ -666,9 +636,6 @@
"save": {
"message": "ಉಳಿಸು"
},
"saveAsCsvFile": {
"message": "CSV ಫೈಲ್ ರೂಪದಲ್ಲಿ ಉಳಿಸಿ"
},
"scanInstructions": {
"message": "ನಿಮ್ಮ ಕ್ಯಾಮರಾದ ಮುಂದೆ QR ಕೋಡ್ ಇರಿಸಿ"
},
@ -804,9 +771,6 @@
"terms": {
"message": "ಬಳಕೆಯ ನಿಯಮಗಳು"
},
"testFaucet": {
"message": "ಫಾಸೆಟ್ ಪರೀಕ್ಷಿಸಿ"
},
"tips": {
"message": "ಸಲಹೆಗಳು"
},
@ -925,9 +889,6 @@
"userName": {
"message": "ಬಳಕೆದಾರಹೆಸರು"
},
"viewAccount": {
"message": "ಖಾತೆಯನ್ನು ವೀಕ್ಷಿಸಿ"
},
"viewContact": {
"message": "ಸಂಪರ್ಕವನ್ನು ವೀಕ್ಷಿಸಿ"
},
@ -937,9 +898,6 @@
"welcomeBack": {
"message": "ಮರಳಿ ಸ್ವಾಗತ!"
},
"yesLetsTry": {
"message": "ಹೌದು, ಪ್ರಯತ್ನಿಸೋಣ"
},
"youNeedToAllowCameraAccess": {
"message": "ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು ಕ್ಯಾಮರಾ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಬೇಕಾಗುತ್ತದೆ."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "우선 요금(일명 \"채굴자 팁\")이란 나와 먼저 거래한 것에 대한 인센티브로 채굴자에게 직접 전달되는 금액입니다."
},
"affirmAgree": {
"message": "동의함"
},
"airgapVault": {
"message": "에어갭 볼트"
},
@ -332,6 +329,9 @@
"message": "$1에서 다음 금액까지 인출 및 지출하도록 허용:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "모든 요청을 승인하기 전에 주의 깊게 직접 확인하세요."
},
"amount": {
"message": "금액"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "지출 한도 승인"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "승인"
},
"approveSpendingCap": {
"message": "$1 지출 한도 승인",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "이렇게 하면 사용자가 액세스를 취소할 때까지 제삼자가 가 통지 없이 다음과 같은 NFT에 액세스하고 이를 전송할 수 있습니다."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "한 네트워크에서 다른 네트워크로 자산을 직접 전송하면 자산이 영구적으로 손실될 수 있습니다. 반드시 브릿지를 이용하세요."
},
"attemptToCancel": {
"message": "취소할까요?"
},
"attemptToCancelDescription": {
"message": "이 시도를 제출한다고 해서 원래 거래가 반드시 취소되지는 않습니다. 취소 시도가 성공하면 위의 거래 수수료가 부과됩니다."
},
"attemptingConnect": {
"message": "블록체인에 연결 중입니다."
},
@ -418,7 +420,7 @@
"message": "토큰 자동 감지"
},
"autoDetectTokensDescription": {
"message": "MetaMask는 지갑에 보내진 새로운 토큰을 감지해 표시하기 위해 타사 API를 사용합니다. 이 서비스로부터 데이터를 가져오기를 원치 않으시면 해당 기능을 끄세요.$1",
"message": "지갑에서 받은 새로운 토큰을 감지해 표시하기 위해 타사 API를 사용합니다. 이 서비스를 이용하여 데이터를 자동으로 가져오기 원치 않으시면 해당 기능을 끄세요.$1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "MetaMask 베타 버전"
},
"betaPortfolioSite": {
"message": "베타 포트폴리오 사이트"
},
"betaTerms": {
"message": "베타 이용약관"
},
@ -535,38 +534,9 @@
"message": "$1 구매",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Coinbase Pay로 $1 구매",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Coinbase 계정으로 손쉽게 암호화폐를 구매하거나 전송할 수 있습니다.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "문페이(MoonPay)로 $1 구매",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "문페이는 비자, 마스터카드, 애플/구글/삼성 페이, 145개국 이상에서 이용 가능한 은행 송금을 비롯해 다양한 결제 방법을 지원합니다. 토큰은 MetaMask 계정에 입금됩니다."
},
"buyCryptoWithTransak": {
"message": "트랜삭(Transak)으로 $1 구매",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "트랜삭은 100개국 이상에서 신용카드, 직불카드, 애플 페이, 모비퀵, 은행 송금(지역에 따라 지원이 안 될 수 있음)을 지원합니다. $1 입금은 MetaMask 계정으로 직접 처리됩니다.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "지금 구매"
},
"buyWithWyre": {
"message": "Wyre로 $1 구매"
},
"buyWithWyreDescription": {
"message": "최대 $ 1000 구매까지 간편한 온보딩. 신속한 대화형 상한 구매 확인. 직불/신용 카드, Apple Pay, 은행 송금 지원. 100여국 이상에서 사용 가능. MetaMask 계정으로 토큰 입금"
},
"bytes": {
"message": "바이트"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "무료로 스왑 취소"
},
"cancellationGasFee": {
"message": "가스 수수료 취소"
},
"cancelled": {
"message": "취소됨"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "하드웨어 지갑에 연결하려면 Google Chrome에서 MetaMask를 사용해야 합니다."
},
"clear": {
"message": "지우기"
},
"clearActivity": {
"message": "활동 및 논스 데이터 지우기"
},
"clearActivityButton": {
"message": "활동 탭 데이터 지우기"
},
"clearActivityDescription": {
"message": "이는 계정의 논스를 초기화하고 지갑의 활동 탭에 있는 데이터를 지웁니다. 이렇게 하면 현재 계정과 네트워크만 변경될 뿐 잔액과 입금 거래에는 영향을 미치지 않습니다."
},
"clickToConnectLedgerViaWebHID": {
"message": "WebHID를 통해 Ledger을 연결하려면 여기를 클릭하세요.",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "닫기"
},
"collectibleAddFailedMessage": {
"message": "소유권 정보가 일치하지 않아 NFT를 추가할 수 없습니다. 올바른 정보를 입력했는지 확인하세요."
},
"collectibleAddressError": {
"message": "이 토큰은 NFT입니다. $1에 추가하세요",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "확인"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Goerli 테스트 네트워크에 연결 중"
},
"connectingToLineaTestnet": {
"message": "Linea Goerli 테스트 네트워크에 연결 중"
},
"connectingToMainnet": {
"message": "이더리움 메인넷에 연결 중"
},
@ -755,18 +733,6 @@
"continue": {
"message": "계속"
},
"continueToCoinbasePay": {
"message": "Coinbase Pay로 계속하기"
},
"continueToMoonPay": {
"message": "문페이로 계속하기"
},
"continueToTransak": {
"message": "Transak으로 계속"
},
"continueToWyre": {
"message": "Wyre로 넘어가기"
},
"contract": {
"message": "계약"
},
@ -842,9 +808,19 @@
"createPassword": {
"message": "비밀번호 생성"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "통화 변환"
},
"currencyRateCheckToggle": {
"message": "잔액 및 토큰 가격을 비교할 수 있습니다"
},
"currencyRateCheckToggleDescription": {
"message": "잔액과 토큰 가격 디스플레이를 위해 $1 및 $2 API를 이용합니다. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "통화 기호"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "예치"
},
"depositCrypto": {
"message": "$1 입금",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "자세히 알아보기"
},
@ -992,15 +964,108 @@
"description": {
"message": "설명"
},
"desktopConnectionCriticalErrorDescription": {
"message": "이는 간헐적인 오류일 수 있습니다. 확장 프로그램을 다시 시작하거나 MetaMask Desktop을 비활성화해 보세요."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask 시작 중 문제가 발생했습니다"
},
"desktopConnectionLostErrorDescription": {
"message": "데스크톱 앱이 실행 중인지 확인하거나 MetaMask Desktop을 비활성화하세요."
},
"desktopConnectionLostErrorTitle": {
"message": "MetaMask Desktop 연결이 끊어졌습니다"
},
"desktopDisableButton": {
"message": "데스크톱 앱 비활성화"
},
"desktopDisableErrorCTA": {
"message": "MetaMask Desktop 앱 비활성화"
},
"desktopEnableButton": {
"message": "데스크톱 앱 활성화"
},
"desktopEnableButtonDescription": {
"message": "클릭하여 데스크톱 앱의 모든 배경 절차를 실행하세요."
},
"desktopErrorNavigateSettingsCTA": {
"message": "설정 페이지로 돌아가기"
},
"desktopErrorRestartMMCTA": {
"message": "MetaMask 재시작"
},
"desktopNotFoundErrorCTA": {
"message": "MetaMask Desktop 다운로드"
},
"desktopNotFoundErrorDescription1": {
"message": "데스크톱 앱이 실행 중인지 확인하세요."
},
"desktopNotFoundErrorDescription2": {
"message": "데스크톱 앱이 설치되어 있지 않다면 MetaMask 웹사이트에서 다운로드하세요."
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Desktop을 찾을 수 없습니다"
},
"desktopOpenOrDownloadCTA": {
"message": "MetaMask Desktop 열기"
},
"desktopOutdatedErrorCTA": {
"message": "MetaMask Desktop 업데이트"
},
"desktopOutdatedErrorDescription": {
"message": "MetaMask Desktop 앱을 업그레이드해야 합니다."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop이 최신 버전이 아닙니다"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "MetaMask 확장 프로그램 업데이트"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "MetaMask 확장 프로그램을 업그레이드해야 합니다."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask 확장 프로그램이 최신 버전이 아닙니다"
},
"desktopPageDescription": {
"message": "페어링에 성공하면 확장 프로그램이 다시 시작되며 비밀번호를 다시 입력해야 합니다."
},
"desktopPageSubTitle": {
"message": "MetaMask Desktop을 열고 이 코드를 입력하세요"
},
"desktopPageTitle": {
"message": "데스크톱 페어링"
},
"desktopPairedWarningDeepLink": {
"message": "MetaMask Desktop 설정으로 이동하세요"
},
"desktopPairedWarningDescription": {
"message": "새로 페어링하기 원하시면 현재 연결 상태를 해제하세요."
},
"desktopPairedWarningTitle": {
"message": "MM 데스크톱이 이미 페어링되었습니다"
},
"desktopPairingExpireMessage": {
"message": "코드는 $1초 후에 만료됩니다"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "MetaMask 홈으로 돌아가기"
},
"desktopUnexpectedErrorDescription": {
"message": "MetaMask Desktop을 확인하여 연결을 복원하세요"
},
"desktopUnexpectedErrorTitle": {
"message": "문제가 발생했습니다..."
},
"details": {
"message": "세부 정보"
},
"directDepositCrypto": {
"message": "$1 직접 입금"
},
"directDepositCryptoExplainer": {
"message": "이미 $1(이)가 있는 경우 직접 입금하는 것이 새 지갑에 $1(을)를 넣는 가장 빠른 방법입니다."
},
"disabledGasOptionToolTipMessage": {
"message": "“$1” 유형은 오리지널 가스비를 최소 10% 인상해야 하는 기준에 미치지 못하므로 비활성화되었습니다.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "OpenSea의 API를 사용하여 NFT 데이터를 가져옵니다. NFT 자동 감지는 OpenSea의 API에 의존하며 이 API가 꺼져 있으면 사용할 수 없습니다."
},
"enableOpenSeaSecurityProvider": {
"message": "보안 업체 활성화"
},
"enableSmartTransactions": {
"message": "스마트 트랜잭션 활성화"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Etherscan에서 보기"
},
"expandExperience": {
"message": "web3 경험 확대"
},
"expandView": {
"message": "보기 확장"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "세부 정보 보기",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "추가하기",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "가스 사용됨"
},
"gdprMessage": {
"message": "이 데이터는 집계 처리된 정보이며 일반 데이터 보호 규정 (EU) 2016/679의 목적에 따라 익명으로 관리됩니다. 당사의 개인정보보호 관행에 관한 자세한 내용은 $1을 참조하세요.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "개인정보처리방침",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "일반"
},
"getEther": {
"message": "Ether 얻기"
},
"getEtherFromFaucet": {
"message": "$1 네크워크 포시트에서 Ether 얻기",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "알려진 악성 요청을 받을 때마다 OpenSea로부터 경고 알림을 받으세요."
},
"goBack": {
"message": "뒤로 가기"
@ -1545,6 +1598,32 @@
"history": {
"message": "기록"
},
"holdToReveal": {
"message": "눌러서 SRP 확인"
},
"holdToRevealContent1": {
"message": "비밀 복구 구문이 있으면 $1 기능을 사용할 수 있습니다",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "지갑과 자금 모두에 액세스",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "이는 누구와도 공유하지 마세요. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "MetaMask 지원팀은 이러한 정보를 절대로 묻지 않습니다,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "오히려 피싱 사기꾼들이 요구할 수 있으니 주의가 필요합니다.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "SRP를 안전하게 보관하세요"
},
"ignoreAll": {
"message": "모두 무시"
},
@ -1577,7 +1656,7 @@
"message": "NFT 페이지 가져오기"
},
"importNFTTokenIdToolTip": {
"message": "수집물의 ID는 고유한 식별자이므로 ID가 동일한 NFT는 존재하지 않습니다. 다시 말하지만, OpenSea에서 이 번호는 '세부 정보(Details)'에서 찾아볼 수 있습니다. 이를 기록하거나 클립보드에 복사해 두세요."
"message": "NFT의 ID는 고유한 식별자이므로 동일한 NFT는 존재하지 않습니다. 다시 말하지만, OpenSea에서 이 번호는 '세부 정보(Details)'에서 찾아볼 수 있습니다. 이를 기록하거나 클립보드에 복사해 두세요."
},
"importNFTs": {
"message": "NFT 가져오기"
@ -1724,9 +1803,6 @@
"message": "JSON 파일",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "계정 및 네트워크 전반의 토큰과 NFT를 관리할 수 있습니다."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "마지막으로 연결됨"
},
"lastPriceSold": {
"message": "최근 판매 가격"
},
"lastSold": {
"message": "최근 판매"
},
"learnCancelSpeeedup": {
"message": "$1하는 방법 알아보기",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "이 토큰을 추가할까요?"
},
"lineatestnet": {
"message": "Linea Goerli 테스트 네트워크"
},
"link": {
"message": "링크"
},
@ -1873,9 +1958,6 @@
"malformedData": {
"message": "잘못된 데이터"
},
"manageSnaps": {
"message": "설치된 스냅(Snap)을 관리합니다"
},
"max": {
"message": "최대"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "MetaMask 버전"
},
"metametricsCommitmentsAllowOptOut": {
"message": "언제든 설정을 통해 옵트아웃할 수 있습니다."
},
"metametricsCommitmentsBoldNever": {
"message": "절대로",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask에서는.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "전체 IP 주소를 절대 수집하지 않습니다.",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "키, 주소, 거래, 잔액, 해시 또는 개인 정보를 절대 수집하지 않습니다.",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 수익을 위해 데이터를 판매하지 않습니다!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "익명화된 클릭 및 페이지뷰 이벤트 보내기"
},
"metametricsHelpImproveMetaMask": {
"message": "MetaMask 개선에 참여"
},
"metametricsOptInDescription": {
"message": "MetaMask는 사용자가 확장 프로그램과 상호작용하는 방식을 자세히 이해하기 위해 사용 데이터를 수집하고자 합니다. 수집한 데이터는 당사의 제품과 이더리움 에코시스템의 사용 편의성 및 사용자 경험을 지속적으로 개선하는 데 활용됩니다."
"metrics": {
"message": "메트릭"
},
"mismatchedChainLinkText": {
"message": "네트워크 세부 정보 검증",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "'확장 프로그램과 동기화' 기능이 일시적으로 비활성화됩니다. MetaMask 모바일에서 확장 지갑을 사용하려면 모바일 앱에서 지갑 설정 옵션으로 돌아가 '비밀 복구 구문 가져오기' 옵션을 선택하세요. 확장 지갑의 비밀 구문을 사용하시면 지갑을 모바일로 가져올 수 있습니다."
},
"moreComingSoon": {
"message": "더 추가 예정..."
},
"mustSelectOne": {
"message": "토큰을 1개 이상 선택해야 합니다."
},
@ -1992,10 +2049,6 @@
"message": "이 네트워크의 네이티브 토큰은 $1입니다. 이는 가스비 지불에 사용하는 토큰입니다.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "MetaMask로 디앱을 이용하려면 지갑에 $1(이)가 있어야 합니다.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "도움이 필요하신가요? $1에 문의하세요.",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "계정 $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "수집이 성공적으로 추가되었습니다!"
},
"newContact": {
"message": "새 연락처"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "“$1”가 성공적으로 추가되었습니다!"
},
"newNftAddedMessage": {
"message": "NFT를 성공적으로 추가했습니다!"
},
"newPassword": {
"message": "새 비밀번호(8자 이상)"
},
@ -2138,8 +2191,18 @@
"message": "임시값이 권장 임시값인 $1보다 큽니다.",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT\n"
"nftAddFailedMessage": {
"message": "소유권 정보가 일치하지 않아 NFT를 추가할 수 없습니다. 올바른 정보를 입력했는지 확인하세요."
},
"nftAddressError": {
"message": "이 토큰은 NFT입니다. $1에 추가하세요",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "면책 조항: MetaMask는 소스 URL에서 미디어 파일을 가져옵니다. 이러한 URL은 때때로 NFT가 민팅된 마켓플레이스에서 변경되기도 합니다."
},
"nftOptions": {
"message": "NFT 옵션"
},
"nftTokenIdPlaceholder": {
"message": "토큰 ID 입력"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "설치된 스냅이 없습니다"
},
"noThanks": {
"message": "괜찮습니다"
},
"noThanksVariant2": {
"message": "아니요, 괜찮습니다."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "가스 부족"
},
"notNow": {
"message": "나중에"
},
"notifications": {
"message": "알림"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "보안 및 개인정보 설정 표시"
},
"notifications17Description": {
"message": "이 업데이트에는 자신의 개인정보 보호를 위해 행사할 수 있는 옵션이 더욱 많습니다. 데이터 수집 방법을 더욱 투명하게 하였고, 데이터 공유에 관련하여 명확한 옵션을 추가했습니다. 보안 및 개인 정보 설정을 통해 기본 설정을 변경하거나 확장 프로그램 사용 데이터를 삭제하세요."
},
"notifications17Title": {
"message": "보안 및 개인정보 설정 표시"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "블록 탐색기 열기"
},
"openSea": {
"message": "OpenSea (베타)"
},
"openSeaAltText": {
"message": "OpenSea 보안 업체"
},
"openSeaDescription": {
"message": "이 기능의 1차 보안 업체는 OpenSea입니다. 곧 다른 보안 업체도 마련하겠습니다!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "옵션"
},
"optionalWithParanthesis": {
"message": "(옵션)"
},
"options": {
"message": "옵션"
},
"or": {
"message": "또는"
},
@ -2564,6 +2639,9 @@
"message": "기타 스냅",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "현재 사용 중인 브라우저가 최신 버전이 아닙니다. 브라우저를 업데이트하지 않으면 보안 패치와 MetaMask의 새 기능을 이용할 수 없습니다."
},
"padlock": {
"message": "패드락"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "이 업데이트에서 취소됨"
},
"permission_accessNamedSnap": {
"message": "$1 연결",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "인터넷에 액세스합니다.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "$1 스냅에 연결합니다.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"message": "$1 스냅에 연결하세요.",
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "정기적 활동 예약 및 실행",
@ -2671,6 +2753,10 @@
"message": "'$1' 계정과 자산을 통제합니다.",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "$1 계정과 자산을 관리하세요.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "기기의 데이터를 저장하고 관리합니다.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "$1 공개 키($2) 보기.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "$1에 관한 공개 키 보기",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "권한"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "인기 사용자 정의 네트워크"
},
"portfolioSite": {
"message": "포트폴리오 사이트"
"portfolio": {
"message": "포트폴리오"
},
"preferredLedgerConnectionType": {
"message": "선호하는 Ledger 연결 유형",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "NFT 제거"
},
"removeNftMessage": {
"message": "NFT가 성공적으로 제거되었습니다!"
},
"removeSnap": {
"message": "스냅 제거"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "대체"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "보안 제공업체가 추가 정보를 공유하지 않았습니다"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "악성으로 플래그 표시된 요청"
},
"requestMayNotBeSafe": {
"message": "요청이 안전하지 않을 수 있습니다"
},
"requestMayNotBeSafeError": {
"message": "보안업체가 악성 파일 활동을 감지하지 못했지만, 아직 계속 진행하기에는 안전하지 않을 지도 모릅니다."
},
"requestNotVerified": {
"message": "확인되지 않은 요청"
},
"requestNotVerifiedError": {
"message": "오류로 인해 보안업체가 이 요청을 확인하지 못했습니다. 주의하여 진행하세요."
},
"requestsAwaitingAcknowledgement": {
"message": "확인 대기 중인 요청"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "재설정"
},
"resetAccount": {
"message": "계정 재설정"
},
"resetAccountDescription": {
"message": "계정을 재설정하면 거래 내역이 지워집니다. 계정의 잔액은 변경되지 않으며 비밀 복구 구문을 다시 입력하지 않아도 됩니다."
},
"resetWallet": {
"message": "지갑 초기화"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "비밀 복구 구문 공개"
},
"revealSeedWordsDescription": {
"message": "브라우저를 변경하거나 컴퓨터를 옮긴 경우, 계정에 액세스하려면 이 비밀 복구 구문이 필요합니다. 기밀이 보장된 안전한 곳에 보관하세요."
"revealSeedWordsDescription1": {
"message": "$1 활용으로 $2 기능을 사용할 수 있습니다",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask는 $1입니다. 이는 회원님이 SRP의 소유자라는 의미입니다.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "지갑과 자금에 모두 액세스하세요.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "비수탁형 지갑"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "비밀 복구 구문 (SRP)"
},
"revealSeedWordsText": {
"message": "문자"
},
"revealSeedWordsWarning": {
"message": "이 구문은 계정 전체를 도용하는 데 사용될 수 있습니다."
"message": "다른 사람이 보고 있지 않은지 확인하세요. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "이 구문은 누구와도 공유하지 마세요!"
"revealSeedWordsWarning2": {
"message": "MetaMask 지원팀은 이러한 정보를 절대로 묻지 않습니다,",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "시드 구문 보기"
@ -2941,11 +3068,11 @@
"message": "지출 한도 검토"
},
"revokeAllTokensTitle": {
"message": "모든 $1에 액세스할 수 있는 권한을 철회합니까?",
"message": "모든 $1에 액세스할 수 있는 권한을 철회할까요?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "권한을 철회하면 다음 $1(이)가 더 이상 $2에 액세스할 수 없습니다.",
"message": "권한을 철회하면 제삼자가 통보 없이 $1에 액세스하거나 이를 전송할 수 없습니다.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "저장"
},
"saveAsCsvFile": {
"message": "CSV 파일로 저장"
},
"scanInstructions": {
"message": "QR 코드를 카메라 앞에 놓으세요"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "아래에 기존 Ledger 계정이 표시되지 않는다면 경로를 \"Legacy (MEW / MyCrypto)\"로 변경해 보세요."
},
"selectProvider": {
"message": "공급업체 선택"
},
"selectType": {
"message": "유형 선택"
},
@ -3246,16 +3373,9 @@
"message": "'$1' 스냅 이용에 필요한 $2 키 액세스 권한을 부여하고 있습니다. 이 작업은 사용자의 $2 계정과 자산에 '$1' 제어 권한을 부여하며 취소가 불가능합니다. '$1의 신뢰성을 확인한 후에 진행하세요.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "이 스냅이 다음 권한을 요청하고 있습니다."
},
"snapUpdate": {
"message": "스냅 업데이트"
},
"snapUpdateExplanation": {
"message": "$1에는 스냅의 새 버전이 필요합니다",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "스냅"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "지출 한도가 너무 큼"
},
"spendingCap": {
"message": "지출 한도"
},
"spendingCapError": {
"message": "오류: 숫자만 입력 가능"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "연결되지 않음"
},
"staySafeWithOpenSea": {
"message": "OpenSea로 보안을 유지하세요"
},
"step1LatticeWallet": {
"message": "Lattice1을 연결하세요."
},
@ -3636,7 +3762,7 @@
"message": "MetaMask 수수료"
},
"swapMetaMaskFeeDescription": {
"message": "당사는 매번 최상의 유동성 소스에서 최적의 가격을 찾아드립니다. 이 견적에는 $1%의 수수료가 자동으로 반영됩니다.",
"message": "$1%의 수수료는 자동으로 각 견적에 반영됩니다. 이는 MetaMask의 유동성 공급자 정보 집계용 소프트웨어 사용 라이선스 비용입니다.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "서비스 약관"
},
"testFaucet": {
"message": "수도꼭지(faucet) 테스트"
},
"testNetworks": {
"message": "테스트 네트워크"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "유의 사항:"
},
"thisIsBasedOn": {
"message": "다음에 기반한 정보입니다: "
},
"thisServiceIsExperimental": {
"message": "이 서비스는 시험 서비스입니다"
},
"time": {
"message": "시간"
},
@ -3914,6 +4043,12 @@
"message": "수신: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "이 기능을 켜면 eth_sign 요청을 통해 dapp이 서명을 요청할 수 있습니다. eth_sign은 임의의 해시에 서명할 수 있는 개방형 서명 방법이므로 피싱의 위험이 있습니다. 서명한 내용을 읽을 수 있고 요청의 출처를 신뢰할 수 있는 경우에만 eth_sign 요청에 서명하세요."
},
"toggleEthSignField": {
"message": "eth_sign 요청 토글"
},
"toggleTestNetworks": {
"message": "$1 테스트 네트워크",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "토큰이 이미 추가되었습니다."
},
"tokenAutoDetection": {
"message": "토큰 자동 감지"
},
"tokenContractAddress": {
"message": "토큰 계약 주소"
},
@ -4064,10 +4202,10 @@
"message": "$2에서 가스 수수료가 $1(으)로 증가한 거래가 다시 제출되었습니다."
},
"transactionSecurityCheck": {
"message": "결제 보안 점검"
"message": "결제 보안 점검 활성화"
},
"transactionSecurityCheckDescription": {
"message": "이 기능을 활성화하여 타사(OpenSea)가 사용자의 모든 결제 내역과 서명 요청을 검토하고 허위 요청이 발생할 경우 경고를 발송하도록 하세요."
"message": "서명하기 전에 해당 트랜잭션과 서명 요청 관련 위험을 탐지하고 표시하기 위해 타사 API를 이용합니다. 이러한 서비스를 이용하시면 해당 서비스가 아직 서명하지 않은 트랜젝션, 서명 요청, 계정 주소 및 기본 언어에 액세스할 수 있습니다."
},
"transactionSubmitted": {
"message": "$2에서 가스 수수료가 $1인 거래가 제출되었습니다."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "다시 시도"
},
"tryOur": {
"message": "다음을 체험하기:"
},
"turnOnTokenDetection": {
"message": "향상된 토큰 감지 켜기"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "수집 가능한(ERC-721) 토큰 전송은 현재 지원되지 않습니다.",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "NFT(ERC-721) 토큰 전송은 현재 지원되지 않습니다.",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "이 계약을 확인할 수 없습니다. 믿을 수 있는 주소인지 확인하세요."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "이 URL은 현재 $1 네트워크에서 사용됩니다."
},
"useCollectibleDetection": {
"message": "NFT 자동 감지"
},
"useCollectibleDetectionDescription": {
"message": "NFT 미디어 및 데이터를 표시하면 IP 주소가 중앙 서버에 노출될 수 있습니다. 지갑에서 NFT를 감지하려면 (OpenSea와 같은) 타사 API를 사용해야 합니다. 이렇게 하면 해당 서비스의 계정 주소가 노출됩니다. 앱이 해당 서비스에서 데이터를 가져오지 않도록 하려면 비활성화된 상태로 유지하세요."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "아울러, 다음을 명심하세요:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "NFT 메타 데이터에는 사기 또는 허위 사이트로 안내하는 링크가 있을 수 있습니다."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "누구든지 회원님의 계정으로 NFT를 에어드롭할 수 있습니다. 여기에는 지갑에 자동으로 표시될 수도 있는 공격적인 콘텐츠도 포함될 수 있습니다."
},
"useDefault": {
"message": "기본값 사용"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "모든 계정을 일괄 처리하여 잔액을 신속하게 표시하도록 Infura에 요청합니다. 이 기능을 끄면 활성 계정에 대한 잔액만 요청합니다. 일부 dapp은 지갑을 연결하지 않으면 작동하지 않습니다."
},
"useNftDetection": {
"message": "NFT 자동 감지"
},
"useNftDetectionDescription": {
"message": "지갑에서 NFT를 감지하려면 타사 API를 사용해야 합니다. 이렇게 하면 IP 주소가 중앙 서버에 노출될 수 있습니다. 이 기능을 사용하시려면 몇 가지 점을 주의해야 합니다."
},
"useNftDetectionDescriptionLine2": {
"message": "타사 API에서 회원님의 계정 주소를 파악할 수 있습니다."
},
"useNftDetectionDescriptionLine3": {
"message": "NFT 메타 데이터에는 사기나 허위 사이트의 링크가 담겨 있을 수 있습니다."
},
"useNftDetectionDescriptionLine4": {
"message": "누구든지 회원님의 계정으로 NFT를 에어드롭할 수 있습니다. 여기에는 지갑에 자동으로 표시될 수도 있는 공격적인 콘텐츠도 포함될 수 있습니다."
},
"useNftDetectionDescriptionLine5": {
"message": "해당 서비스로부터 데이터를 가져오기를 원치 않으시면 이 기능을 끄세요."
},
"usePhishingDetection": {
"message": "피싱 감지 사용"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "보기"
},
"viewAccount": {
"message": "계정 보기"
},
"viewAllDetails": {
"message": "모든 세부 정보 보기"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 계약은 추가 통보나 동의 없이도 남은 토큰 전체를 사용할 수 있습니다. 보호를 위해 최소 지출 한도를 설정하세요.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "약함"
@ -4372,9 +4507,6 @@
"yes": {
"message": "예"
},
"yesLetsTry": {
"message": "예, 시도하겠습니다."
},
"youHaveAddedAll": {
"message": "모든 인기 네트워크를 추가했습니다. $1에서 더 많은 네트워크를 확인하거나 $2을(를) 할 수 있습니다.",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "NFT가 위험할 수 있습니다"
},
"yourPrivateSeedPhrase": {
"message": "비공개 비밀 복구 구문"
"message": "비밀 복구 구문"
},
"zeroGasPriceOnSpeedUpError": {
"message": "가속화 시 가스 가격 0"

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Turtas"
},
"attemptToCancel": {
"message": "Mėginti atšaukti?"
},
"attemptToCancelDescription": {
"message": "Šis mėginimas negarantuoja, kad jūsų pradinė operacija bus atšaukta. Jeigu mėginimas atšaukti yra sėkmingas, jums bus taikomas pirmiau minėtas operacijos mokestis."
},
"attemptingConnect": {
"message": "Mėginama prisijungti prie „blockchain“."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Jūsų naršyklė neatpažįstama..."
},
"buyWithWyre": {
"message": "Pirkti $1 su „Wyre“"
},
"buyWithWyreDescription": {
"message": "„Wyre“ leidžia naudotis kreditine kortele norint įnešti $1 tiesiai į jūsų „MetaMask“ paskyrą."
},
"bytes": {
"message": "Baitai"
},
"cancel": {
"message": "Atšaukti"
},
"cancellationGasFee": {
"message": "Dujų mokesčio atšaukimas"
},
"cancelled": {
"message": "Atšaukta"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Jungiamasi prie „Goerli“ bandomojo tinklo"
},
"connectingToLineaTestnet": {
"message": "Jungiamasi prie „Linea“ bandomojo tinklo"
},
"connectingToMainnet": {
"message": "Jungiamasi prie pagrindinio „Ethereum“ tinklo"
},
"continueToWyre": {
"message": "Tęsti su „Wyre“"
},
"contractDeployment": {
"message": "Sutarties išdėstymas"
},
@ -336,13 +321,6 @@
"general": {
"message": "Bendra"
},
"getEther": {
"message": "Gauti eterių"
},
"getEtherFromFaucet": {
"message": "Gaukite eterių iš čiaupo $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "„Goerli“ bandomasis tinklas"
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "Ar norėtumėte pridėti šiuos žetonus?"
},
"lineatestnet": {
"message": "„Linea“ bandomasis tinklas"
},
"links": {
"message": "Nuorodos"
},
@ -639,26 +620,15 @@
"reset": {
"message": "Nustatyti iš naujo"
},
"resetAccount": {
"message": "Atkurti paskyrą"
},
"resetAccountDescription": {
"message": "Atkūrus paskyrą, jūsų operacijų istorija bus išvalyta."
},
"restore": {
"message": "Atkurti"
},
"revealSeedWords": {
"message": "Atskleisti atkūrimo žodžius"
},
"revealSeedWordsDescription": {
"message": "Jei imsite naudotis kita naršykle arba kitu kompiuteriu, šios atkūrimo frazės jums reikės paskyroms pasiekti. Saugokite ją saugioje ir slaptoje vietoje."
},
"revealSeedWordsWarning": {
"message": "Šiuos žodžius galima panaudoti visoms jūsų paskyroms pavogti."
},
"revealSeedWordsWarningTitle": {
"message": "Šia fraze su niekuo NESIDALINKITE!"
"message": "Šiuos žodžius galima panaudoti visoms jūsų paskyroms pavogti.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Naujas RPC URL"
@ -666,9 +636,6 @@
"save": {
"message": "Išsaugoti"
},
"saveAsCsvFile": {
"message": "Įrašyti kaip CSV failą"
},
"scanInstructions": {
"message": "Laikykite QR kodą priešais kamerą"
},
@ -804,9 +771,6 @@
"terms": {
"message": "Naudojimo sąlygos"
},
"testFaucet": {
"message": "Testuoti čiaupą"
},
"tips": {
"message": "Arbatpinigiai"
},
@ -925,9 +889,6 @@
"userName": {
"message": "Vartotojo vardas"
},
"viewAccount": {
"message": "Žiūrėti paskyrą"
},
"viewContact": {
"message": "Peržiūrėti kontaktą"
},
@ -937,9 +898,6 @@
"welcomeBack": {
"message": "Sveiki sugrįžę!"
},
"yesLetsTry": {
"message": "Taip, mėginkime"
},
"youNeedToAllowCameraAccess": {
"message": "Norint naudotis šia funkcija, reikia leisti prieigą prie kameros.."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Aktīvs"
},
"attemptToCancel": {
"message": "Vai mēģināt atcelt?"
},
"attemptToCancelDescription": {
"message": "Šī mēģinājuma iesniegšana negarantē sākotnējā darījuma atcelšanu. Ja atcelšanas mēģinājums izdosies, no jums tiks pieprasīta iepriekš norādītā darījuma nodeva."
},
"attemptingConnect": {
"message": "Mēģina izveidot savienojumu ar bloku ķēdi."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Jūsu pārlūkprogramma netiek atbalstīta..."
},
"buyWithWyre": {
"message": "Pirkt $1 ar Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre ļauj noguldīt $1 tieši jūsu MetaMask kontā, izmantojot kredītkarti."
},
"bytes": {
"message": "Baiti"
},
"cancel": {
"message": "Atcelt"
},
"cancellationGasFee": {
"message": "Atcelšanas maksājums par Gas"
},
"cancelled": {
"message": "Atcelts"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Pieslēdzas Goerli testa tīklam"
},
"connectingToLineaTestnet": {
"message": "Pieslēdzas Linea Goerli testa tīklam"
},
"connectingToMainnet": {
"message": "Savienojas ar galveno Ethereum tīklu"
},
"continueToWyre": {
"message": "Pāriet uz Wyre"
},
"contractDeployment": {
"message": "Līgumu pielietošana"
},
@ -332,13 +317,6 @@
"general": {
"message": "Vispārīgi"
},
"getEther": {
"message": "Saņemt Ether"
},
"getEtherFromFaucet": {
"message": "Vai vēlaties $1 iegūt Ether no krāna?",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli testa tīkls"
},
@ -433,6 +411,9 @@
"likeToImportTokens": {
"message": "Vai vēlaties pievienot šos marķierus?"
},
"lineatestnet": {
"message": "Linea Goerli testa tīkls"
},
"links": {
"message": "Saites"
},
@ -635,26 +616,15 @@
"reset": {
"message": "Atiestatīt"
},
"resetAccount": {
"message": "Atiestatīt kontu"
},
"resetAccountDescription": {
"message": "Konta atiestatīšana izdzēsīs darījumu vēsturi."
},
"restore": {
"message": "Atjaunot"
},
"revealSeedWords": {
"message": "Parādīt atkopšanas vārdus"
},
"revealSeedWordsDescription": {
"message": "Ja mainīsiet pārlūku vai datoru, jūsu kontu piekļuvei būs nepieciešama šī atkopšanas frāze. Saglabājiet to drošā un slepenā vietā!"
},
"revealSeedWordsWarning": {
"message": "Šos vārdus var izmantot visu jūsu kontu nolaupīšanai."
},
"revealSeedWordsWarningTitle": {
"message": "NEDALIETIES ar šo frāzi!"
"message": "Šos vārdus var izmantot visu jūsu kontu nolaupīšanai.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Jauns RPC URL"
@ -662,9 +632,6 @@
"save": {
"message": "Saglabāt"
},
"saveAsCsvFile": {
"message": "Saglabāt kā CSV failu"
},
"scanInstructions": {
"message": "Novietojiet QR kodu kameras priekšā"
},
@ -800,9 +767,6 @@
"terms": {
"message": "Lietošanas noteikumi"
},
"testFaucet": {
"message": "Testa krāns"
},
"tips": {
"message": "Dzeramnauda"
},
@ -921,9 +885,6 @@
"userName": {
"message": "Lietotājvārds"
},
"viewAccount": {
"message": "Skatīt kontu"
},
"viewContact": {
"message": "Skatīt līgumu"
},
@ -933,9 +894,6 @@
"welcomeBack": {
"message": "Ar atgriešanos!"
},
"yesLetsTry": {
"message": "Jā, pamēģināsim"
},
"youNeedToAllowCameraAccess": {
"message": "Lai lietotu šo funkciju, jādod piekļuve kamerai."
},

View File

@ -144,8 +144,5 @@
},
"userName": {
"message": "ഉപയോക്തൃനാമം"
},
"viewAccount": {
"message": "അക്കൗണ്ട് കാണുക"
}
}

View File

@ -144,8 +144,5 @@
},
"userName": {
"message": "वापरकर्तानाव"
},
"viewAccount": {
"message": "खाते पहा"
}
}

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Aset"
},
"attemptToCancel": {
"message": "Cuba untuk Batalkan?"
},
"attemptToCancelDescription": {
"message": "Menghantar percubaan ini tidak akan menjamin transaksi asal anda dibatalkan. Jika percubaan pembatalan berjaya, anda akan dikenakan yuran transaksi di atas."
},
"attemptingConnect": {
"message": "Sedang cuba menyambungkan kepada rantaian blok."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Pelayar anda tidak disokong..."
},
"buyWithWyre": {
"message": "Beli $1 dengan Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre membolehkan anda menggunakan kad kredit untuk mendeposit $1 secara terus ke dalam akaun MetaMask anda."
},
"bytes": {
"message": "Bait"
},
"cancel": {
"message": "Batal"
},
"cancellationGasFee": {
"message": "Fi Gas Pembatalan"
},
"cancelled": {
"message": "Dibatalkan"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Menyambung kepada Rangkaian Ujian Goerli"
},
"connectingToLineaTestnet": {
"message": "Menyambung kepada Rangkaian Ujian Linea Goerli"
},
"connectingToMainnet": {
"message": "Menyambung kepada Rangkaian Ethereum Utama"
},
"continueToWyre": {
"message": "Teruskan ke Wyre"
},
"contractDeployment": {
"message": "Penyusunan Kontrak"
},
@ -329,13 +314,6 @@
"general": {
"message": "Am"
},
"getEther": {
"message": "Dapatkan Ether"
},
"getEtherFromFaucet": {
"message": "Dapatkan Ether daripada pili untuk $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Rangkaian Ujian Goerli"
},
@ -426,6 +404,9 @@
"likeToImportTokens": {
"message": "Adakah anda ingin menambah token ini?"
},
"lineatestnet": {
"message": "Rangkaian Ujian Linea Goerli"
},
"links": {
"message": "Pautan"
},
@ -619,26 +600,15 @@
"reset": {
"message": "Tetapkan semula"
},
"resetAccount": {
"message": "Tetapkan Semula Akaun"
},
"resetAccountDescription": {
"message": "Menetapkan semula akaun anda akan mengosongkan sejarah transaksi anda."
},
"restore": {
"message": "Pulihkan"
},
"revealSeedWords": {
"message": "Dedahkan Ungkapan Benih"
},
"revealSeedWordsDescription": {
"message": "Jika anda pernah menukar pelayar atau berpindah komputer, anda memerlukan ungkapan benih ini untuk mengakses akaun anda. Simpan ungkapan di tempat yang selamat dan rahsia."
},
"revealSeedWordsWarning": {
"message": "Perkataan ini boleh digunakan untuk mencuri kesemua akaun anda."
},
"revealSeedWordsWarningTitle": {
"message": "JANGAN berkongsi ungkapan ini dengan orang lain!"
"message": "Perkataan ini boleh digunakan untuk mencuri kesemua akaun anda.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "URL RPC baru"
@ -646,9 +616,6 @@
"save": {
"message": "Simpan"
},
"saveAsCsvFile": {
"message": "Simpan sebagai Fail CSV"
},
"scanInstructions": {
"message": "Bawa kod QR ke hadapan kamera anda"
},
@ -784,9 +751,6 @@
"terms": {
"message": "Syarat-syarat Penggunaan"
},
"testFaucet": {
"message": "Uji Pili"
},
"tips": {
"message": "Tip"
},
@ -902,9 +866,6 @@
"userName": {
"message": "Nama pengguna"
},
"viewAccount": {
"message": "Paparkan Akaun"
},
"viewContact": {
"message": "Lihat Kenalan"
},
@ -914,9 +875,6 @@
"welcomeBack": {
"message": "Selamat Kembali!"
},
"yesLetsTry": {
"message": "Ya, mari cuba"
},
"youNeedToAllowCameraAccess": {
"message": "Anda perlu membenarkan akses kamera untuk menggunakan ciri ini."
},

View File

@ -119,13 +119,6 @@
"gasPrice": {
"message": "Gasprijs (GWEI)"
},
"getEther": {
"message": "Krijg Ether"
},
"getEtherFromFaucet": {
"message": "Haal Ether uit een kraan voor de $1",
"description": "Displays network name for Ether faucet"
},
"here": {
"message": "hier",
"description": "as in -click here- for more information (goes with troubleTokenBalances)"
@ -256,14 +249,12 @@
"required": {
"message": "Verplicht"
},
"resetAccount": {
"message": "Account opnieuw instellen"
},
"revealSeedWords": {
"message": "Onthul back-up woorden"
},
"revealSeedWordsWarning": {
"message": "Zorg dat je back-up woorden niet op een openbare plaats bekijkt! Deze woorden kunnen worden gebruikt om al uw accounts opnieuw te genereren (en dus uw account te stelen)."
"message": "Zorg dat je back-up woorden niet op een openbare plaats bekijkt! Deze woorden kunnen worden gebruikt om al uw accounts opnieuw te genereren (en dus uw account te stelen).",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"save": {
"message": "Opslaan"
@ -313,9 +304,6 @@
"terms": {
"message": "Gebruiksvoorwaarden"
},
"testFaucet": {
"message": "Test de kraan"
},
"to": {
"message": "Naar"
},
@ -347,9 +335,6 @@
"usedByClients": {
"message": "Gebruikt door verschillende klanten"
},
"viewAccount": {
"message": "Bekijk account"
},
"visitWebSite": {
"message": "Bezoek onze website"
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Ressurs"
},
"attemptToCancel": {
"message": "Forsøk å avbryte"
},
"attemptToCancelDescription": {
"message": "Å sende inn dette forsøket garanterer ikke at den opprinnelige transaksjonen blir kansellert. Hvis kanselleringsforsøket lykkes, vil du bli belastet transaksjonsgebyret ovenfor."
},
"attemptingConnect": {
"message": "Prøver å opprette forbindelse med blokkjede"
},
@ -130,18 +124,9 @@
"browserNotSupported": {
"message": "Nettleseren din støttes ikke ..."
},
"buyWithWyre": {
"message": "Kjøp $1 med Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre lar deg bruke et kredittkort for å sette inn $1 rett på MetaMask-kontoen din."
},
"cancel": {
"message": "Avbryt"
},
"cancellationGasFee": {
"message": "Kansellering gassavgift"
},
"cancelled": {
"message": "Avbrutt"
},
@ -175,12 +160,12 @@
"connectingToGoerli": {
"message": "Oppretter forbindelse med Goerli Test Network"
},
"connectingToLineaTestnet": {
"message": "Oppretter forbindelse med Linea Goerli Test Network"
},
"connectingToMainnet": {
"message": "Forbinder med hoved-Ethereumnettverk "
},
"continueToWyre": {
"message": "Fortsett til Wyre "
},
"contractDeployment": {
"message": "Distribusjon av kontrakten"
},
@ -329,13 +314,6 @@
"general": {
"message": "Generell"
},
"getEther": {
"message": "Skaff Ether "
},
"getEtherFromFaucet": {
"message": "Få Ether fra en kran for $1",
"description": "Displays network name for Ether faucet"
},
"hardware": {
"message": "Maskinvare"
},
@ -626,26 +604,15 @@
"reset": {
"message": "Tilbakestill"
},
"resetAccount": {
"message": "Tilbakestill konto"
},
"resetAccountDescription": {
"message": "Hvis du tilbakestiller kontoen din vil transaksjonshistorien din slettes. "
},
"restore": {
"message": "Gjenopprett"
},
"revealSeedWords": {
"message": "Vis frøord"
},
"revealSeedWordsDescription": {
"message": "Hvis du noen gang bytter nettlesere eller flytter datamaskiner, trenger du denne mnemoniske gjenopprettingsfrasen for å få tilgang til kontoene dine. Lagre dem på et trygt og hemmelig sted."
},
"revealSeedWordsWarning": {
"message": "Disse ordene kan brukes for å stjele alle kontoene dine. "
},
"revealSeedWordsWarningTitle": {
"message": "IKKE del denne frasen med noen! "
"message": "Disse ordene kan brukes for å stjele alle kontoene dine. ",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "NY RPC-URL "
@ -653,9 +620,6 @@
"save": {
"message": "Lagre"
},
"saveAsCsvFile": {
"message": "Lagre som CSV-fil "
},
"scanInstructions": {
"message": "Plasser QR-koden foran kameraet ditt"
},
@ -785,9 +749,6 @@
"terms": {
"message": "Brukervilkår"
},
"testFaucet": {
"message": "Testkran"
},
"to": {
"message": "Til "
},
@ -903,9 +864,6 @@
"userName": {
"message": "Brukernavn"
},
"viewAccount": {
"message": "Se konto"
},
"viewContact": {
"message": "Se kontrakt"
},
@ -915,9 +873,6 @@
"welcomeBack": {
"message": "Velkommen tilbake!"
},
"yesLetsTry": {
"message": "Ja, la oss prøve"
},
"youNeedToAllowCameraAccess": {
"message": "Du må gi kameratilgang for å bruke denne funksjonen."
},

View File

@ -78,9 +78,6 @@
"advanced": {
"message": "Advanced"
},
"affirmAgree": {
"message": "Sang-ayon ako"
},
"alertDisableTooltip": {
"message": "Mababago ito sa \"Mga Setting > Mga Alerto\""
},
@ -146,12 +143,6 @@
"assets": {
"message": "Mga Asset"
},
"attemptToCancel": {
"message": "Subukang Kanselahin?"
},
"attemptToCancelDescription": {
"message": "Kapag isinumite ang pagsubok na ito, hindi nito magagarantiyang makakansela ang iyong orihinal na transaksyon. Kung magiging matagumpay ang pagsubok na magkansela, sisingilin ka para sa bayarin sa transaksyon sa itaas."
},
"attemptingConnect": {
"message": "Sinusubukang kumonekta sa blockchain."
},
@ -213,12 +204,6 @@
"buy": {
"message": "Bumili"
},
"buyWithWyre": {
"message": "Bumili ng $1 gamit ang Wyre"
},
"buyWithWyreDescription": {
"message": "Binibigyang-daan ka ng Wyre na gumamit ng debit card para mag-deposit ng $1 sa mismong MetaMask account mo."
},
"bytes": {
"message": "Bytes"
},
@ -228,9 +213,6 @@
"cancel": {
"message": "Kanselahin"
},
"cancellationGasFee": {
"message": "Bayarin sa Gas para sa Pagkansela"
},
"cancelled": {
"message": "Nakansela"
},
@ -332,6 +314,9 @@
"connectingToGoerli": {
"message": "Kumokonekta sa Goerli Test Network"
},
"connectingToLineaTestnet": {
"message": "Kumokonekta sa Linea Goerli Test Network"
},
"connectingToMainnet": {
"message": "Kumokonekta sa Ethereum Mainnet"
},
@ -344,9 +329,6 @@
"continue": {
"message": "Magpatuloy"
},
"continueToWyre": {
"message": "Magpatuloy sa Wyre"
},
"contract": {
"message": "Kontrata"
},
@ -660,24 +642,9 @@
"gasUsed": {
"message": "Nagamit na Gas"
},
"gdprMessage": {
"message": "Ang data na ito ay pinagsama-sama at ginawang anonymous para sa mga layunin ng General Data Protection Regulation (EU) 2016/679. Para sa higit pang impormasyon kaugnay ng aming mga kagawian sa pagkapribado, pakitingnan ang aming $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Patakaran sa Pagkapribado rito",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Pangkalahatan"
},
"getEther": {
"message": "Kunin ang Ether"
},
"getEtherFromFaucet": {
"message": "Kunin ang Ether mula sa isang faucet sa halagang $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli Test Network"
},
@ -840,6 +807,9 @@
"likeToImportTokens": {
"message": "Gusto mo bang idagdag ang mga token na ito?"
},
"lineatestnet": {
"message": "Linea Goerli Test Network"
},
"links": {
"message": "Mga Link"
},
@ -891,37 +861,6 @@
"metamaskVersion": {
"message": "Bersyon ng MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Palagi kang papayagang mag-opt out sa pamamagitan ng Mga Setting"
},
"metametricsCommitmentsBoldNever": {
"message": "Huwag Kailanman",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "Gagawin ng MetaMask ang sumusunod..."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 kolektahin ang iyong IP address",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 nangongolekta ng mga key, address, transaksyon, balanse, hash, o anumang personal na impormasyon",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 nagbebenta ng data para pagkakitaan. Kahit kailan!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Magpapadala ng mga anonymous na kaganapang pag-click at pagtingin sa page"
},
"metametricsHelpImproveMetaMask": {
"message": "Tulungan Kaming Mapahusay ang MetaMask"
},
"metametricsOptInDescription": {
"message": "Gustong kunin ng MetaMask ang data ng paggamit para mas maunawaan kung paano ginagamit ng mga user namin ang extension. Gagamitin ang data na ito para patuloy na mapahusay ang kakayahang magamit at karanasan ng user sa paggamit ng produkto namin at Ethereum ecosystem."
},
"mismatchedChainLinkText": {
"message": "i-verify ang mga detalye ng network",
"description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key."
@ -1014,9 +953,6 @@
"noConversionRateAvailable": {
"message": "Hindi Available ang Rate ng Conversion"
},
"noThanks": {
"message": "Huwag na lang"
},
"noTransactions": {
"message": "Wala kang transaksyon"
},
@ -1265,12 +1201,6 @@
"reset": {
"message": "I-reset"
},
"resetAccount": {
"message": "I-reset ang Account"
},
"resetAccountDescription": {
"message": "Kapag ni-reset ang iyong account, maki-clear ang history ng iyong transaksyon. Hindi nito babaguhin ang mga balanse sa iyong mga account o hindi mo kakailanganing ilagay ulit ang iyong Secret Recovery Phrase."
},
"restore": {
"message": "I-restore"
},
@ -1283,14 +1213,9 @@
"revealSeedWords": {
"message": "Ipakita ang Secret Recovery Phrase"
},
"revealSeedWordsDescription": {
"message": "Kung magpapalit ka man ng browser o computer, kakailanganin mo ang Secret Recovery Phrase na ito para ma-access ang iyong mga account. I-save ang mga iyon sa isang ligtas at sikretong lugar."
},
"revealSeedWordsWarning": {
"message": "Magagamit ang mga salitang ito para manakaw ang lahat ng iyong account."
},
"revealSeedWordsWarningTitle": {
"message": "Huwag ibahagi ang phrase na ito sa kahit sino!"
"message": "Magagamit ang mga salitang ito para manakaw ang lahat ng iyong account.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Bagong RPC URL"
@ -1298,9 +1223,6 @@
"save": {
"message": "I-save"
},
"saveAsCsvFile": {
"message": "I-save bilang CSV File"
},
"scanInstructions": {
"message": "Itapat ang QR code sa iyong camera"
},
@ -1822,9 +1744,6 @@
"termsOfService": {
"message": "Mga Tuntunin ng Serbisyo"
},
"testFaucet": {
"message": "Test Faucet"
},
"tips": {
"message": "Mga Tip"
},
@ -1985,9 +1904,6 @@
"message": "I-verify ang token na ito sa $1 at tiyaking ito ang token na gusto mong i-trade.",
"description": "Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
},
"viewAccount": {
"message": "Tingnan ang Account"
},
"viewAllDetails": {
"message": "Tingnan ang lahat ng detalye"
},
@ -2025,9 +1941,6 @@
"message": "$1 sa $2 ang nakabinbin",
"description": "$1 and $2 are intended to be two numbers, where $2 is a total number of pending confirmations, and $1 is a count towards that total"
},
"yesLetsTry": {
"message": "Oo, subukan natin"
},
"youNeedToAllowCameraAccess": {
"message": "Kailangan mong payagan ang pag-access sa camera para magamit ang feature na ito."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Składnik aktywów"
},
"attemptToCancel": {
"message": "Podjąć próbę anulowania?"
},
"attemptToCancelDescription": {
"message": "Wykonanie tego działania nie gwarantuje, że pierwotna transakcja zostanie anulowana. Jeśli próba anulowania się powiedzie, zostaniesz obciążony opłatą transakcyjną wskazaną powyżej."
},
"attemptingConnect": {
"message": "Próba połączenia z blockchainem."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Twoja przeglądarka nie jest obsługiwana..."
},
"buyWithWyre": {
"message": "Kup $1 poprzez Wyre"
},
"buyWithWyreDescription": {
"message": "Dzięki Wyre możesz użyć karty kredytowej, aby wpłacić $1 bezpośrednio na swoje konto MetaMask."
},
"bytes": {
"message": "Bajty"
},
"cancel": {
"message": "Anuluj"
},
"cancellationGasFee": {
"message": "Opłata za gaz za anulowanie"
},
"cancelled": {
"message": "Anulowano"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Łączenie z siecią testową Goerli"
},
"connectingToLineaTestnet": {
"message": "Łączenie z siecią testową Linea Goerli"
},
"connectingToMainnet": {
"message": "Łączenie z główną siecią Ethereum"
},
"continueToWyre": {
"message": "Przejdź do Wyre"
},
"contractDeployment": {
"message": "Uruchomienie kontraktu"
},
@ -336,13 +321,6 @@
"general": {
"message": "Ogólne"
},
"getEther": {
"message": "Zdobądź Eter"
},
"getEtherFromFaucet": {
"message": "Zdobądź Eter ze źródła za $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Sieć testowa Goerli"
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "Czy chcesz dodać te tokeny?"
},
"lineatestnet": {
"message": "Sieć testowa Linea Goerli"
},
"links": {
"message": "Łącza"
},
@ -633,26 +614,15 @@
"reset": {
"message": "Resetuj"
},
"resetAccount": {
"message": "Resetuj konto"
},
"resetAccountDescription": {
"message": "Zresetowanie konta wyczyści Twoją historię transakcji."
},
"restore": {
"message": "Przywróć"
},
"revealSeedWords": {
"message": "Pokaż słowa seed"
},
"revealSeedWordsDescription": {
"message": "Jeśli kiedyś zmienisz przeglądarkę lub komputer, będziesz potrzebować tej frazy seed, żeby dostać się do swoich kont. Zapisz ją w bezpiecznym miejscu."
},
"revealSeedWordsWarning": {
"message": "Te słowa mogą być użyte żeby ukraść Twoje konta."
},
"revealSeedWordsWarningTitle": {
"message": "NIE pokazuj tej frazy nikomu!"
"message": "Te słowa mogą być użyte żeby ukraść Twoje konta.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Nowy adres URL RPC"
@ -660,9 +630,6 @@
"save": {
"message": "Zapisz"
},
"saveAsCsvFile": {
"message": "Zapisz jako plik CSV"
},
"scanInstructions": {
"message": "Umieść kod QR na wprost kamery"
},
@ -795,9 +762,6 @@
"terms": {
"message": "Regulamin"
},
"testFaucet": {
"message": "Źródło testowego ETH"
},
"tips": {
"message": "Napiwki"
},
@ -913,9 +877,6 @@
"userName": {
"message": "Nazwa użytkownika"
},
"viewAccount": {
"message": "Zobacz konto"
},
"viewContact": {
"message": "Wyświetl kontakt"
},
@ -925,9 +886,6 @@
"welcomeBack": {
"message": "Witaj z powrotem!"
},
"yesLetsTry": {
"message": "Tak, spróbuj"
},
"youNeedToAllowCameraAccess": {
"message": "Żeby użyć tej opcji należy podłączyć kamerę"
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "A taxa de prioridade (ou seja, \"gorjeta do minerador\") vai diretamente para os mineradores e os incentiva a priorizar a sua transação."
},
"affirmAgree": {
"message": "Concordo"
},
"airgapVault": {
"message": "AirGap Vault"
},
@ -332,6 +329,9 @@
"message": "Permitir que $1 saque e gaste até o seguinte valor:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Certifique-se sempre de fazer sua devida diligência antes de aprovar qualquer solicitação."
},
"amount": {
"message": "Valor"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institucional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Aprovar"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Aprovar"
},
"approveSpendingCap": {
"message": "Aprovar limite de gastos de $1",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Isso permite que terceiros acessem e transfiram os seguintes NFTs sem aviso prévio até que você revogue o acesso."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Se você tentar enviar ativos diretamente de uma rede para outra, isso poderá resultar na perda permanente deles. Certifique-se de usar uma ponte."
},
"attemptToCancel": {
"message": "Tentar cancelar?"
},
"attemptToCancelDescription": {
"message": "Enviar essa tentativa não garante que sua transação original será cancelada. Caso a tentativa de cancelamento seja bem-sucedida, será cobrada a taxa de transação acima."
},
"attemptingConnect": {
"message": "A tentar ligar à blockchain."
},
@ -418,7 +420,7 @@
"message": "Detectar tokens automaticamente"
},
"autoDetectTokensDescription": {
"message": "Usamos APIs de terceiros para detectar e exibir novos tokens enviados à sua carteira. Desative essa opção se não quiser que o app extraia dados desses serviços. $1",
"message": "Usamos APIs de terceiros para detectar e exibir novos tokens enviados à sua carteira. Desative essa opção se não quiser que o app extraia dados desses serviços automaticamente. $1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Versão Beta da MetaMask"
},
"betaPortfolioSite": {
"message": "site de portfólio beta"
},
"betaTerms": {
"message": "Termos de uso do Beta"
},
@ -535,38 +534,9 @@
"message": "Comprar $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Comprar $1 com o Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Você pode comprar ou transferir criptomoedas facilmente com sua conta na Coinbase.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Compre $1 com o MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "O MoonPay aceita formas de pagamento populares, incluindo Visa, Mastercard, Apple Pay, Google Pay, Samsung Pay e transferências bancárias em mais de 145 países. Os tokens são depositados na sua conta da MetaMask."
},
"buyCryptoWithTransak": {
"message": "Comprar $1 com Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "O Transak aceita cartões de crédito, cartões de débito, Apple Pay, MobiKwik e transferências bancárias (dependendo da localização) em mais de 100 países. $1 deposita diretamente na sua conta da MetaMask.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Comprar agora"
},
"buyWithWyre": {
"message": "Comprar $1 com o Wyre"
},
"buyWithWyreDescription": {
"message": "Integração fácil para compras de até US$ 1.000. Verificação de compra de alto limite rápida e interativa. Aceita cartão de crédito/débito, Apple Pay, transferências bancárias. Disponível em mais de 100 países. Depósito de tokens em sua conta na MetaMask"
},
"bytes": {
"message": "Bytes"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Cancelar swap gratuitamente"
},
"cancellationGasFee": {
"message": "Taxa de gás por cancelamento"
},
"cancelled": {
"message": "Cancelada"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Você precisa usar a MetaMask no Google Chrome para se conectar com a sua carteira de hardware."
},
"clear": {
"message": "Limpar"
},
"clearActivity": {
"message": "Limpar dados de atividades e nonce"
},
"clearActivityButton": {
"message": "Limpar dados da aba de atividades"
},
"clearActivityDescription": {
"message": "Isso redefinirá o nonce da conta e apagará os dados da aba de atividades em sua carteira. Somente a conta e rede atuais serão afetadas. Seus saldos e transações recebidas não mudarão."
},
"clickToConnectLedgerViaWebHID": {
"message": "Clique aqui para conectar seu Ledger por meio do WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Fechar"
},
"collectibleAddFailedMessage": {
"message": "O NFT não pôde ser adicionado, pois os dados de propriedade não coincidem. Certifique-se de ter inserido as informações corretas."
},
"collectibleAddressError": {
"message": "Esse token é um NFT. Adicione-o na $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Confirmar"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Conectando à rede de testes Goerli"
},
"connectingToLineaTestnet": {
"message": "Conectando à rede de teste Linea Goerli"
},
"connectingToMainnet": {
"message": "Conectando à mainnet do Ethereum"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Continuar"
},
"continueToCoinbasePay": {
"message": "Prosseguir para o Coinbase Pay"
},
"continueToMoonPay": {
"message": "Continuar para o MoonPay"
},
"continueToTransak": {
"message": "Continuar para Transak"
},
"continueToWyre": {
"message": "Continuar para o Wyre"
},
"contract": {
"message": "Contrato"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Copiado!"
"message": "Copiado."
},
"copyAddress": {
"message": "Copiar endereço para a área de transferência"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Criar senha"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Conversão de moeda"
},
"currencyRateCheckToggle": {
"message": "Mostrar saldo e verificador de preços de tokens"
},
"currencyRateCheckToggleDescription": {
"message": "Usamos as APIs $1 e $2 para mostrar o seu saldo e o preço dos tokens. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Símbolo da moeda"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Depositar"
},
"depositCrypto": {
"message": "Depositar $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Saiba mais"
},
@ -992,15 +964,108 @@
"description": {
"message": "Descrição"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Esse erro pode ser intermitente. Por isso, tente reiniciar a extensão ou desative a MetaMask para desktop."
},
"desktopConnectionCriticalErrorTitle": {
"message": "A MetaMask teve problemas para iniciar"
},
"desktopConnectionLostErrorDescription": {
"message": "Por favor, certifique-se de que o app para desktop está funcionando ou desative a MetaMask para desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "Conexão perdida com a MetaMask para desktop"
},
"desktopDisableButton": {
"message": "Desativar app para desktop"
},
"desktopDisableErrorCTA": {
"message": "Desativar a MetaMask para desktop"
},
"desktopEnableButton": {
"message": "Ativar o app para desktop"
},
"desktopEnableButtonDescription": {
"message": "Clique para executar todos os processos em segundo plano no app para desktop."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Voltar à página de configurações"
},
"desktopErrorRestartMMCTA": {
"message": "Reiniciar a MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Baixar MetaMask para desktop"
},
"desktopNotFoundErrorDescription1": {
"message": "Por favor, certifique-se de que o app para desktop está funcionando."
},
"desktopNotFoundErrorDescription2": {
"message": "Se não tiver o app para desktop instalado, por favor, baixe-o no site da MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "A MetaMask para desktop não foi encontrada"
},
"desktopOpenOrDownloadCTA": {
"message": "Abrir a MetaMask para desktop"
},
"desktopOutdatedErrorCTA": {
"message": "Atualizar a MetaMask para desktop"
},
"desktopOutdatedErrorDescription": {
"message": "Seu app da MetaMask para desktop precisa ser atualizado."
},
"desktopOutdatedErrorTitle": {
"message": "A MetaMask para desktop está desatualizada"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Atualizar extensão da MetaMask"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Sua extensão da MetaMask precisa ser atualizada."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "A extensão da MetaMask está desatualizada"
},
"desktopPageDescription": {
"message": "Se o emparelhamento for bem-sucedido, a extensão será reiniciada e você precisará reinserir sua senha."
},
"desktopPageSubTitle": {
"message": "Abra sua MetaMask para desktop e digite este código"
},
"desktopPageTitle": {
"message": "Emparelhar com desktop"
},
"desktopPairedWarningDeepLink": {
"message": "Ir às configurações na MetaMask para desktop"
},
"desktopPairedWarningDescription": {
"message": "Se quiser iniciar um novo emparelhamento, remova a conexão atual."
},
"desktopPairedWarningTitle": {
"message": "A MM para desktop já está emparelhada"
},
"desktopPairingExpireMessage": {
"message": "O código expira em $1 segundos"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Voltar à tela inicial da MetaMask"
},
"desktopUnexpectedErrorDescription": {
"message": "Verifique sua MetaMask para desktop para restaurar a conexão"
},
"desktopUnexpectedErrorTitle": {
"message": "Algo deu errado..."
},
"details": {
"message": "Detalhes"
},
"directDepositCrypto": {
"message": "Depositar $1 diretamente"
},
"directDepositCryptoExplainer": {
"message": "Se já tiver alguns $1, a forma mais rápida de colocar $1 em sua nova carteira é por depósito direto."
},
"disabledGasOptionToolTipMessage": {
"message": "“$1” está desativado porque não satisfaz o aumento mínimo de 10% em relação à taxa de gás original.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Use a API OpenSea para recuperar dados de NFTs. A detecção automática de NFTs depende da API OpenSea e não estará disponível quando essa opção estiver desativada."
},
"enableOpenSeaSecurityProvider": {
"message": "Habilitar provedor de segurança"
},
"enableSmartTransactions": {
"message": "Ativar transações inteligentes"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Ver no Etherscan"
},
"expandExperience": {
"message": "Expanda sua experiência web3"
},
"expandView": {
"message": "Expandir exibição"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Ver detalhes",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Adicionado em",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Gás usado"
},
"gdprMessage": {
"message": "Conforme determinação da Lei Geral de Proteção de Dados (União Europeia) 2016/679, esses dados são agregados e, portanto, anônimos. Para obter mais informações relacionadas às nossas práticas de privacidade, confira nossa $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Política de Privacidade aqui",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Geral"
},
"getEther": {
"message": "Obter Ether"
},
"getEtherFromFaucet": {
"message": "Receba Ether de um faucet para a rede $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Receba avisos do OpenSea sempre que receber uma solicitação maliciosa conhecida."
},
"goBack": {
"message": "Voltar"
@ -1545,6 +1598,32 @@
"history": {
"message": "Histórico"
},
"holdToReveal": {
"message": "Segure para revelar a FRS"
},
"holdToRevealContent1": {
"message": "Sua Frase de Recuperação Secreta concede $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "acesso total à sua carteira e fundos.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Não compartilhe isso com ninguém. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "O suporte da MetaMask não solicita essa informação,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "mas os phishers talvez solicitem.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Mantenha sua FRS em segurança"
},
"ignoreAll": {
"message": "Ignorar tudo"
},
@ -1577,7 +1656,7 @@
"message": "página Importar NFT"
},
"importNFTTokenIdToolTip": {
"message": "O ID do colecionável é um identificador único, pois não há dois NFTs iguais. Novamente, na OpenSea, esse número se encontra em \"Detalhes\". Anote-o ou copie-o para sua área de transferência."
"message": "O ID de um NFT é um identificador único, pois não há dois NFTs iguais. Novamente, na OpenSea, esse número se encontra em \"Detalhes\". Anote-o ou copie-o para sua área de transferência."
},
"importNFTs": {
"message": "Importar NFTs"
@ -1724,9 +1803,6 @@
"message": "Ficheiro JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "para manter o controle dos seus tokens e NFTs em diferentes contas e redes."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Última conexão"
},
"lastPriceSold": {
"message": "Último preço de venda"
},
"lastSold": {
"message": "Última venda"
},
"learnCancelSpeeedup": {
"message": "Saiba como $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Gostaria de adicionar estes tokens?"
},
"lineatestnet": {
"message": "Rede de teste Linea Goerli"
},
"link": {
"message": "Link"
},
@ -1867,15 +1952,12 @@
"message": "Criar nova troca"
},
"makeSureNoOneWatching": {
"message": "Certifique-se de que não há ninguém vendo sua tela",
"message": "Certifique-se de que ninguém está olhando",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "Dados inválidos"
},
"manageSnaps": {
"message": "Gerencie seus snaps instalados"
},
"max": {
"message": "Máximo"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Versão da MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Sempre permitirá que você revogue a permissão nas configurações"
},
"metametricsCommitmentsBoldNever": {
"message": "Nunca",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "A MetaMask.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 coletarão seu endereço IP completo",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 coletarão chaves, endereços, transações, saldos, hashes ou qualquer outra informação pessoal",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 venderão dados em troca de lucro. Jamais!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Enviará eventos anonimizados de cliques e visualizações de páginas"
},
"metametricsHelpImproveMetaMask": {
"message": "Ajude a melhorar a MetaMask"
},
"metametricsOptInDescription": {
"message": "A MetaMask gostaria de reunir dados de uso para entender melhor como nossos usuários interagem com a extensão. Esses dados serão usados para melhorar continuamente a usabilidade e a experiência do usuário com o nosso produto e o ecossistema do Ethereum."
"metrics": {
"message": "Métricas"
},
"mismatchedChainLinkText": {
"message": "verifique os detalhes da rede",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "A funcionalidade \"Sincronizar com a extensão\" está temporariamente desativada. Se você quer usar sua carteira de extensão na MetaMask mobile, então, no seu app mobile: volte às opções de configuração da carteira e selecione a opção \"Importar com frase de recuperação secreta\". Use a frase secreta da sua carteira de extensão para, então, importar a sua carteira no celular."
},
"moreComingSoon": {
"message": "Mais em breve..."
},
"mustSelectOne": {
"message": "Deve escolher no mínimo 1 token."
},
@ -1992,10 +2049,6 @@
"message": "O token nativo dessa rede é $1. Esse é o token usado para taxas de gás.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Para interagir com aplicativos descentralizados usando a MetaMask, você precisará de $1 em sua carteira.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Precisa de ajuda? Contate $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Conta $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "O colecionável foi adicionado com sucesso!"
},
"newContact": {
"message": "Novo contato"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "“$1” foi adicionado com sucesso!"
},
"newNftAddedMessage": {
"message": "O NFT foi adicionado com sucesso!"
},
"newPassword": {
"message": "Nova Palavra-passe (min 8 caracteres)"
},
@ -2138,8 +2191,18 @@
"message": "Nonce é maior que o nonce sugerido de $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "O NFT não pôde ser adicionado, pois os dados de propriedade não coincidem. Certifique-se de ter inserido as informações corretas."
},
"nftAddressError": {
"message": "Esse token é um NFT. Adicione-o à $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Aviso: a MetaMask obtém o arquivo de mídia do URL de origem. Às vezes, esse URL é modificado pelo marketplace onde o NFT foi cunhado (minted)."
},
"nftOptions": {
"message": "Opções de NFT"
},
"nftTokenIdPlaceholder": {
"message": "Insira o ID do token"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Nenhum snap instalado"
},
"noThanks": {
"message": "Não, obrigado"
},
"noThanksVariant2": {
"message": "Não, obrigado."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Não há gás suficiente"
},
"notNow": {
"message": "Agora não"
},
"notifications": {
"message": "Notificações"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Mostrar configurações de segurança e privacidade"
},
"notifications17Description": {
"message": "Essa atualização oferece mais opções para que você possa controlar sua própria privacidade. Adicionamos mais transparência sobre como os dados são coletados e opções mais claras para compartilhá-los. Mude suas preferências ou exclua os dados de uso da extensão através das configurações de segurança e privacidade."
},
"notifications17Title": {
"message": "Configurações de segurança e privacidade"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Abrir no explorador de blocos"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "Provedor de segurança OpenSea"
},
"openSeaDescription": {
"message": "O OpenSea é o primeiro provedor de segurança para este recurso. Mais provedores chegarão em breve!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Opcional"
},
"optionalWithParanthesis": {
"message": "(Opcional)"
},
"options": {
"message": "Opções"
},
"or": {
"message": "ou"
},
@ -2564,6 +2639,9 @@
"message": "outros snaps",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Seu navegador está desatualizado. Se não o atualizar, você não conseguirá baixar patches de segurança e obter novos recursos da MetaMask."
},
"padlock": {
"message": "Cadeado"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Revogada nesta atualização"
},
"permission_accessNamedSnap": {
"message": "Conectar a $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Acesse a internet.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Conecte-se ao snap $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Agende e execute ações periódicas.",
@ -2671,6 +2753,10 @@
"message": "Controlar suas contas e ativos do \"$1\".",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Controle suas contas e ativos em $1.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Armazenar e gerenciar dados pertinentes em seu dispositivo.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Ver sua chave pública para $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Veja sua chave pública para $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Permissões"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Redes personalizadas populares"
},
"portfolioSite": {
"message": "Site do portfólio"
"portfolio": {
"message": "Portfólio"
},
"preferredLedgerConnectionType": {
"message": "Tipo de conexão preferencial com o Ledger",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "Remover NFT"
},
"removeNftMessage": {
"message": "O NFT foi removido com sucesso!"
},
"removeSnap": {
"message": "Remover snap"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "substituir"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "O provedor de segurança não compartilhou mais detalhes"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Solicitação sinalizada como mal-intencionada"
},
"requestMayNotBeSafe": {
"message": "A solicitação pode não ser segura"
},
"requestMayNotBeSafeError": {
"message": "O provedor de segurança não detectou nenhuma atividade mal-intencionada. Ainda assim, pode não ser seguro continuar."
},
"requestNotVerified": {
"message": "Solicitação não verificada"
},
"requestNotVerifiedError": {
"message": "Por causa de um erro, essa solicitação não foi verificada pelo provedor de segurança. Prossiga com cautela."
},
"requestsAwaitingAcknowledgement": {
"message": "solicitações aguardando confirmação"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Redefinir"
},
"resetAccount": {
"message": "Redefinir conta"
},
"resetAccountDescription": {
"message": "A redefinição da sua conta limpará o histórico de transações. Isso não alterará os saldos nas suas contas nem exigirá a reintrodução da Frase de Recuperação Secreta."
},
"resetWallet": {
"message": "Redefinir carteira"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Revelar Palavras Seed"
},
"revealSeedWordsDescription": {
"message": "Se você alguma vez mudar de navegador ou trocar de computador, precisará dessa Frase de Recuperação Secreta para acessar suas contas. Salve-as em um lugar seguro e secreto."
"revealSeedWordsDescription1": {
"message": "A $1 concede $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "A MetaMask é uma $1. Isso significa que você é o proprietário da sua FRS.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "acesso total à sua carteira e fundos.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "carteira não custodiada"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Frase de Recuperação Secreta (FRS)"
},
"revealSeedWordsText": {
"message": "Texto"
},
"revealSeedWordsWarning": {
"message": "Não revele as palavras seed num espaço público! Estas palavras podem ser usadas para roubar todas as suas contas."
"message": "Certifique-se de que ninguém está olhando a sua tela. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "NÃO compartilhe essa frase com ninguém!"
"revealSeedWordsWarning2": {
"message": "O suporte da MetaMask nunca pedirá essa informação.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Revelar a frase de recuperação"
@ -2941,11 +3068,11 @@
"message": "Revise seu limite de gastos"
},
"revokeAllTokensTitle": {
"message": "Revogar permissão de acesso a todos os seus $1?",
"message": "Revogar permissão de acesso e transferência de todos os seus $1?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "Ao revogar a permissão, o $1 a seguir não terá mais acesso ao seu $2",
"message": "Isso revoga a permissão de terceiros para acessar e transferir todos os seus $1 sem aviso prévio.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Guardar"
},
"saveAsCsvFile": {
"message": "Salvar como arquivo CSV"
},
"scanInstructions": {
"message": "Posicione o QR code na frente da sua câmera"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Se você não vir as contas esperadas, tente trocar o caminho do HD."
},
"selectProvider": {
"message": "Selecione os provedores:"
},
"selectType": {
"message": "Selecionar Tipo"
},
@ -3246,16 +3373,9 @@
"message": "Você está concedendo ao snap \"$1\" acesso à sua chave $2. Isso é irrevogável e concede a \"$1\" controle de suas contas e ativos $2. Certifique-se de que confia em \"$1\" antes de prosseguir.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Esse snap está solicitando as seguintes permissões:"
},
"snapUpdate": {
"message": "Atualizar snap"
},
"snapUpdateExplanation": {
"message": "$1 precisa de uma versão mais nova do seu snap.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snaps"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "O limite de gastos está alto demais"
},
"spendingCap": {
"message": "Limite de gastos"
},
"spendingCapError": {
"message": "Erro: insira somente números"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Não conectado"
},
"staySafeWithOpenSea": {
"message": "Fique seguro com o OpenSea"
},
"step1LatticeWallet": {
"message": "Conecte seu Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "Taxa da MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Encontramos o melhor preço das principais fontes de liquidez todas as vezes. Uma taxa de $1% é automaticamente incorporada nessa cotação.",
"message": "A taxa de $1% é automaticamente contabilizada nessa cotação. Você paga em troca de uma licença para usar o software de agregação de informações sobre provedores de liquidez da MetaMask.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Termos de Serviço"
},
"testFaucet": {
"message": "Faucet de teste"
},
"testNetworks": {
"message": "Redes de teste"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Informações importantes:"
},
"thisIsBasedOn": {
"message": "Isso se baseia em informações de "
},
"thisServiceIsExperimental": {
"message": "Esse serviço é experimental"
},
"time": {
"message": "Hora"
},
@ -3914,6 +4043,12 @@
"message": "Para: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Ative para permitir que dapps peçam sua assinatura usando solicitações eth_sign. O eth_sign é um método de entrada aberto que permite que você assine uma hash aleatória, apresentando um perigoso risco de phishing. Assine solicitações eth_sign somente se conseguir ler o que está assinando e confiar na origem da solicitação."
},
"toggleEthSignField": {
"message": "Ativar/desativar solicitações eth_sign"
},
"toggleTestNetworks": {
"message": "$1 redes de teste",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Token já foi adicionado."
},
"tokenAutoDetection": {
"message": "Detecção automática de tokens"
},
"tokenContractAddress": {
"message": "Endereço de contrato do token"
},
@ -4064,10 +4202,10 @@
"message": "Transação reenviada com taxa de gás aumentada para $1 às $2"
},
"transactionSecurityCheck": {
"message": "Verificação de segurança da transação"
"message": "Habilitar provedores de segurança para transações"
},
"transactionSecurityCheckDescription": {
"message": "Ative para permitir que terceiros (OpenSea) revisem todas as suas transações e solicitações de assinatura e alertem sobre solicitações mal-intencionadas conhecidas."
"message": "Usamos APIs de terceiros para detectar e exibir riscos envolvidos em solicitações de assinatura e de transações não assinadas antes que você as assine. Esses serviços terão acesso às suas solicitações de assinatura e de transações não assinadas, ao endereço de sua conta e ao seu idioma preferencial."
},
"transactionSubmitted": {
"message": "Transação enviada com taxa de gás estimada de $1 às $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Tente novamente"
},
"tryOur": {
"message": "Experimente nosso"
},
"turnOnTokenDetection": {
"message": "Ativar detecção avançada de token"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "O envio de tokens colecionáveis (ERC-721) não é suportado no momento",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "O envio de tokens NFT (ERC-721) não é suportado no momento",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Não conseguimos verificar esse contrato. Certifique-se de que você confia nesse endereço."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "O ID da cadeia está sendo usado pela rede $1."
},
"useCollectibleDetection": {
"message": "Detectar NFTs automaticamente"
},
"useCollectibleDetectionDescription": {
"message": "A exibição de mídias e dados de NFTs pode expor seu endereço IP para servidores centralizados. APIs terceirizadas (como a OpenSea) são utilizadas para detectar NFTs na sua carteira. Isso expõe o endereço da sua conta com esses serviços. Deixe essa opção desativada se você não quer que o aplicativo extraia dados desses serviços."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Além disso, esteja ciente de que:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Os metadados de NFTs podem conter links para golpes ou sites de phishing."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Qualquer pessoa pode realizar o airdrop de NFTs em sua conta. Isso inclui conteúdo ofensivo que pode ser exibido automaticamente em sua carteira."
},
"useDefault": {
"message": "Usar padrão"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Agrupamos as contas e consultamos a Infura para exibir seus saldos de forma responsiva. Se isso for desativado, somente contas ativas serão consultadas. Alguns dapps só funcionam se você conecta a sua carteira."
},
"useNftDetection": {
"message": "Detectar NFTs automaticamente"
},
"useNftDetectionDescription": {
"message": "Usamos APIs terceirizadas para detectar NFTs na sua carteira, ou seja, seu endereço IP pode ser exposto a servidores centralizados. Há algumas coisas para se ter cuidado ao ativar esse recurso."
},
"useNftDetectionDescriptionLine2": {
"message": "O endereço da sua conta estará exposto às APIs terceirizadas."
},
"useNftDetectionDescriptionLine3": {
"message": "Os metadados de NFTs podem conter links para golpes ou sites de phishing."
},
"useNftDetectionDescriptionLine4": {
"message": "Qualquer pessoa pode realizar o airdrop de NFTs em sua conta. Isso inclui conteúdo ofensivo que pode ser exibido automaticamente em sua carteira."
},
"useNftDetectionDescriptionLine5": {
"message": "Deixe desativado esse recurso se não quiser que o app obtenha dados desses serviços."
},
"usePhishingDetection": {
"message": "Usar detecção de phishing"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Ver"
},
"viewAccount": {
"message": "Ver conta"
},
"viewAllDetails": {
"message": "Ver todos os detalhes"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 O contrato pode gastar todo o seu saldo de tokens sem aviso ou consentimento. Proteja-se personalizando um limite de gastos menor.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Fraca"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Sim"
},
"yesLetsTry": {
"message": "Sim, vamos tentar"
},
"youHaveAddedAll": {
"message": "Você adicionou todas as redes populares. Você pode descobrir mais redes $1 Ou você pode $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "Seu NFT pode estar em risco"
},
"yourPrivateSeedPhrase": {
"message": "Sua Frase de Recuperação Secreta privada"
"message": "Sua Frase Secreta de Recuperação"
},
"zeroGasPriceOnSpeedUpError": {
"message": "O preço do gás está zerado na aceleração"

View File

@ -163,9 +163,6 @@
"advancedPriorityFeeToolTip": {
"message": "A taxa de prioridade (ou seja, \"gorjeta do minerador\") vai diretamente para os mineradores e os incentiva a priorizar a sua transação."
},
"affirmAgree": {
"message": "Concordo"
},
"alertDisableTooltip": {
"message": "Isso pode ser alterado em \"Configurações > Alertas\""
},
@ -235,12 +232,6 @@
"assets": {
"message": "Ativos"
},
"attemptToCancel": {
"message": "Tentar cancelar?"
},
"attemptToCancelDescription": {
"message": "Enviar essa tentativa não garante que a transação original será cancelada. Se a tentativa de cancelamento tiver sucesso, será cobrada a taxa de transação acima."
},
"attemptingConnect": {
"message": "Tentando conexão com o blockchain."
},
@ -326,12 +317,6 @@
"buy": {
"message": "Comprar"
},
"buyWithWyre": {
"message": "Comprar $1 com Wyre"
},
"buyWithWyreDescription": {
"message": "Com o Wyre, você pode usar um cartão de débito para depositar $1 diretamente na sua conta da MetaMask."
},
"bytes": {
"message": "Bytes"
},
@ -358,9 +343,6 @@
"message": "Para $1 uma transação, a taxa de gás deve ser aumentada em pelo menos 10% para que seja reconhecida pela rede.",
"description": "$1 is string 'cancel' or 'speed up'"
},
"cancellationGasFee": {
"message": "Taxa de gás por cancelamento"
},
"cancelled": {
"message": "Cancelado"
},
@ -469,6 +451,9 @@
"connectingToGoerli": {
"message": "Conectando à rede de testes Goerli"
},
"connectingToLineaTestnet": {
"message": "Conectando à rede de testes Linea Goerli"
},
"connectingToMainnet": {
"message": "Conectando à mainnet do Ethereum"
},
@ -481,12 +466,6 @@
"continue": {
"message": "Continuar"
},
"continueToTransak": {
"message": "Continuar para Transak"
},
"continueToWyre": {
"message": "Continuar para o Wyre"
},
"contract": {
"message": "Contrato"
},
@ -905,7 +884,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Ver detalhes",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Adicionado em",
@ -1039,24 +1018,9 @@
"gasUsed": {
"message": "Gás usado"
},
"gdprMessage": {
"message": "Conforme determinação da Lei Geral de Proteção de Dados (União Europeia) 2016/679, esses dados são agregados e, portanto, anônimos. Para obter mais informações relacionadas às nossas práticas de privacidade, confira nossa $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Política de Privacidade aqui",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Geral"
},
"getEther": {
"message": "Obter Ether"
},
"getEtherFromFaucet": {
"message": "Obtenha Ether de um faucet para $1",
"description": "Displays network name for Ether faucet"
},
"goBack": {
"message": "Voltar"
},
@ -1308,6 +1272,9 @@
"likeToImportTokens": {
"message": "Você gostaria de importar esses tokens?"
},
"lineatestnet": {
"message": "Rede de testes Linea Goerli"
},
"link": {
"message": "Link"
},
@ -1392,37 +1359,6 @@
"metamaskVersion": {
"message": "Versão da MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Sempre permitirá que você se exclua por meio das Configurações"
},
"metametricsCommitmentsBoldNever": {
"message": "Nunca",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "A MetaMask..."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 coletarão seu endereço IP completo",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 coletarão chaves, endereços, transações, saldos, hashes ou qualquer outra informação pessoal",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 venderão dados em troca de lucro. Jamais!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Enviarão eventos anonimizados de cliques e visualização de página"
},
"metametricsHelpImproveMetaMask": {
"message": "Ajude-nos a melhorar a MetaMask"
},
"metametricsOptInDescription": {
"message": "A MetaMask gostaria de reunir dados de uso para entender melhor como nossos usuários interagem com a extensão. Esses dados serão usados para melhorar continuamente a usabilidade e a experiência do usuário com o nosso produto e o ecossistema do Ethereum."
},
"mismatchedChainLinkText": {
"message": "verifique os detalhes da rede",
"description": "Serves as link text for the 'mismatchedChain' key. This text will be embedded inside the translation for that key."
@ -1525,9 +1461,6 @@
"message": "Conta $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "O colecionável foi adicionado com sucesso!"
},
"newContact": {
"message": "Novo contato"
},
@ -1540,6 +1473,9 @@
"newNetworkAdded": {
"message": "“$1” foi adicionado com sucesso!"
},
"newNftAddedMessage": {
"message": "O colecionável foi adicionado com sucesso!"
},
"newPassword": {
"message": "Nova senha (no mínimo 8 caracteres)"
},
@ -1574,9 +1510,6 @@
"noNFTs": {
"message": "Ainda não há nenhum NFT"
},
"noThanks": {
"message": "Não, obrigado"
},
"noTransactions": {
"message": "Você não tem transações"
},
@ -1975,12 +1908,6 @@
"reset": {
"message": "Redefinir"
},
"resetAccount": {
"message": "Redefinir conta"
},
"resetAccountDescription": {
"message": "A redefinição da sua conta limpará o histórico de transações. Isso não alterará os saldos nas suas contas nem exigirá a reintrodução da Frase de Recuperação Secreta."
},
"restore": {
"message": "Restaurar"
},
@ -1993,14 +1920,9 @@
"revealSeedWords": {
"message": "Revelar Frase de Recuperação Secreta"
},
"revealSeedWordsDescription": {
"message": "Se você alguma vez mudar de navegador ou trocar de computador, precisará dessa Frase de Recuperação Secreta para acessar suas contas. Salve-as em um lugar seguro e secreto."
},
"revealSeedWordsWarning": {
"message": "Essas palavras podem ser usadas para roubar todas as suas contas."
},
"revealSeedWordsWarningTitle": {
"message": "NÃO compartilhe essa frase com ninguém!"
"message": "Essas palavras podem ser usadas para roubar todas as suas contas.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Novo URL da RPC"
@ -2008,9 +1930,6 @@
"save": {
"message": "Salvar"
},
"saveAsCsvFile": {
"message": "Salvar como arquivo CSV"
},
"scanInstructions": {
"message": "Posicione o QR code na frente da sua câmera"
},
@ -2672,9 +2591,6 @@
"termsOfService": {
"message": "Termos de Serviço"
},
"testFaucet": {
"message": "Testar faucet"
},
"time": {
"message": "Hora"
},
@ -2893,7 +2809,7 @@
},
"unsendableAsset": {
"message": "O envio de tokens colecionáveis (ERC-721) não é suportado no momento",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"updatedWithDate": {
"message": "Atualizado em $1"
@ -2904,10 +2820,10 @@
"urlExistsErrorMsg": {
"message": "O ID da cadeia está sendo usado pela rede $1."
},
"useCollectibleDetection": {
"useNftDetection": {
"message": "Detectar NFTs automaticamente"
},
"useCollectibleDetectionDescription": {
"useNftDetectionDescription": {
"message": "A exibição de mídias e dados de NFTs pode expor seu endereço IP para servidores centralizados. APIs terceirizadas (como a OpenSea) são utilizadas para detectar NFTs na sua carteira. Isso expõe o endereço da sua conta com esses serviços. Deixe essa opção desativada se você não quer que o aplicativo extraia dados desses serviços."
},
"usePhishingDetection": {
@ -2934,9 +2850,6 @@
"message": "Verifique esse token no $1 e confirme que é o token que você deseja negociar.",
"description": "Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
},
"viewAccount": {
"message": "Ver conta"
},
"viewAllDetails": {
"message": "Ver todos os detalhes"
},
@ -3037,9 +2950,6 @@
"message": "$1 de $2 pendente",
"description": "$1 and $2 are intended to be two numbers, where $2 is a total number of pending confirmations, and $1 is a count towards that total"
},
"yesLetsTry": {
"message": "Sim, vamos tentar"
},
"youNeedToAllowCameraAccess": {
"message": "Você precisa permitir o acesso à câmera para usar esse recurso."
},

View File

@ -158,9 +158,6 @@
"userName": {
"message": "Nome de utilizador"
},
"viewAccount": {
"message": "Ver Conta"
},
"welcomeBack": {
"message": "Bem-vindo de volta!"
}

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Activ"
},
"attemptToCancel": {
"message": "Încercați să anulați?"
},
"attemptToCancelDescription": {
"message": "Trimiterea acestei încercări nu garantează că tranzacția dvs. originală va fi anulată. Dacă încercarea de anulare va reuși, vi se va percepe taxa tranzacției de mai sus."
},
"attemptingConnect": {
"message": "Se încearcă conectarea la blockchain."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Browserul dvs. nu este compatibil..."
},
"buyWithWyre": {
"message": "Cumpărați $1 cu Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre vă permite să folosiți un card de credit pentru a depune $1 direct în contul dvs. MetaMask."
},
"bytes": {
"message": "Octeți"
},
"cancel": {
"message": "Anulare"
},
"cancellationGasFee": {
"message": "Taxă de anulare în gaz"
},
"cancelled": {
"message": "Anulat"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Se conectează la rețeaua de test Goerli"
},
"connectingToLineaTestnet": {
"message": "Se conectează la rețeaua de test Linea Goerli"
},
"connectingToMainnet": {
"message": "Se conectează la rețeaua Ethereum principală"
},
"continueToWyre": {
"message": "Continuați la Wyre"
},
"contractDeployment": {
"message": "Implementarea contractului"
},
@ -329,13 +314,6 @@
"gasUsed": {
"message": "Suma gaz folosită"
},
"getEther": {
"message": "Obțineți Ether"
},
"getEtherFromFaucet": {
"message": "Obțineți Ether de la un robinet pentru $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Rețea de test Goerli"
},
@ -427,6 +405,9 @@
"likeToImportTokens": {
"message": "Adăugați aceste indicative?"
},
"lineatestnet": {
"message": "Rețea de test Linea Goerli"
},
"links": {
"message": "Link-uri"
},
@ -626,26 +607,15 @@
"reset": {
"message": "Resetează"
},
"resetAccount": {
"message": "Resetare cont"
},
"resetAccountDescription": {
"message": "Resetarea contului va duce la ștergerea istoricului tranzacțiilor dvs."
},
"restore": {
"message": "Restabilește"
},
"revealSeedWords": {
"message": "Arată cuvintele din seed"
},
"revealSeedWordsDescription": {
"message": "Dacă schimbați vreodată browserele sau vă mutați la alt computer, veți avea nevoie de această expresie sursă pentru a vă accesa conturile. Salvați-o într-un loc sigur și secret."
},
"revealSeedWordsWarning": {
"message": "Aceste cuvinte pot fi folosite pentru a vă fura toate conturile."
},
"revealSeedWordsWarningTitle": {
"message": "NU împărtășiți această expresie nimănui!"
"message": "Aceste cuvinte pot fi folosite pentru a vă fura toate conturile.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "URL RPC nou"
@ -653,9 +623,6 @@
"save": {
"message": "Salvează"
},
"saveAsCsvFile": {
"message": "Salvați ca fișier CSV "
},
"scanInstructions": {
"message": "Așezați codul QR în fața camerei"
},
@ -791,9 +758,6 @@
"terms": {
"message": "Termeni și condiții"
},
"testFaucet": {
"message": "Robinet de testare"
},
"tips": {
"message": "Cadouri bănești"
},
@ -906,9 +870,6 @@
"userName": {
"message": "Nume utilizator"
},
"viewAccount": {
"message": "Afișați contul"
},
"viewContact": {
"message": "Vizualizare contact"
},
@ -918,9 +879,6 @@
"welcomeBack": {
"message": "Bine ai revenit!"
},
"yesLetsTry": {
"message": "Da, să încercăm"
},
"youNeedToAllowCameraAccess": {
"message": "Trebuie să permiteți accesul la cameră pentru a folosi această funcție."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Плата за приоритет (также известная как «чаевые майнеру») направляется непосредственно майнерам, чтобы они уделили приоритетное внимание вашей транзакции."
},
"affirmAgree": {
"message": "Я согласен(-на)"
},
"airgapVault": {
"message": "Хранилище AirGap"
},
@ -332,6 +329,9 @@
"message": "Разрешить $1 снять и потратить до следующей суммы:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Всегда обязательно проводите собственную комплексную проверку, прежде чем утверждать какие-либо запросы."
},
"amount": {
"message": "Сумма"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Одобрить лимит расходов"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Одобрить"
},
"approveSpendingCap": {
"message": "Утвердить лимит расходов в размере $1",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Это позволяет третьей стороне получать доступ и передавать следующие NFT без дополнительного уведомления, пока вы не отзовете ее доступ."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Попытка отправки активов напрямую из одной сети в другую может привести к необратимой потере активов. Следует использовать мост."
},
"attemptToCancel": {
"message": "Пытаетесь отменить?"
},
"attemptToCancelDescription": {
"message": "Эта попытка не гарантирует, что ваша первоначальная транзакция будет отменена. Если попытка отмены окажется успешной, с вас будет удержана вышеуказанная комиссия за транзакцию."
},
"attemptingConnect": {
"message": "Попытка подключения к блокчейну..."
},
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Бета-версия MetaMask"
},
"betaPortfolioSite": {
"message": "бета-версия сайта портфолио"
},
"betaTerms": {
"message": "Условия использования бета-версии"
},
@ -535,38 +534,9 @@
"message": "Купить $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Купите $1 с помощью Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Вы можете легко купить или перевести криптовалюту с помощью своего счета Coinbase.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Купить $1 с помощью MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay поддерживает популярные способы оплаты, включая Visa, Mastercard, Apple/Google/Samsung Pay, а также банковские переводы в 145 странах. Токены зачисляются на ваш счет MetaMask."
},
"buyCryptoWithTransak": {
"message": "Купить $1 с помощью Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak поддерживает кредитные и дебетовые карты, Apple Pay, MobiKwik и банковские переводы (в зависимости от местоположения) в более чем 100 странах. $1 вносится прямо на ваш счет MetaMask.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Купить сейчас"
},
"buyWithWyre": {
"message": "Купить 1 $ с помощью Wyre"
},
"buyWithWyreDescription": {
"message": "Простая регистрация для покупок на сумму до 1000 $. Быстрая интерактивная проверка покупки с высоким лимитом. Поддерживает дебетовые/кредитные карты, Apple Pay, банковские переводы. Доступно в более чем 100 странах. Токены зачисляются на ваш счет MetaMask"
},
"bytes": {
"message": "Байты"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Отменить обмен бесплатно"
},
"cancellationGasFee": {
"message": "Плата за газ при отмене"
},
"cancelled": {
"message": "Отменено"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Вам необходимо использовать MetaMask в Google Chrome, чтобы подключиться к аппаратному кошельку."
},
"clear": {
"message": "Очистить"
},
"clearActivity": {
"message": "Очистить данные о действиях и одноразовых паролях"
},
"clearActivityButton": {
"message": "Очистить данные вкладки активности"
},
"clearActivityDescription": {
"message": "Это приведет к сбросу одноразового пароля от счета и удалению данных со вкладки \"Активность\" в вашем кошельке. Это затронет только текущий счет и сеть. Ваши балансы и входящие транзакции не изменятся."
},
"clickToConnectLedgerViaWebHID": {
"message": "Нажмите здесь, чтобы подключить свой леджер через WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Закрыть"
},
"collectibleAddFailedMessage": {
"message": "Невозможно добавить NFT, так как сведения о владельце не совпадают. Убедитесь, что вы ввели правильную информацию."
},
"collectibleAddressError": {
"message": "Этот токен является NFT. Добавьте на $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Подтвердить"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Подключение к тестовой сети Goerli..."
},
"connectingToLineaTestnet": {
"message": "Подключение к тестовой сети Linea..."
},
"connectingToMainnet": {
"message": "Подключение к сети Ethereum Mainnet..."
},
@ -755,18 +733,6 @@
"continue": {
"message": "Продолжить"
},
"continueToCoinbasePay": {
"message": "Перейти на Coinbase Pay"
},
"continueToMoonPay": {
"message": "Перейти в MoonPay"
},
"continueToTransak": {
"message": "Перейти в Transak"
},
"continueToWyre": {
"message": "Перейти к Wyre"
},
"contract": {
"message": "Контракт"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Скопировано!"
"message": "Скопировано."
},
"copyAddress": {
"message": "Скопировать адрес в буфер обмена"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Создать пароль"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Конвертация валюты"
},
"currencyRateCheckToggle": {
"message": "Показать средство проверки баланса и цены токена"
},
"currencyRateCheckToggleDescription": {
"message": "Мы используем API $1 и $2 для отображения вашего баланса и цены токена. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Символ валюты"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Внести деньги"
},
"depositCrypto": {
"message": "Внесите $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Подробнее"
},
@ -992,15 +964,108 @@
"description": {
"message": "Описание"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Эта ошибка может быть периодической, поэтому попробуйте перезапустить расширение или отключить MetaMask Desktop."
},
"desktopConnectionCriticalErrorTitle": {
"message": "У MetaMask возникли проблемы с запуском"
},
"desktopConnectionLostErrorDescription": {
"message": "Убедитесь, что у вас имеется и запущено приложение для ПК, или отключите MetaMask Desktop."
},
"desktopConnectionLostErrorTitle": {
"message": "Соединение с MetaMask Desktop потеряно"
},
"desktopDisableButton": {
"message": "Отключить приложение для ПК"
},
"desktopDisableErrorCTA": {
"message": "Отключить MetaMask Desktop"
},
"desktopEnableButton": {
"message": "Включить приложение для ПК"
},
"desktopEnableButtonDescription": {
"message": "Нажмите, чтобы запустить все фоновые процессы в приложении для ПК."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Вернуться на страницу «Настройки»"
},
"desktopErrorRestartMMCTA": {
"message": "Перезапустить MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Скачать MetaMask Desktop"
},
"desktopNotFoundErrorDescription1": {
"message": "Убедитесь, что у вас имеется и запущено приложение для ПК."
},
"desktopNotFoundErrorDescription2": {
"message": "Если у вас не установлено приложение для ПК, скачайте его с веб-сайта MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Desktop не найдено"
},
"desktopOpenOrDownloadCTA": {
"message": "Открыть MetaMask Desktop"
},
"desktopOutdatedErrorCTA": {
"message": "Обновить MetaMask Desktop"
},
"desktopOutdatedErrorDescription": {
"message": "Ваше приложение MetaMask Desktop требует обновления."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Desktop устарело"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Обновить расширение MetaMask"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Ваше расширение MetaMask требует обновления."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "Расширение MetaMask устарело"
},
"desktopPageDescription": {
"message": "Если сопряжение пройдет успешно, расширение перезапустится, и вам потребуется повторно ввести свой пароль."
},
"desktopPageSubTitle": {
"message": "Откройте MetaMask Desktop и введите этот код"
},
"desktopPageTitle": {
"message": "Установить сопряжение с Desktop"
},
"desktopPairedWarningDeepLink": {
"message": "Перейдите в Настройки в MetaMask Desktop"
},
"desktopPairedWarningDescription": {
"message": "Если вы хотите начать новое сопряжение, отключите текущее соединение."
},
"desktopPairedWarningTitle": {
"message": "MM Desktop уже сопряжено"
},
"desktopPairingExpireMessage": {
"message": "Срок кода истекает через $1 секунд(-ы)"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Назад на главную страницу MetaMask"
},
"desktopUnexpectedErrorDescription": {
"message": "Проверьте свое MetaMask Desktop, чтобы восстановить соединение"
},
"desktopUnexpectedErrorTitle": {
"message": "Что-то пошло не так..."
},
"details": {
"message": "Подробности"
},
"directDepositCrypto": {
"message": "Внесите $1 напрямую"
},
"directDepositCryptoExplainer": {
"message": "Если у вас уже есть немного $1, самый быстрый способ получить $1 в новый кошелек — это прямой депозит."
},
"disabledGasOptionToolTipMessage": {
"message": "$1 отключена, поскольку не соответствует минимальному увеличению на 10% от первоначальной платы за газ.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Используйте API OpenSea для получения данных NFT. Для автоматического обнаружения NFT используется API OpenSea, и такое обнаружение будет недоступно, если этот API отключен."
},
"enableOpenSeaSecurityProvider": {
"message": "Включить поставщика услуг безопасности"
},
"enableSmartTransactions": {
"message": "Включить смарт-транзакции"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Посмотреть на Etherscan"
},
"expandExperience": {
"message": "Расширьте свои возможности web3"
},
"expandView": {
"message": "Развернуть представление"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "См. подробности",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Добавлена",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Использовано газа"
},
"gdprMessage": {
"message": "Эти данные агрегированы и поэтому анонимны для целей Общего регламента по защите данных (ЕС) 2016/679. Дополнительная информация о наших методах защиты конфиденциальности приводится в нашей $1.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Политикой конфиденциальности здесь",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Общее"
},
"getEther": {
"message": "Получить Ether"
},
"getEtherFromFaucet": {
"message": "Получите из крана Ether для сети $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Получайте предупреждения от OpenSea всякий раз, когда вы получаете заведомо вредоносный запрос."
},
"goBack": {
"message": "Назад"
@ -1545,6 +1598,32 @@
"history": {
"message": "История"
},
"holdToReveal": {
"message": "Удерживайте для отображения СВФ"
},
"holdToRevealContent1": {
"message": "Ваша секретная фраза для восстановления дает $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "полный доступ к вашему кошельку и средствам.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Не сообщайте ее никому. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "Служба поддержки MetaMask не будет запрашивать ее,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "но злоумышленники-фишеры могут.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Обеспечьте безопасность своей СВФ"
},
"ignoreAll": {
"message": "Игнорировать все"
},
@ -1724,9 +1803,6 @@
"message": "Файл JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "чтобы следить за вашими токенами и NFT на разных счетах и в разных сетях."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Последнее подключение"
},
"lastPriceSold": {
"message": "Последняя цена продажи"
},
"lastSold": {
"message": "Последняя продажа"
},
"learnCancelSpeeedup": {
"message": "Узнайте, как $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Вы хотели бы импортировать эти токены?"
},
"lineatestnet": {
"message": "Тестовая сеть Linea Goerli"
},
"link": {
"message": "Привязать"
},
@ -1867,15 +1952,12 @@
"message": "Создать новый обмен"
},
"makeSureNoOneWatching": {
"message": "Убедитесь, что никто не смотрит на ваш экран",
"message": "Убедитесь, что никто не смотрит",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "Искаженные данные"
},
"manageSnaps": {
"message": "Управляйте установленными снапами"
},
"max": {
"message": "Макс."
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Версия MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Всегда разрешать вам отказываться в Настройках"
},
"metametricsCommitmentsBoldNever": {
"message": "Никогда",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask..."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 не сохраняет ваш полный IP-адрес",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 не хранит ключи, адреса, транзакции, балансы, хэши или любые личные данные",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 не продает данные для получения прибыли. Никогда!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Отправлять анонимизированные события кликов и просмотров страниц"
},
"metametricsHelpImproveMetaMask": {
"message": "Помогите нам улучшить MetaMask"
},
"metametricsOptInDescription": {
"message": "MetaMask хотел бы собрать основные данные об использовании, чтобы лучше понять, как наши пользователи взаимодействуют с расширением. Эти данные будут использоваться для постоянного повышения удобства и улучшения впечатлений от использования нашего продукта и экосистемы Ethereum."
"metrics": {
"message": "Показатели"
},
"mismatchedChainLinkText": {
"message": "проверить сведения о сети",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "Функция «Синхронизация с расширением» временно отключена. Если вы хотите использовать свой кошелек из расширения браузера в мобильной версии MetaMask, тогда в мобильном приложении вернитесь к параметрам настройки кошелька и выберите параметр «Импортировать с помощью секретной фразы для восстановления». Используйте секретную фразу своего кошелька из расширения, чтобы импортировать кошелек на мобильное устройство."
},
"moreComingSoon": {
"message": "Скоро появится больше..."
},
"mustSelectOne": {
"message": "Необходимо выбрать хотя бы 1 токен."
},
@ -1992,10 +2049,6 @@
"message": "Нативный токен этой сети — $1. Этот токен используется для оплаты газа.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Для взаимодействия с децентрализованными приложениями с помощью MetaMask вам понадобится $1 в вашем кошельке.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Нужна помощь? Обратитесь в $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Счет $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Коллекционный актив успешно добавлен!"
},
"newContact": {
"message": "Новый контакт"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "«$1» успешно добавлен!"
},
"newNftAddedMessage": {
"message": "Коллекционный актив успешно добавлен!"
},
"newPassword": {
"message": "Новый пароль (мин. 8 знаков)"
},
@ -2138,8 +2191,18 @@
"message": "Одноразовый номер больше, чем предложенный одноразовый номер $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "Невозможно добавить NFT, так как сведения о владельце не совпадают. Убедитесь, что вы ввели правильную информацию."
},
"nftAddressError": {
"message": "Этот токен является коллекционным активом. Добавьте на $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Отказ от ответственности: MetaMask извлекает медиафайл из исходного URL-адреса. Этот URL-адрес иногда изменяется торговой площадкой, на которой был выполнен минтинг NFT."
},
"nftOptions": {
"message": "Опционы NFT"
},
"nftTokenIdPlaceholder": {
"message": "Введите ид. коллекционного актива"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Снапы не установлены"
},
"noThanks": {
"message": "Нет, спасибо"
},
"noThanksVariant2": {
"message": "Нет, спасибо."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Недостаточно газа"
},
"notNow": {
"message": "Не сейчас"
},
"notifications": {
"message": "Уведомления"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Показать настройки безопасности и конфиденциальности"
},
"notifications17Description": {
"message": "Это обновление предоставляет больше возможностей, чтобы вы могли лучше контролировать свою собственную конфиденциальность. Мы добавили больше прозрачности в отношении того, как собираются данные, и более четкие варианты обмена ими. Измените свои предпочтения или удалите данные об использовании расширения в настройках безопасности и конфиденциальности."
},
"notifications17Title": {
"message": "Настройки безопасности и конфиденциальности"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Открыть в проводнике блоков"
},
"openSea": {
"message": "OpenSea (бета-версия)"
},
"openSeaAltText": {
"message": "Поставщик услуг безопасности OpenSea"
},
"openSeaDescription": {
"message": "OpenSea является первым поставщиком услуг безопасности для этой функции. Скоро появятся новые поставщики!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Необязательно"
},
"optionalWithParanthesis": {
"message": "(Необязательно)"
},
"options": {
"message": "Опционы"
},
"or": {
"message": "или"
},
@ -2564,6 +2639,9 @@
"message": "другие привязки",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Ваш браузер устарел. Если вы не обновите его, то не сможете получать исправления безопасности и новые функции от MetaMask."
},
"padlock": {
"message": "Замок"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Отменено в этом обновлении"
},
"permission_accessNamedSnap": {
"message": "Подключиться к $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Доступ в Интернет.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Подключение к спапу $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Планируйте и выполняйте периодические действия.",
@ -2671,6 +2753,10 @@
"message": "Контролируйте свои счета и активы «$1».",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Контролируйте свои счета и активы $1.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Храните и управляйте его данными на вашем устройстве.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Просмотрите свой открытый ключ для $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Просмотрите свой открытый ключ для $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Разрешения"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Популярные пользовательские сети"
},
"portfolioSite": {
"message": "Сайт портфеля"
"portfolio": {
"message": "Портфель"
},
"preferredLedgerConnectionType": {
"message": "Предпочтительный тип подключения к леджеру",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "Удалить NFT"
},
"removeNftMessage": {
"message": "NFT успешно удален!"
},
"removeSnap": {
"message": "Удалить снап"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "заменить"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Поставщик услуг безопасности не поделился дополнительной информацией"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Запрос помечен как вредоносный"
},
"requestMayNotBeSafe": {
"message": "Запрос может быть небезопасным"
},
"requestMayNotBeSafeError": {
"message": "Поставщик услуг безопасности не обнаружил никакой известной вредоносной активности, но продолжать все равно может быть небезопасно."
},
"requestNotVerified": {
"message": "Запрос не подтвержден"
},
"requestNotVerifiedError": {
"message": "Из-за ошибки этот запрос не был подтвержден поставщиком услуг безопасности. Действуйте осторожно."
},
"requestsAwaitingAcknowledgement": {
"message": "запросы, ожидающие подтверждения"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Сбросить"
},
"resetAccount": {
"message": "Сбросить счет"
},
"resetAccountDescription": {
"message": "Сброс вашего счета удалит историю транзакций. Это не изменит остатки на ваших счетах и не потребует повторного ввода секретной фразы для восстановления."
},
"resetWallet": {
"message": "Сбросить кошелек"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Показать секретную фразу для восстановления"
},
"revealSeedWordsDescription": {
"message": "Если вы меняете браузер или переходите на другой компьютер, вам понадобится эта секретная фраза для восстановления для доступа к своим счетам. Сохраните ее в безопасном потайном месте."
"revealSeedWordsDescription1": {
"message": "$1 дает $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask — $1. Это означает, что вы являетесь владельцем своей СВФ.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "полный доступ к вашему кошельку и средствам.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "некастодиальный кошелек"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Секретная фраза для восстановления (СВФ)"
},
"revealSeedWordsText": {
"message": "Текст"
},
"revealSeedWordsWarning": {
"message": "Эти слова можно использовать для кражи всех ваших счетов."
"message": "Убедитесь, что никто не смотрит на ваш экран. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "НЕ сообщайте никому эту фразу!"
"revealSeedWordsWarning2": {
"message": "Служба поддержки MetaMask никогда не будет запрашивать ее.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Показать сид-фразу"
@ -2941,11 +3068,11 @@
"message": "Проверьте свой лимит расходов"
},
"revokeAllTokensTitle": {
"message": "Отозвать разрешение на доступ ко всем вашим $1?",
"message": "Отозвать разрешение на доступ ко всем вашим $1 и их перевод?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "При отмене разрешения следующий $1 больше не сможет получить доступ к вашему $2",
"message": "Это отменит разрешение третьей стороне на доступ ко всем вашим $1 и их перевод без дальнейшего уведомления.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Сохранить"
},
"saveAsCsvFile": {
"message": "Сохранить как файл CSV"
},
"scanInstructions": {
"message": "Поместите QR-код перед камерой"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Если вы не видите ожидаемые счета, попробуйте переключиться на путь HD."
},
"selectProvider": {
"message": "Выберите поставщиков:"
},
"selectType": {
"message": "Выбрать тип"
},
@ -3246,15 +3373,8 @@
"message": "Вы предоставляете ключ доступа $2 к привязке \"$1\". Это действие нельзя отменить, и оно предоставляет \"$1\" управление всеми счетами и активами $2. Перед тем как продолжить, убедитесь, что доверяете \"$1\".",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Этот снап запрашивает следующие разрешения:"
},
"snapUpdate": {
"message": "Обновить привязку"
},
"snapUpdateExplanation": {
"message": "$1 нужна более новая версия вашей привязки.",
"description": "$1 is the dapp that is requesting an update to the snap."
"message": "Обновить снап"
},
"snaps": {
"message": "Снапы"
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Лимит расходов слишком велик"
},
"spendingCap": {
"message": "Лимит расходов"
},
"spendingCapError": {
"message": "Ошибка: вводите только цифры"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Не подключено"
},
"staySafeWithOpenSea": {
"message": "Оставайтесь в безопасности с OpenSea"
},
"step1LatticeWallet": {
"message": "Подключите Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "Комиссия MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Мы всегда находим лучшую цену из лучших источников ликвидности. В эту котировку автоматически включается комиссия в размере $1%.",
"message": "В этой котировке автоматически учитывается rомиссия в размере $1%. Вы платите ее в обмен на лицензию на использование программного обеспечения MetaMask для сбора информации о поставщиках ликвидности.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Условия обслуживания"
},
"testFaucet": {
"message": "Тестовый кран"
},
"testNetworks": {
"message": "Протестировать сети"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Что нужно помнить:"
},
"thisIsBasedOn": {
"message": "Это основано на информации от "
},
"thisServiceIsExperimental": {
"message": "Этот сервис является экспериментальным"
},
"time": {
"message": "Время"
},
@ -3914,6 +4043,12 @@
"message": "Адресат: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Включите это, чтобы децентрализованные приложения могли запрашивать вашу подпись с помощью запросов eth_sign. eth_sign — это открытый метод подписи, который позволяет вам подписывать произвольный хеш, что делает его опасным для фишинга. Подписывайте запросы eth_sign только в том случае, если вы можете прочитать, что вы подписываете, и доверяете источнику запроса."
},
"toggleEthSignField": {
"message": "Переключить запросы eth_sign"
},
"toggleTestNetworks": {
"message": "$1 тестовые сети",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Токен уже добавлен."
},
"tokenAutoDetection": {
"message": "Автоопределение токена"
},
"tokenContractAddress": {
"message": "Адрес контракта токена"
},
@ -4064,10 +4202,10 @@
"message": "Транзакция отправлена повторно с платой за газ, увеличенной до $1, в $2"
},
"transactionSecurityCheck": {
"message": "Проверка безопасности транзакции"
"message": "Включить поставщиков безопасности транзакций"
},
"transactionSecurityCheckDescription": {
"message": "Включите этот параметр, чтобы третья сторона (OpenSea) могла просматривать все ваши транзакции и запросы подписи и предупреждать вас об известных вредоносных запросах."
"message": "Мы используем сторонние API для обнаружения и отображения рисков, связанных с неподписанными транзакциями и запросами подписи, прежде чем вы их подпишете. Эти службы будут иметь доступ к вашим неподписанным транзакциям и запросам подписи, адресу вашей учетной записи и предпочитаемому вами языку."
},
"transactionSubmitted": {
"message": "Транзакция отправлена с платой за газ в размере $1 в $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Попробуйте еще раз"
},
"tryOur": {
"message": "Попробуйте наше"
},
"turnOnTokenDetection": {
"message": "Включите расширенное обнаружение токенов"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "Отправка коллекционных активов (ERC-721) сейчас не поддерживается",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "Отправка жетонов коллекционных активов (ERC-721) сейчас не поддерживается",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Мы не можем проверить этот контракт. Убедитесь, что вы доверяете этому адресу."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "Это URL-адрес в настоящее время используется сетью $1."
},
"useCollectibleDetection": {
"message": "Автообнаружение NFT"
},
"useCollectibleDetectionDescription": {
"message": "Отображение медиафайлов и данных NFT может раскрыть ваш IP-адрес централизованным серверам. Сторонние API (например, OpenSea) используются для обнаружения NFT в вашем кошельке. При таком обнаружении адрес вашего счета становится известен этим службами. Оставьте этот параметр отключенным, если не хотите, чтобы приложение получало данные от этих служб."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Кроме того, знайте, что:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Метаданные NFT могут содержать мошеннические или фишинговые сайты."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Любой может эйрдропнуть NFT на ваш счет. Они могут включать оскорбительный контент, который может автоматически отображаться в вашем кошельке."
},
"useDefault": {
"message": "Использовать значения по умолчанию"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Мы создаем пакет счетов и запрашиваем Infura, чтобы оперативно отображать ваши остатки. Если вы отключите это, запрос будет отправляться только в отношении активных счетов. Некоторые dapps не будут работать, пока вы не подключите свой кошелек."
},
"useNftDetection": {
"message": "Автообнаружение NFT"
},
"useNftDetectionDescription": {
"message": "Отображение медиафайлов и данных NFT может раскрыть ваш IP-адрес централизованным серверам. Для обнаружения NFT в вашем кошельке используются сторонние API. При включении этой функции следует соблюдать осторожность."
},
"useNftDetectionDescriptionLine2": {
"message": "Кроме того, знайте, что:"
},
"useNftDetectionDescriptionLine3": {
"message": "Метаданные NFT могут содержать ссылки на мошеннические или фишинговые сайты."
},
"useNftDetectionDescriptionLine4": {
"message": "Любой может эйрдропнуть NFT на ваш счет. Это может включать оскорбительный контент, который может автоматически отображаться в вашем кошельке."
},
"useNftDetectionDescriptionLine5": {
"message": "Не включайте эту функцию, если не хотите, чтобы приложение извлекало данные из этих сервисов."
},
"usePhishingDetection": {
"message": "Использовать обнаружение фишинга"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Просмотр"
},
"viewAccount": {
"message": "Смотреть счет"
},
"viewAllDetails": {
"message": "Смотреть все сведения"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Контракт может потратить весь ваш баланс токенов без дополнительного уведомления или согласия. Защитите себя, установив более низкий лимит расходов.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Слабый"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Да"
},
"yesLetsTry": {
"message": "Да, давайте попробуем"
},
"youHaveAddedAll": {
"message": "Вы добавили все популярные сети. Вы можете открыть для себя больше сетей $1 или можете $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"

View File

@ -72,12 +72,6 @@
"approved": {
"message": "Schváleno"
},
"attemptToCancel": {
"message": "Pokus o zrušenie?"
},
"attemptToCancelDescription": {
"message": "Odoslanie tohto pokusu nezaručuje, že vaša pôvodná transakcia bude zrušená. Ak je pokus o zrušenie úspešný, naúčtujeme vám vyššie uvedený transakčný poplatok."
},
"attemptingConnect": {
"message": "Pokouším se připojit k blockchainu."
},
@ -124,21 +118,12 @@
"browserNotSupported": {
"message": "Váš prehliadač nie je podporovaný..."
},
"buyWithWyre": {
"message": "Kúpte $1 s Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre vám umožňuje použiť kreditnú kartu na vloženie depozitu $1 priamo na váš účet MetaMask."
},
"bytes": {
"message": "Bajty"
},
"cancel": {
"message": "Zrušit"
},
"cancellationGasFee": {
"message": "Storno poplatok za GAS"
},
"cancelled": {
"message": "Zrušený"
},
@ -172,12 +157,12 @@
"connectingToGoerli": {
"message": "Pripája sa k testovacej sieti Goerli"
},
"connectingToLineaTestnet": {
"message": "Pripája sa k testovacej sieti Linea Goerli"
},
"connectingToMainnet": {
"message": "Připojuji se k Ethereum Mainnet"
},
"continueToWyre": {
"message": "Pokračovať na Wyre"
},
"contractDeployment": {
"message": "Nasazení kontraktu"
},
@ -330,13 +315,6 @@
"general": {
"message": "Všeobecne"
},
"getEther": {
"message": "Získejte Ether"
},
"getEtherFromFaucet": {
"message": "Získejte Ether z faucetu za $1.",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Testovacia sieť Goerli"
},
@ -424,6 +402,9 @@
"likeToImportTokens": {
"message": "Chcete přidat tyto tokeny?"
},
"lineatestnet": {
"message": "Testovacia sieť Linea Goerli"
},
"links": {
"message": "Odkazy"
},
@ -611,26 +592,15 @@
"reset": {
"message": "Resetovať"
},
"resetAccount": {
"message": "Resetovat účet"
},
"resetAccountDescription": {
"message": "Pri obnovení účtu sa vymaže história transakcií."
},
"restore": {
"message": "Obnoviť"
},
"revealSeedWords": {
"message": "Zobrazit slova klíčové fráze"
},
"revealSeedWordsDescription": {
"message": "Ak niekedy zmeníte prehliadač alebo presuniete počítače, budete potrebovať túto seed frázu na prístup k svojim účtom. Uložte ich niekde v bezpečí a v tajnosti."
},
"revealSeedWordsWarning": {
"message": "Nebnovujte slova klíčové fráze na veřejnosti! Tato slova mohou být použita k odcizení veškerých vyašich účtů."
},
"revealSeedWordsWarningTitle": {
"message": "Túto frázu s nikým NEZDIEĽAJTE!"
"message": "Nebnovujte slova klíčové fráze na veřejnosti! Tato slova mohou být použita k odcizení veškerých vyašich účtů.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Nová RPC URL"
@ -638,9 +608,6 @@
"save": {
"message": "Uložit"
},
"saveAsCsvFile": {
"message": "Uložiť ako súbor CSV"
},
"scanInstructions": {
"message": "Umiestnite QR kód pred kameru"
},
@ -773,9 +740,6 @@
"terms": {
"message": "Podmínky použití"
},
"testFaucet": {
"message": "Testovací faucet"
},
"tips": {
"message": "Príspevky"
},
@ -891,9 +855,6 @@
"userName": {
"message": "Meno používateľa"
},
"viewAccount": {
"message": "Zobrazit účet"
},
"viewContact": {
"message": "Zobraziť kontakt"
},
@ -903,9 +864,6 @@
"welcomeBack": {
"message": "Vitajte späť!"
},
"yesLetsTry": {
"message": "Áno, skúsme to"
},
"youNeedToAllowCameraAccess": {
"message": "Ak chcete používať túto funkciu, musíte povoliť prístup k fotoaparátu."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Sredstva"
},
"attemptToCancel": {
"message": "Želite preklicati?"
},
"attemptToCancelDescription": {
"message": "Če pošljete ta poskus, ne boste zagotovili, da bo vaša prvotna transakcija preklicana. Če bo poskus preklica uspešen, se bo zaračunala zgornja transakcija."
},
"attemptingConnect": {
"message": "Povezovanje z verigo blokov ..."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Vaš brskalnik ni podptrt ..."
},
"buyWithWyre": {
"message": "Kupi $1 z Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre vam omogoča, da s kreditno kartico nakažete $1 neposredno na svoj račun MetaMask."
},
"bytes": {
"message": "Bajti"
},
"cancel": {
"message": "Prekliči"
},
"cancellationGasFee": {
"message": "Preklicani znesek gas"
},
"cancelled": {
"message": "Preklicano"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Povezovanje na testno omrežje Goerli"
},
"connectingToLineaTestnet": {
"message": "Povezovanje na testno omrežje Linea Goerli"
},
"connectingToMainnet": {
"message": "Povezovanje na glavno omrežje"
},
"continueToWyre": {
"message": "Nadaljuj na Wyre"
},
"contractDeployment": {
"message": "Ustvarjanje pogodbe"
},
@ -333,13 +318,6 @@
"general": {
"message": "Splošno"
},
"getEther": {
"message": "Pridobi Ether"
},
"getEtherFromFaucet": {
"message": "Pridobite Ether iz fauceta za $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Testno omrežje Goerli"
},
@ -431,6 +409,9 @@
"likeToImportTokens": {
"message": "Želite dodati te žetone?"
},
"lineatestnet": {
"message": "Testno omrežje Linea Goerli"
},
"links": {
"message": "Povezave"
},
@ -627,26 +608,15 @@
"reset": {
"message": "Ponastavi"
},
"resetAccount": {
"message": "Ponastavi račun"
},
"resetAccountDescription": {
"message": "Ponastavljanje računa bo izbrisalo zgodovino transakcij."
},
"restore": {
"message": "Obnovi"
},
"revealSeedWords": {
"message": "Razkrij seed words"
},
"revealSeedWordsDescription": {
"message": "Če želite zamenjati brskalnik ali računalnik, potrebujete vaš seed phase za dostop do računa. Shranite ga na varno skrito mesto."
},
"revealSeedWordsWarning": {
"message": "S temi besedami lahko kdorkoli ukrade vse vaše račune."
},
"revealSeedWordsWarningTitle": {
"message": "Tega ne delite z nikomer!"
"message": "S temi besedami lahko kdorkoli ukrade vse vaše račune.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Nov URL RPC"
@ -654,9 +624,6 @@
"save": {
"message": "Shrani"
},
"saveAsCsvFile": {
"message": "Shrani kot CSV datoteko"
},
"scanInstructions": {
"message": "Postavite QR kodo pred vašo kamero"
},
@ -792,9 +759,6 @@
"terms": {
"message": "Pogoji uporabe"
},
"testFaucet": {
"message": "Testni faucet"
},
"tips": {
"message": "Nasveti"
},
@ -913,9 +877,6 @@
"userName": {
"message": "Uporabniško ime"
},
"viewAccount": {
"message": "Poglej račun"
},
"viewContact": {
"message": "Ogled stika"
},
@ -925,9 +886,6 @@
"welcomeBack": {
"message": "Dobrodošli nazaj!"
},
"yesLetsTry": {
"message": "Pa poskusimo"
},
"youNeedToAllowCameraAccess": {
"message": "Za uporabo te funkcije boste potrebovali dostop do kamere."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Sredstva"
},
"attemptToCancel": {
"message": "Pokušavate da otkažete?"
},
"attemptToCancelDescription": {
"message": "Slanje ovog pokušaja ne garantuje da će prvobitna transakcija biti otkazana. Ako je pokušaj otkazivanja uspešan, biće vam naplaćena provizija koja je navedena gore."
},
"attemptingConnect": {
"message": "Pokušava da se poveže na lanac blokova"
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Vaš pregledač nije podržan..."
},
"buyWithWyre": {
"message": "Kupite $1 preko servisa Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre vam dozvoljava da koristite kreditnu karticu kako biste deponovali $1 pravo na vaš MetaMask nalog."
},
"bytes": {
"message": "Bajtovi"
},
"cancel": {
"message": "Otkaži"
},
"cancellationGasFee": {
"message": "Otkazivanje gas naknade"
},
"cancelled": {
"message": "Otkazano"
},
@ -175,12 +160,12 @@
"connectingToGoerli": {
"message": "Povezuje se sa test mrežom Goerli "
},
"connectingToLineaTestnet": {
"message": "Povezuje se sa test mrežom Linea Goerli"
},
"connectingToMainnet": {
"message": "Povezuje se na glavnu Ethereum mrežu"
},
"continueToWyre": {
"message": "Nastavite ka Wyre"
},
"contractDeployment": {
"message": "Primena ugovora"
},
@ -333,13 +318,6 @@
"general": {
"message": "Opšte"
},
"getEther": {
"message": "Nabavite Ether"
},
"getEtherFromFaucet": {
"message": "Preuzmite Ether sa slavine za $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Test mreža Goerli "
},
@ -434,6 +412,9 @@
"likeToImportTokens": {
"message": "Želite li da dodate ove tokene?"
},
"lineatestnet": {
"message": "Test mreža Linea Goerli"
},
"links": {
"message": "Veze"
},
@ -630,26 +611,15 @@
"reset": {
"message": "Ресетуј"
},
"resetAccount": {
"message": "Ponovo postavi nalog"
},
"resetAccountDescription": {
"message": "Resetovanje vašeg naloga će obrisati istoriju transakcija."
},
"restore": {
"message": "Поново отвори"
},
"revealSeedWords": {
"message": "Otkrivanje početnih reči"
},
"revealSeedWordsDescription": {
"message": "Ukoliko ikad promenite pregledač ili kompjuter, trebaće vam ova šifra za oporavak naloga (seed phrase) kako biste pristupili svojim nalozima. Čuvajte je na bezbednom i tajnom mestu."
},
"revealSeedWordsWarning": {
"message": "Ove reči se mogu iskoristiti za krađu svih vaših naloga."
},
"revealSeedWordsWarningTitle": {
"message": "NE delite ovu frazu ni sa kim!"
"message": "Ove reči se mogu iskoristiti za krađu svih vaših naloga.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Novi RPC URL"
@ -657,9 +627,6 @@
"save": {
"message": "Сачувај"
},
"saveAsCsvFile": {
"message": "Sačuvajte u formi CSV datoteke"
},
"scanInstructions": {
"message": "Stavite QR kod ispred vaše kamere"
},
@ -910,9 +877,6 @@
"userName": {
"message": "Корисничко име"
},
"viewAccount": {
"message": "Прикажи налог"
},
"viewContact": {
"message": "Pogledaj kontakt"
},
@ -922,9 +886,6 @@
"welcomeBack": {
"message": "Dobro došli nazad!"
},
"yesLetsTry": {
"message": "Da, pokušajmo."
},
"youNeedToAllowCameraAccess": {
"message": "Za upotrebu ove funkcije morate omogućiti pristup kameri."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Tillgång"
},
"attemptToCancel": {
"message": "Vill du försöka att avbryta?"
},
"attemptToCancelDescription": {
"message": "Att godkänna detta avbrytningsförsök garanterar inte att din ursprungliga överföring avbryts. Om avbrytningsförsöket lyckas kommer du att debiteras överföringsavgiften som nämns ovan."
},
"attemptingConnect": {
"message": "Försöker ansluta till blockkedja."
},
@ -130,18 +124,9 @@
"browserNotSupported": {
"message": "Din webbläsare stöds inte..."
},
"buyWithWyre": {
"message": "Köp $1 med Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre låter dig använda ett kreditkort för att sätta in $1 direkt på ditt MetaMask-konto."
},
"cancel": {
"message": "Avbryt"
},
"cancellationGasFee": {
"message": "Gasavgift för avbrytning"
},
"cancelled": {
"message": "Avbruten"
},
@ -172,12 +157,12 @@
"connectingToGoerli": {
"message": "Ansluter till Goerli Test Network"
},
"connectingToLineaTestnet": {
"message": "Ansluter till Linea Goerli Test Network"
},
"connectingToMainnet": {
"message": "Koppla till Ethereums huvudnätverk"
},
"continueToWyre": {
"message": "Fortsätt till Wyre"
},
"contractDeployment": {
"message": "Kontraktplacering"
},
@ -326,13 +311,6 @@
"general": {
"message": "Allmänt"
},
"getEther": {
"message": "Skaffa Ether"
},
"getEtherFromFaucet": {
"message": "Få Ether från en kran för $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Goerli testnätverk"
},
@ -427,6 +405,9 @@
"likeToImportTokens": {
"message": "Vill du lägga till dessa tokens?"
},
"lineatestnet": {
"message": "Linea Goerli testnätverk"
},
"links": {
"message": "Länkar"
},
@ -623,26 +604,15 @@
"reset": {
"message": "Återställ"
},
"resetAccount": {
"message": "Återställ konto"
},
"resetAccountDescription": {
"message": "Återställning av ditt konto rensar din transaktionshistorik"
},
"restore": {
"message": "Återställ"
},
"revealSeedWords": {
"message": "Visa seed-ord"
},
"revealSeedWordsDescription": {
"message": "Om du någonsin byter webbläsare eller dator kommer du behöva denna"
},
"revealSeedWordsWarning": {
"message": "De här orden kan användas för att stjäla alla dina konton."
},
"revealSeedWordsWarningTitle": {
"message": "DELA INTE frasen med någon!"
"message": "De här orden kan användas för att stjäla alla dina konton.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Ny RPC-URL"
@ -650,9 +620,6 @@
"save": {
"message": "Spara"
},
"saveAsCsvFile": {
"message": "Spara som CSV-fil"
},
"scanInstructions": {
"message": "Placera QR-koden framför din kamera"
},
@ -785,9 +752,6 @@
"terms": {
"message": "Användarvillkor"
},
"testFaucet": {
"message": "Test-faucet"
},
"tips": {
"message": "Donationer"
},
@ -900,9 +864,6 @@
"userName": {
"message": "Användarnamn"
},
"viewAccount": {
"message": "Visa konto"
},
"viewContact": {
"message": "Visa kontakt"
},
@ -912,9 +873,6 @@
"welcomeBack": {
"message": "Välkommen tillbaka!"
},
"yesLetsTry": {
"message": "Ja, låt oss försöka"
},
"youNeedToAllowCameraAccess": {
"message": "Du måste tillåta åtkomst till kameran för att använda den här funktionen."
},

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Rasilimali"
},
"attemptToCancel": {
"message": "Unajaribu Kubatilisha?"
},
"attemptToCancelDescription": {
"message": "Kuwasilisha jaribio hili hakukuhakikishii muamala wako wa awali utabatilishwa. Ikiwa jaribio la kuffuta litafanikiwa, utatozwa ada ya muamala hapo juu."
},
"attemptingConnect": {
"message": "Inajaribu kuunganisha kwenye blockchain."
},
@ -127,18 +121,9 @@
"browserNotSupported": {
"message": "Kivinjari chaku hakiwezeshwi..."
},
"buyWithWyre": {
"message": "Nunua $1 kwa kutumia Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre inakuwezesha kutumia kadi ya benki kuweka $1 moja kwa moja kwenye akaunti yako ya MetaMask."
},
"cancel": {
"message": "Ghairi"
},
"cancellationGasFee": {
"message": "Ada ya Kubatilisha Gesi"
},
"cancelled": {
"message": "Imebatilishwa"
},
@ -172,12 +157,12 @@
"connectingToGoerli": {
"message": "Inaunganisha kwenye Mtandao wa Majaribio wa Goerli"
},
"connectingToLineaTestnet": {
"message": "Inaunganisha kwenye Mtandao wa Majaribio wa Linea Goerli"
},
"connectingToMainnet": {
"message": "Inaunganisha kwenye Mtandao Mkuu wa Ethereum"
},
"continueToWyre": {
"message": "Endelea kwenye Wyre"
},
"contractDeployment": {
"message": "Kutoa Mkataba"
},
@ -326,13 +311,6 @@
"general": {
"message": "Jumla"
},
"getEther": {
"message": "Pata Ether"
},
"getEtherFromFaucet": {
"message": "Pata Ether kutoka kwenye mfereji $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Mtandao wa Majaribio wa Goerli"
},
@ -424,6 +402,9 @@
"likeToImportTokens": {
"message": "Je, ungependa kuongeza vianzio hivi?"
},
"lineatestnet": {
"message": "Mtandao wa Majaribio wa Linea Goerli"
},
"links": {
"message": "Viungo"
},
@ -617,26 +598,15 @@
"reset": {
"message": "Weka upya"
},
"resetAccount": {
"message": "Futa Akaunti"
},
"resetAccountDescription": {
"message": "Kufuta Akaunti yako kutafuta histori ya akaunti yako."
},
"restore": {
"message": "Rejesha"
},
"revealSeedWords": {
"message": "Onyesha Maneno ya Kianzio"
},
"revealSeedWordsDescription": {
"message": "Ikiwa utabadilisha kisakuzi au kuhamisha kompyuta, utahitaji kirai hiki kianzio ili kufikia akaunti zako. Vihifadhi mahali fulani ambapo ni salamana pa siri."
},
"revealSeedWordsWarning": {
"message": "Maneno haya yanaweza kutumika kuiba akanti zako zote."
},
"revealSeedWordsWarningTitle": {
"message": "USISHIRIKI kirai hiki na mtu yeyote!"
"message": "Maneno haya yanaweza kutumika kuiba akanti zako zote.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "RPC URL mpya"
@ -644,9 +614,6 @@
"save": {
"message": "Hifadhi"
},
"saveAsCsvFile": {
"message": "Hifadhi kama Faili la CSV"
},
"scanInstructions": {
"message": "Weka msimbo wa QR mbele ya kamera yako"
},
@ -782,9 +749,6 @@
"terms": {
"message": "Masharti ya Matumizi"
},
"testFaucet": {
"message": "Mfereji wa Jaribio"
},
"tips": {
"message": "Michango"
},
@ -903,9 +867,6 @@
"userName": {
"message": "Jina la mtumiaji"
},
"viewAccount": {
"message": "Angalia Akaunti"
},
"viewContact": {
"message": "Tazama Mawasiliano"
},
@ -915,9 +876,6 @@
"welcomeBack": {
"message": "Karibu Tena!"
},
"yesLetsTry": {
"message": "Ndiyo, ngoja tujaribu"
},
"youNeedToAllowCameraAccess": {
"message": "Unapaswa kuruhusu kamera ili utumie kipengele hiki."
},

View File

@ -167,13 +167,6 @@
"gasPrice": {
"message": "எரிவாயு விலை (GWEI)"
},
"getEther": {
"message": "ஈத்தர் கிடைக்கும்"
},
"getEtherFromFaucet": {
"message": "$ 1 க்கு ஒரு குழாய் இருந்து ஈதர் கிடைக்கும்$1",
"description": "Displays network name for Ether faucet"
},
"here": {
"message": "இங்கே",
"description": "as in -click here- for more information (goes with troubleTokenBalances)"
@ -359,9 +352,6 @@
"reset": {
"message": "மீட்டமை"
},
"resetAccount": {
"message": "கணக்கை மீட்டமை"
},
"restore": {
"message": "மீட்டமை"
},
@ -369,7 +359,8 @@
"message": "விதை வார்த்தைகள் வெளிப்படுத்த"
},
"revealSeedWordsWarning": {
"message": "உங்கள் விதை வார்த்தைகள் ஒரு பொது இடத்தில் மீட்க வேண்டாம்! உங்கள் எல்லா கணக்குகளையும் திருட இந்த வார்த்தைகள் பயன்படுத்தப்படலாம்."
"message": "உங்கள் விதை வார்த்தைகள் ஒரு பொது இடத்தில் மீட்க வேண்டாம்! உங்கள் எல்லா கணக்குகளையும் திருட இந்த வார்த்தைகள் பயன்படுத்தப்படலாம்.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"save": {
"message": "சேமி"
@ -428,9 +419,6 @@
"terms": {
"message": "பயன்பாட்டு விதிமுறைகளை"
},
"testFaucet": {
"message": "சோதனை குழாய்"
},
"to": {
"message": "பெறுநர்"
},
@ -477,9 +465,6 @@
"userName": {
"message": "பயனர்பெயர்"
},
"viewAccount": {
"message": "கணக்கைப் பார்"
},
"visitWebSite": {
"message": "எங்கள் வலைத்தளத்தைப் பார்வையிடவும்"
},

View File

@ -144,8 +144,5 @@
},
"userName": {
"message": "యూజర్‌పేరు"
},
"viewAccount": {
"message": "ఖాతాను వీక్షించండి"
}
}

View File

@ -57,9 +57,6 @@
"cancel": {
"message": "ยกเลิก"
},
"cancellationGasFee": {
"message": "ค่าธรรมเนียม Gas การยกเลิก"
},
"chromeRequiredForHardwareWallets": {
"message": "คุณต้องใช้ MetaMask บน Google Chrome เพื่อเชื่อมต่อกับ Hardware Wallet ของคุณ"
},
@ -75,9 +72,6 @@
"connectingToMainnet": {
"message": "เชื่อมต่อกับเครือข่าย Ethereum หลัก"
},
"continueToWyre": {
"message": "ไปที่ Wyre"
},
"contractDeployment": {
"message": "การติดตั้งสัญญา"
},
@ -167,13 +161,6 @@
"general": {
"message": "ทั่วไป"
},
"getEther": {
"message": "รับอีเธอร์"
},
"getEtherFromFaucet": {
"message": "รับอีเธอร์ที่ปล่อยจาก $1",
"description": "Displays network name for Ether faucet"
},
"here": {
"message": "ที่นี่",
"description": "as in -click here- for more information (goes with troubleTokenBalances)"
@ -323,14 +310,12 @@
"required": {
"message": "จำเป็น"
},
"resetAccount": {
"message": "รีเซ็ตบัญชี"
},
"revealSeedWords": {
"message": "เปิดเผยกลุ่มคำชีด"
},
"revealSeedWordsWarning": {
"message": "อย่าเปิดเผยคำกลุ่มคำชีดของคุณในที่สาธารณะ! คำเหล่านี้สามารถใช้เพื่อขโมยบัญชีทั้งหมดของคุณ"
"message": "อย่าเปิดเผยคำกลุ่มคำชีดของคุณในที่สาธารณะ! คำเหล่านี้สามารถใช้เพื่อขโมยบัญชีทั้งหมดของคุณ",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"save": {
"message": "บันทึก"
@ -401,9 +386,6 @@
"terms": {
"message": "ข้อตกลงในการใช้งาน"
},
"testFaucet": {
"message": "ตัวแจกจ่ายเพื่อการทดสอบ"
},
"to": {
"message": "ถึง"
},
@ -450,9 +432,6 @@
"usedByClients": {
"message": "ถูกใช้งานโดยหลายไคลเอนท์"
},
"viewAccount": {
"message": "ดูบัญชี"
},
"visitWebSite": {
"message": "เยี่ยมชมเว็บไซต์ของเรา"
},

File diff suppressed because it is too large Load Diff

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Maks. öncelik ücreti (başka bir deyişle \"madenci bahşişi\") doğrudan madencilere gider ve işleminizin öncelikli olarak gerçekleştirilmesini teşvik eder."
},
"affirmAgree": {
"message": "Kabul Ediyorum"
},
"airgapVault": {
"message": "AirGap Kasası"
},
@ -332,6 +329,9 @@
"message": "$1 için şu tutara kadar para çekme ve harcama izni ver:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Talepleri onaylamadan önce her zaman bunu gerekli özeni göstererek yaptığınızdan emin olun."
},
"amount": {
"message": "Tutar"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Kurumsal",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Harcama limitini onayla"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Onayla"
},
"approveSpendingCap": {
"message": "$1 harcama üst limitini onayla",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Üçüncü bir tarafın, siz bu erişimi iptal edene kadar başka bildirim yapılmaksızın aşağıdaki NFT'lere erişim sağlamasına ve onları transfer edebilmesine izin verir."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Varlıkları doğrudan bir ağdan diğerine göndermeye çalışırsanız bu durum kalıcı varlık kaybına neden olabilir. Bir köprü kullandığınızdan emin olun."
},
"attemptToCancel": {
"message": "İptal etmeyi Dene?"
},
"attemptToCancelDescription": {
"message": "Bu denemenin gönderilmesi asıl işleminizin iptal edileceğini garanti etmez. İptal etme denemesi başarılı olursa sizden yukarıdaki ücret tahsil edilir."
},
"attemptingConnect": {
"message": "Blockzincire bağlanmaya çalışılıyor."
},
@ -418,7 +420,7 @@
"message": "Tokenleri otomatik algıla"
},
"autoDetectTokensDescription": {
"message": "Cüzdanınıza gönderilen yeni tokenleri algılamak için üçüncü taraf API'leri kullanırız. Uygulamanın bu hizmetlerden veri çekmesini istemiyorsanız kapatın. $1",
"message": "Cüzdanınıza gönderilen yeni tokenleri algılamak ve göstermek için üçüncü taraf API'leri kullanırız. Uygulamanın bu hizmetlerden otomatik olarak veri çekmesini istemiyorsanız kapatın. $1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "MetaMask Beta Sürümü"
},
"betaPortfolioSite": {
"message": "beta portföy sitesi"
},
"betaTerms": {
"message": "Beta Kullanım koşulları"
},
@ -535,38 +534,9 @@
"message": "$1 satın al",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Coinbase Pay ile 1 USD al",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Coinbase hesabınla kolayca kripto para satın alabilir veya transfer edebilirsin.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "MoonPay ile $1 satın al",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay, Visa, Mastercard, Apple / Google / Samsung Pay dahil olmak üzere popüler ödeme yöntemlerini ve 145'ten fazla ülkede banka havalelerini destekler. Token'lar MetaMask hesabına yatırılır."
},
"buyCryptoWithTransak": {
"message": "Transak ile $1 satın al",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak, 100'den fazla ülkede kredi ve banka kartlarını, Apple Pay, MobiKwik ve banka transferlerini (konuma bağlı olarak) destekler. $1 doğrudan MetaMask hesabına yatırılır.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Şimdi Satın Al"
},
"buyWithWyre": {
"message": "Wyre ile $1 satın al"
},
"buyWithWyreDescription": {
"message": "1000$'a kadar satın alma işlemlerinde kolay oryantasyon. Banka Kartı/Kredi Kartı, Apple Pay, Banka Transferlerini destekler. +100 ülkede kullanılabilir. Token'lar MetaMask Hesabına yatırılır"
},
"bytes": {
"message": "Bayt"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Swap işlemini ücretsiz iptal edin"
},
"cancellationGasFee": {
"message": "İptal İşlemi Gaz Ücreti"
},
"cancelled": {
"message": "İptal edildi"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Donanım Cüzdanınıza bağlamak için MetaMask'ı Google Chrome'da kullanmanız gerekir."
},
"clear": {
"message": "Temizle"
},
"clearActivity": {
"message": "Aktiviteyi ve anlık verileri temizle"
},
"clearActivityButton": {
"message": "Aktivite sekme verilerini temizle"
},
"clearActivityDescription": {
"message": "Bu işlem hesabın anlık verilerini sıfırlar ve cüzdanınızdaki aktivite sekmesinden verileri siler. Sadece geçerli hesap ve ağ etkilenecektir. Bakiyeleriniz ve gelen işlemleriniz değişmeyecektir."
},
"clickToConnectLedgerViaWebHID": {
"message": "WebHID üzerinden Kayıt Defterinizi bağlamak için tıklayın",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Kapat"
},
"collectibleAddFailedMessage": {
"message": "Sahiplik bilgileri eşleşmediğinden NFT eklenemez. Doğru bilgileri girdiğinden emin ol."
},
"collectibleAddressError": {
"message": "Bu token bir NFT'dir. $1 üzerine ekle",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Onayla"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Goerli Test Ağına Bağlanıyor"
},
"connectingToLineaTestnet": {
"message": "Linea Goerli test ağına bağlanılıyor"
},
"connectingToMainnet": {
"message": "Ethereum Mainnet ağına bağlanıyor"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Devam et"
},
"continueToCoinbasePay": {
"message": "Coinbase Pay'e devam et"
},
"continueToMoonPay": {
"message": "MoonPay'e devam et"
},
"continueToTransak": {
"message": "Transak'a Devam Et"
},
"continueToWyre": {
"message": "Wyre'a Devam Et"
},
"contract": {
"message": "Sözleşme"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Kopyalandı!"
"message": "Kopyalandı."
},
"copyAddress": {
"message": "Adresi panoya kopyala"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Parola Oluştur"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Para Birimi Dönüşümü"
},
"currencyRateCheckToggle": {
"message": "Bakiyeyi ve token fiyat denetleyicisini göster"
},
"currencyRateCheckToggleDescription": {
"message": "Bakiyenizi ve token fiyatınızı göstermek için $1 ve $2 API'lerini kullanırız. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Para Birimi Sembolü"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Para Yatır"
},
"depositCrypto": {
"message": "$1 yatır",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Daha fazla bilgi edinin"
},
@ -992,15 +964,108 @@
"description": {
"message": "Açıklama"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Bu hata aralıklı olarak meydana gelebilir, bu yüzden uzantıyı yeniden başlatmayı veya MetaMask Masaüstünü devre dışı bırakmayı deneyin."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask başlatılırken sorun oluştu"
},
"desktopConnectionLostErrorDescription": {
"message": "Lütfen masaüstü uygulamasının açık olduğundan ve çalıştığından emin olun veya MetaMask Masaüstünü devre dışı bırakın."
},
"desktopConnectionLostErrorTitle": {
"message": "MetaMask Masaüstü bağlantısı kaybedildi"
},
"desktopDisableButton": {
"message": "Masaüstü Uygulamasını devre dışı bırakın"
},
"desktopDisableErrorCTA": {
"message": "MetaMask Masaüstünü devre dışı bırakın"
},
"desktopEnableButton": {
"message": "Masaüstü Uygulamasını etkinleştirin"
},
"desktopEnableButtonDescription": {
"message": "Arka plandaki tüm işlemleri masaüstü uygulamasında çalıştırmak için tıklayın."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Ayarlar Sayfasına geri dönün"
},
"desktopErrorRestartMMCTA": {
"message": "MetaMask'i yeniden başlatın"
},
"desktopNotFoundErrorCTA": {
"message": "MetaMask Masaüstü uygulamasını indirin"
},
"desktopNotFoundErrorDescription1": {
"message": "Lütfen masaüstü uygulamasının açık olduğundan ve çalıştığından emin ol."
},
"desktopNotFoundErrorDescription2": {
"message": "Herhangi bir masaüstü uygulaması yüklü durumda değilse lütfen MetaMask web sitesinden indirin."
},
"desktopNotFoundErrorTitle": {
"message": "MetaMask Masaüstü bulunamadı"
},
"desktopOpenOrDownloadCTA": {
"message": "MetaMask Masaüstünü açın"
},
"desktopOutdatedErrorCTA": {
"message": "MetaMask Masaüstünü güncelleyin"
},
"desktopOutdatedErrorDescription": {
"message": "MetaMask masaüstü uygulamanın yükseltilmesi gerekiyor."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Masaüstü güncel değil"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "MetaMask Uzantısını güncelleyin"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "MetaMask uzantının yükseltilmesi gerekiyor."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask Uzantısı güncel değil"
},
"desktopPageDescription": {
"message": "Eşleştirme başarılı olmuşsa uzantı yeniden başlatılır ve parolanızı yeniden girmeniz gerekir."
},
"desktopPageSubTitle": {
"message": "MetaMask Masaüstü uygulamanızıın ve bu kodu girin"
},
"desktopPageTitle": {
"message": "Masaüstü ile eşleştirin"
},
"desktopPairedWarningDeepLink": {
"message": "MetaMask Masaüstü uygulamasında Ayarlar kısmına gidin"
},
"desktopPairedWarningDescription": {
"message": "Yeni bir eşleştirme başlatmak istiyorsanız lütfen mevcut bağlantıyı kaldırın."
},
"desktopPairedWarningTitle": {
"message": "MM Masaüstü zaten eşleştirilmiş"
},
"desktopPairingExpireMessage": {
"message": "Kod $1 içinde geçerliliğini yitirecek"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "MetaMask Ana Sayfasına geri dönün"
},
"desktopUnexpectedErrorDescription": {
"message": "Yeniden bağlantı sağlamak için MetaMask Masaüstü uygulamanızı kontrol edin"
},
"desktopUnexpectedErrorTitle": {
"message": "Bir şeyler ters gitti..."
},
"details": {
"message": "Ayrıntılar"
},
"directDepositCrypto": {
"message": "Doğrudan $1 Yatır"
},
"directDepositCryptoExplainer": {
"message": "Halihazırda $1 sahibiysen yeni cüzdanına doğrudan para yatırma yoluyla $1 almanın en hızlı yolu."
},
"disabledGasOptionToolTipMessage": {
"message": "Orijinal gas ücretinden minimum %10'luk bir artışı karşılamadığı için \"$1\" devre dışı bırakıldı.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "NFT verilerini almak için OpenSea API'sini kullanın. NFT otomatik algılama OpenSea API'ye dayalıdır ve bu kapatılırsa mevcut olmayacaktır."
},
"enableOpenSeaSecurityProvider": {
"message": "Güvenlik sağlayıcısını etkinleştir"
},
"enableSmartTransactions": {
"message": "Akıllı işlemleri etkinleştir"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Etherscan'de görüntüle"
},
"expandExperience": {
"message": "Web3 deneyimini genişlet"
},
"expandView": {
"message": "Görünümü genişlet"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Ayrıntıları gör",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Şu tarihte eklendi:",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Kullanılan gaz"
},
"gdprMessage": {
"message": "Bu veri toplanmıştır ve bu nedenle 2016/679 sayılı Genel Veri Koruma Düzenlemesi (AB) maksadıyla isimsizdir. Gizlilik uygulamalarımız hakkında daha fazla bilgi edinmek için lütfen $1 bölümümüze bakın.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "buradan Gizlilik politikası",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Genel"
},
"getEther": {
"message": "Ether Al"
},
"getEtherFromFaucet": {
"message": "Musluktan $1 karşılığı Ether al",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Bilinen bir kötü amaçlı talep aldığınızda OpenSea'den uyarı alın."
},
"goBack": {
"message": "Geri git"
@ -1545,6 +1598,32 @@
"history": {
"message": "Geçmiş"
},
"holdToReveal": {
"message": "GKİ'yi göstermek için basılı tut"
},
"holdToRevealContent1": {
"message": "Gizli Kurtarma İfadeniz: $1$",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "cüzdanınıza ve paranıza tam erişim sağlar.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Hiç kimseyle paylaşmayın. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "MetaMask Destek bölümü bunu talep etmez",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "ancak dolandırıcılar talep edilebilir.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "GKİ'nizi güvende tutun"
},
"ignoreAll": {
"message": "Tümünü yoksay"
},
@ -1577,7 +1656,7 @@
"message": "NFT sayfasını içe aktar"
},
"importNFTTokenIdToolTip": {
"message": "Bir koleksiyoncu kimliği, hiçbir iki NFT birbirine benzemediğinden benzersiz bir tanımlayıcıdır. Yine, OpenSea'de bu numara 'Detaylar' altındadır. Not al veya panonuza kopyala."
"message": "Hiçbir iki NFT kimliği birbiriyle aynı olmadığı için her NFT kimliği benzersiz bir tanımlayıcıdır. Yine, OpenSea'de bu sayı 'Detaylar' kısmının altında yer alır. Not alın veya panonuza kopyalayın."
},
"importNFTs": {
"message": "NFS'leri İçe Aktar"
@ -1724,9 +1803,6 @@
"message": "JSON Dosyası",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "hesaplar ve ağlar arasında tokenlerinizin ve NFT'lerinizin sekmelerini korumak için."
},
"keystone": {
"message": "Ana İlke"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Son bağlanma"
},
"lastPriceSold": {
"message": "Son satış fiyatı"
},
"lastSold": {
"message": "Son satış"
},
"learnCancelSpeeedup": {
"message": "Nasıl $1 yapacağınızı öğrenin",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Bu tokenleri içe aktarmak ister misiniz?"
},
"lineatestnet": {
"message": "Linea Goerli test ağı"
},
"link": {
"message": "Bağlantı"
},
@ -1867,15 +1952,12 @@
"message": "Yeni bir takas oluştur"
},
"makeSureNoOneWatching": {
"message": "Hiç kimsenin ekranınıza bakmadığından emin olun",
"message": "Hiç kimsenin bakmadığından emin olun",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "Hatalı biçimlendirilmiş veri"
},
"manageSnaps": {
"message": "Yüklü Snap'lerini yönet"
},
"max": {
"message": "Maksimum"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "MetaMask Sürümü"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Dilediğiniz zaman Ayarlar kısmında vazgeçebilmenize olanak tanır"
},
"metametricsCommitmentsBoldNever": {
"message": "Hiçbir zaman",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 IP adresinizin tamamını almaz",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 anahtarları, adresleri, işlemleri, bakiyeleri, doğrulama değerlerini veya kişisel bilgileri toplamaz",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 kâr elde etmek için verilerinizi satmaz. Asla!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "İsimsizleştirilmiş tıklama ve sayfa görüntüleme olaylarını gönder"
},
"metametricsHelpImproveMetaMask": {
"message": "MetaMask'i geliştirmemize yardımcı olun"
},
"metametricsOptInDescription": {
"message": "MetaMask, kullanıcılarımızın uzantıyı nasıl kullandıklarını daha iyi anlamak amacıyla kullanım verilerini toplamak istiyor. Bu veriler ürünümüzün ve Ethereum eko-sisteminin kullanılabilirliği ve kullanıcı deneyimini geliştirmek için sürekli olarak kullanılacaktır."
"metrics": {
"message": "Metrikler"
},
"mismatchedChainLinkText": {
"message": "ağ bilgilerini doğrula",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "\"Uzantı ile senkronize et\" özelliği geçici olarak devre dışı bırakılmış. MetaMask mobilde uzantı cüzdanınızı kullanmak istiyorsanız mobil uygulamaya gidin: cüzdan kurulum ayarlarına geri dönün ve \"Gizli Kurtarma İfadesi ile İçe Aktar\" seçeneğini seçin. Ardından cüzdanınızı mobil uygulamada içe aktarmak için uzantı cüzdanınızın gizli ifadesini kullanın."
},
"moreComingSoon": {
"message": "Daha fazlası çok yakında..."
},
"mustSelectOne": {
"message": "En az bir token seçilmeli."
},
@ -1992,10 +2049,6 @@
"message": "Bu ağdaki yerli token $1. Bu gaz ücretleri için kullanılan tokendir.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "MetaMask kullanarak merkezi olmayan uygulamalarla etkileşim kurmak için cüzdanında $1 bulunmasına ihtiyacın olacak.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Yardıma mı ihtiyacınız var? $1 bölümüne ulaşın",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Hesap $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Tahsil edilebilir tutar başarılı bir şekilde eklendi!"
},
"newContact": {
"message": "Yeni kişi"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "\"$1\" başarılı bir şekilde eklendi!"
},
"newNftAddedMessage": {
"message": "NFT başarılı bir şekilde eklendi!"
},
"newPassword": {
"message": "Yeni Parola (min 8 karakter)"
},
@ -2138,8 +2191,18 @@
"message": "Geçici anahtar, önerilen $1 geçici anahtarından daha büyük",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "Sahiplik bilgileri eşleşmediği için NFT eklenemiyor. Doğru bilgileri girdiğinizden emin olun."
},
"nftAddressError": {
"message": "Bu token bir NFT'dir. $1 üzerinde ekleyin",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Sorumluluğun Reddi: MetaMask medya dosyasını kaynak url adresinden çeker. Bu url adresi bazen NFT'nin mint edildiği pazar yeri tarafından değiştirilir."
},
"nftOptions": {
"message": "NFT Seçenekleri"
},
"nftTokenIdPlaceholder": {
"message": "Token kimliğini gir"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Hiç Snap yüklü değil"
},
"noThanks": {
"message": "Hayır, teşekkürler"
},
"noThanksVariant2": {
"message": "Hayır, teşekkürler."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Yeterli gaz yok"
},
"notNow": {
"message": "Şimdi değil"
},
"notifications": {
"message": "Bildirimler"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Güvenlik ve Gizlilik ayarlarını göster"
},
"notifications17Description": {
"message": "Bu güncelleme, kendi gizliliğinizi daha iyi kontrol edebilmeniz için daha fazla seçenek sunar. Verilerin nasıl toplandığı hakkında daha fazla şeffaflık ve paylaşımına yönelik daha açık seçenekler ekledik. Güvenlik ve Gizlilik ayarlarından tercihlerinizi değiştirin veya uzantı kullanım verilerinizi silin."
},
"notifications17Title": {
"message": "Güvenlik ve Gizlilik Ayarları"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Blok gezgininde aç"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "OpenSea güvenlik sağlayıcısı"
},
"openSeaDescription": {
"message": "OpenSea bu özellik için birinci güvenlik sağlayıcısıdır. Daha fazla sağlayıcı çok yakında gelecektir!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "İsteğe bağlı"
},
"optionalWithParanthesis": {
"message": "(İsteğe bağlı)"
},
"options": {
"message": "Seçenekler"
},
"or": {
"message": "veya"
},
@ -2564,6 +2639,9 @@
"message": "diğer snap'ler",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Tarayıcınız güncel değil. Tarayıcınızı güncellemezseniz MetaMask'ten güvenlik yamalarını ve yeni özellikleri alamayacaksınız."
},
"padlock": {
"message": "Asma Kilit"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Bu güncellemede iptal edildi"
},
"permission_accessNamedSnap": {
"message": "$1 alanına bağlanın.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "İnternete erişim sağla.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "$1 Snap'e bağlan.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"message": "$1 snap'e bağlan.",
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Periyodik eylemleri planla ve gerçekleştir.",
@ -2671,6 +2753,10 @@
"message": "\"$1\" hesaplarını ve varlıklarını kontrol et.",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "$1 hesaplarınızı ve varlıklarınızı kontrol edin.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Verilerini cihazında sakla ve yönet.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "$1 ($2) için genel anahtarınızı görüntüleyin.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "$1 için herkese açık anahtarınızı görüntüleyin.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "İzinler"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Popüler özel ağlar"
},
"portfolioSite": {
"message": "Portföy sitesi"
"portfolio": {
"message": "Portföy"
},
"preferredLedgerConnectionType": {
"message": "Tercih Edilen Kayıt Defteri bağlantı türü",
@ -2858,8 +2948,11 @@
"removeNFT": {
"message": "NFT'yi kaldır"
},
"removeNftMessage": {
"message": "NFT başarılı bir şekilde kaldırıldı!"
},
"removeSnap": {
"message": "Snap'i Kaldır"
"message": "Snap'i kaldır"
},
"removeSnapConfirmation": {
"message": "$1 snap'ini kaldırmak istediğinden emin misin?",
@ -2871,6 +2964,24 @@
"replace": {
"message": "değiştir"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Güvenlik sağlayıcısı başka bilgi paylaşmadı"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Talep kötü amaçlı olarak işaretlendi"
},
"requestMayNotBeSafe": {
"message": "Talep güvenli olmayabilir"
},
"requestMayNotBeSafeError": {
"message": "Güvenlik sağlayıcısı bilinen kötü amaçlı bir aktivite algılamadı ama devam etmek yine de güvenli olmayabilir."
},
"requestNotVerified": {
"message": "Talep doğrulanmadı"
},
"requestNotVerifiedError": {
"message": "Bu talep bir hatadan dolayı güvenlik sağlayıcısı tarafından doğrulanmadı. Dikkatli bir şekilde ilerleyin."
},
"requestsAwaitingAcknowledgement": {
"message": "onaylanmayı bekleyen talepler"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Sıfırla"
},
"resetAccount": {
"message": "Hesabı sıfırla"
},
"resetAccountDescription": {
"message": "Hesabınızı sıfırlamak işlem geçmişinizi temizler. Bu işlem, hesaplarınızdaki bakiyeyi değiştirmez veya Gizli Kurtarma İfadenizi yeniden girmenizi gerektirmez."
},
"resetWallet": {
"message": "Cüzdanı sıfırla"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Gizli Kurtarma İfadesini Göster"
},
"revealSeedWordsDescription": {
"message": "Tarayıcı değiştirirseniz veya başka bir bilgisayar kullanmaya başlarsanız hesaplarınıza erişim sağlamak için bu Gizli Kurtarma İfadesine ihtiyacınız olacaktır. Güvenli ve gizli bir yerde saklayın."
"revealSeedWordsDescription1": {
"message": "$1 $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask $1. Yani GKİ'niz size aittir.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "cüzdanınıza ve paranıza tam erişim sağlar.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "gözetimsiz bir cüzdandır"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Gizli Kurtarma İfadesi (GKİ)"
},
"revealSeedWordsText": {
"message": "Metin"
},
"revealSeedWordsWarning": {
"message": "Bu kelimeler tüm hesaplarınızı çalmak için kullanılabilir."
"message": "Ekranınıza hiç kimsenin bakmadığından emin olun. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "Bu ifadeyi hiç kimseyle PAYLAŞMAYIN!"
"revealSeedWordsWarning2": {
"message": "MetaMask Destek bölümü bunu asla talep etmez.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Tohum ifadesini ortaya çıkar"
@ -2941,11 +3068,11 @@
"message": "Harcama üst limitinize göz atın"
},
"revokeAllTokensTitle": {
"message": "Sahip olduğunuz tüm $1 için izin geri çekilsin mi?",
"message": "Tüm $1 için izin erişim ve transfer izni geri çekilsin mi?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "İzni geri çektiğinizde aşağıdaki $1 artık $2 alanınıza erişim sağlayamayacak",
"message": "Bu durumda üçüncü bir tarafın başkaca bildiride bulunmaksızın tüm $1 erişim ve transfer izni geri çekilir.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Kaydet"
},
"saveAsCsvFile": {
"message": "CSV dosyası olarak kaydet"
},
"scanInstructions": {
"message": "QR kodu kameranızın önüne getirin"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Beklediğiniz hesapları görmüyorsanız HD yoluna geçmeyi deneyin."
},
"selectProvider": {
"message": "Sağlayıcıları seç:"
},
"selectType": {
"message": "Tür Seç"
},
@ -3234,7 +3361,7 @@
"description": "This is shown when a snap encounters an error. $1 is the error message from the snap, and $2 is the error code."
},
"snapInstall": {
"message": "Snap'i Yükle"
"message": "Snap'i yükle"
},
"snapInstallWarningCheck": {
"message": "Anladığını doğrulamak için kutucuğu işaretle."
@ -3246,15 +3373,8 @@
"message": "\"$1\" için $2 anahtar erişimi veriyorsunuz. Bu iptal edilemez ve $2 hesaplarınıza ve varlıklarınıza \"$1\" kontrolü verir. İlerlemeden önce \"$1\" alanına güvendiğinizden emin olun.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Bu ek, aşağıdaki izinleri istiyor:"
},
"snapUpdate": {
"message": "Snap'i Güncelle"
},
"snapUpdateExplanation": {
"message": "$1 için daha yeni bir snap sürümü gerekli.",
"description": "$1 is the dapp that is requesting an update to the snap."
"message": "Snap'i güncelle"
},
"snaps": {
"message": "Snap'ler"
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Harcama limiti çok büyük"
},
"spendingCap": {
"message": "Harcama üst limiti"
},
"spendingCapError": {
"message": "Hata: Sadece rakam"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Bağlanmadı"
},
"staySafeWithOpenSea": {
"message": "OpenSea ile güvende kalın"
},
"step1LatticeWallet": {
"message": "Lattice1'inizi bağlayın"
},
@ -3636,7 +3762,7 @@
"message": "MetaMask ücreti"
},
"swapMetaMaskFeeDescription": {
"message": "Her defasında en iyi likidite kaynaklarından en iyi fiyatı buluyoruz. %$1 oranında bir ücret otomatik olarak bu teklife dahil edilmiştir.",
"message": "%$1 oranında bir ücret otomatik olarak bu teklife dahil edilmiştir. MetaMask'in likidite sağlayıcı bilgilerinin toplandığı yazılımı kullanma lisansı karşılığında ödersiniz.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Hizmet şartları"
},
"testFaucet": {
"message": "Test musluğu"
},
"testNetworks": {
"message": "Test ağları"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Unutulmaması gerekenler:"
},
"thisIsBasedOn": {
"message": "Bu, şu kaynaktan alınan bilgilere dayanır: "
},
"thisServiceIsExperimental": {
"message": "Bu hizmet deneyseldir"
},
"time": {
"message": "Zaman"
},
@ -3914,6 +4043,12 @@
"message": "Alıcı: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "eth_sign taleplerini kullanarak merkezi olmayan bir uygulamanın imzanızı talep etmesine izin vermek için bunu açın. eth_sign, gelişigüzel bir hash imzalamanıza olanak sağlayan açık uçlu bir imza yöntemidir ve bu da tehlikeli bir kimlik hırsızlığı riski oluşturur. eth_sign taleplerini sadece imzaladığınız şeyi okuyabiliyorsanız ve talebin çıkış yerine güveniyorsanız imzalayın."
},
"toggleEthSignField": {
"message": "eth_sign taleplerini değiştirin"
},
"toggleTestNetworks": {
"message": "Test ağlarını $1",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Token zaten eklenmiş."
},
"tokenAutoDetection": {
"message": "Otomatik token algılama"
},
"tokenContractAddress": {
"message": "Token sözleşme adresi"
},
@ -4064,10 +4202,10 @@
"message": "İşlem, $2 itibaeiyle $1 olarak artırılan tahmini gaz ücreti ile yeniden gönderildi"
},
"transactionSecurityCheck": {
"message": "İşlem güvenlik kontrolü"
"message": "İşlem güvenlik sağlayıcılarını etkinleştir"
},
"transactionSecurityCheckDescription": {
"message": "Üçüncü bir tarafın (OpenSea) tüm işlemlerinizi ve imza taleplerinizi inceleyebilmesine ve bilinen kötü amaçlı talepler konusunda sizi uyarabilmesine izin vermek için bunu açın."
"message": "İmzalanmamış işleme dahil olan riskleri ve onları imzalamadan önce imza taleplerini algılamak ve göstermek için üçüncü taraf API'lerini kullanırız. Bu hizmetler imzalanmamış işlem ve imza taleplerinize, hesap adresinize ve tercih ettiğiniz dile erişim sağlar."
},
"transactionSubmitted": {
"message": "İşlem $2 itibariyle tahmini $1 gaz ücreti ile gönderildi."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Tekrar dene"
},
"tryOur": {
"message": "Dene:"
},
"turnOnTokenDetection": {
"message": "Gelişmiş token algılamayıın"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "Toplanabilir (ERC-721) tokenlerin gönderilmesi şu anda desteklenmiyor",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "NFT (ERC-721) tokenlerin gönderilmesi şu anda desteklenmiyor",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Bu sözleşmeyi doğrulayamıyoruz. Bu adrese güvendiğinden emin ol."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "Bu URL şu anda $1 ağı tarafından kullanılıyor."
},
"useCollectibleDetection": {
"message": "NFT'leri otomatik algıla"
},
"useCollectibleDetectionDescription": {
"message": "NFT'lerin medya ve verilerinin görüntülenmesi IP adresinizin merkezi sunuculara açıklanmasına neden olabilir. Üçüncü taraf API'ler (OpenSea gibi) cüzdanınızda NFT'leri algılamak için kullanılır. Bu, hesap adresinizin bu hizmetlere açıklanmasını sağlar. Uygulamanın bu sunuculardan veri çekmesini istemiyorsanız bunu devre dışı bırakın."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Ayrıca, şunları unutmayın:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "NFT meta verileri dolandırıcılık veya kimlik hırsızlığı sitelerine bağlantılar içerebilir."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Hesabınıza herkes NFT atabilir. Cüzdanınızda otomatik olarak gösterilebilen saldırgan içerik de buna dahil olabilir."
},
"useDefault": {
"message": "Varsayılanı kullan"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Hesapları toplarız ve bakiyelerinizi göstermek için Infura'yı sorgularız. Bunu kapattığınız takdirde sadece aktif hesaplar sorgulanır. Bazı merkeziyetsiz uygulamalar siz cüzdanınızı bağlamadığınız sürece çalışmaz."
},
"useNftDetection": {
"message": "NFT'leri otomatik algıla"
},
"useNftDetectionDescription": {
"message": "Cüzdanınızdaki NFT'leri algılamak için üçüncü taraf API'leri kullanırız, yani IP adresinizin merkezi sunuculara açıklanmasına neden olabilir. Bu özelliği etkinleştirirken dikkat edilmesi gereken birkaç konu vardır."
},
"useNftDetectionDescriptionLine2": {
"message": "Hesap adresiniz üçüncü taraf API'lerinde görüntülenebilir."
},
"useNftDetectionDescriptionLine3": {
"message": "NFT meta verileri dolandırıcılık veya kimlik hırsızlığı sitelerine bağlantılar içerebilir."
},
"useNftDetectionDescriptionLine4": {
"message": "Hesabınıza herkes NFT atabilir. Cüzdanınızda otomatik olarak gösterilebilen saldırgan içerik de buna dahil olabilir."
},
"useNftDetectionDescriptionLine5": {
"message": "Uygulamanın bu hizmetlerden veri çekmesini istemiyorsanız bu özelliği kapalı bırakın."
},
"usePhishingDetection": {
"message": "Kimlik avı algılama kullan"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Görüntüle"
},
"viewAccount": {
"message": "Hesabı görüntüle"
},
"viewAllDetails": {
"message": "Tüm bilgileri görüntüle"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Sözleşme, başkaca bildiri ya da rıza olmaksızın tüm token bakiyenizi harcayabilir. Düşük bir harcama limitini özelleştirerek kendinizi koruyun.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Zayıf"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Evet"
},
"yesLetsTry": {
"message": "Evet, deneyelim"
},
"youHaveAddedAll": {
"message": "Tüm popüler ağları eklediniz. $1 daha fazla ağ gekşefedebilir veya $2 seçeneğini seçebilirsiniz",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "NFT'niz tehlikede olabilir"
},
"yourPrivateSeedPhrase": {
"message": "Özel Gizli Kurtarma İfadeniz"
"message": "Gizli Kurtarma İfadeniz"
},
"zeroGasPriceOnSpeedUpError": {
"message": "Sıfır gaz fiyatı hızlandırmada"

View File

@ -75,12 +75,6 @@
"asset": {
"message": "Актив"
},
"attemptToCancel": {
"message": "Спробувати скасувати?"
},
"attemptToCancelDescription": {
"message": "Виконання цієї спроби не гарантує скасування початкової транзакції. Якщо спроба скасування вдасться, з вас буде стягнуто зазначену вище комісію."
},
"attemptingConnect": {
"message": "Спроба підключення до розподіленої бази даних."
},
@ -130,21 +124,12 @@
"browserNotSupported": {
"message": "Ваш браузер не підтримується..."
},
"buyWithWyre": {
"message": "Купити $1 через Wyre"
},
"buyWithWyreDescription": {
"message": "Wyre дає змогу використовувати кредитну картку для внесення валюти $1 безпосередньо у свій гаманець MetaMask."
},
"bytes": {
"message": "Байти"
},
"cancel": {
"message": "Скасувати"
},
"cancellationGasFee": {
"message": "Вартість пального за скасування"
},
"cancelled": {
"message": "Скасовано"
},
@ -178,12 +163,12 @@
"connectingToGoerli": {
"message": "Підключення до тестової мережі Goerli"
},
"connectingToLineaTestnet": {
"message": "Підключення до тестової мережі Linea Goerli"
},
"connectingToMainnet": {
"message": "З'єднуємось з Головною мережею Ethereum"
},
"continueToWyre": {
"message": "Продовжити у Wyre"
},
"contractDeployment": {
"message": "Розгортання контракту"
},
@ -336,13 +321,6 @@
"general": {
"message": "Загальні"
},
"getEther": {
"message": "Отримати Ефір"
},
"getEtherFromFaucet": {
"message": "Отримайте Ether з крану за $1",
"description": "Displays network name for Ether faucet"
},
"goerli": {
"message": "Тестова мережа Goerli "
},
@ -437,6 +415,9 @@
"likeToImportTokens": {
"message": "Ви б хотіли додати ці токени?"
},
"lineatestnet": {
"message": "Тестова мережа Linea Goerli"
},
"links": {
"message": "Посилання"
},
@ -639,26 +620,15 @@
"reset": {
"message": "Скинути"
},
"resetAccount": {
"message": "Перезапустити обліковий запис"
},
"resetAccountDescription": {
"message": "Перезапуск вашого облікового запису очистить історію ваших транзакцій."
},
"restore": {
"message": "Відновити"
},
"revealSeedWords": {
"message": "Показати мнемонічні слова"
},
"revealSeedWordsDescription": {
"message": "При зміні браузера або комп'ютера, вам знадобиться seed-фраза для отримання доступу до ваших облікових записів. Збережіть її у надійному місці."
},
"revealSeedWordsWarning": {
"message": "Ці слова можуть бути використані, щоб вкрасти всі ваші облікові записи."
},
"revealSeedWordsWarningTitle": {
"message": "НЕ передавайте цю фразу нікому!"
"message": "Ці слова можуть бути використані, щоб вкрасти всі ваші облікові записи.",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "Новий RPC URL"
@ -666,9 +636,6 @@
"save": {
"message": "Зберегти"
},
"saveAsCsvFile": {
"message": "Зберегти як файл CSV"
},
"scanInstructions": {
"message": "Розташуйте QR-код перед вашою камерою"
},
@ -804,9 +771,6 @@
"terms": {
"message": "Умови використання"
},
"testFaucet": {
"message": "Тестовий кран"
},
"tips": {
"message": "Чайові"
},
@ -925,9 +889,6 @@
"userName": {
"message": "Ім’я користувача"
},
"viewAccount": {
"message": "Переглянути обліковий запис"
},
"viewContact": {
"message": "Переглянути контакт"
},
@ -937,9 +898,6 @@
"welcomeBack": {
"message": "З поверненням!"
},
"yesLetsTry": {
"message": "Так, давайте спробуємо"
},
"youNeedToAllowCameraAccess": {
"message": "Вам потрібно дозволити доступ до камери, щоб користуватись цією функцією."
},

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "Phí ưu tiên (hay còn được gọi là \"phí khích lệ thợ đào\") được chuyển trực tiếp cho các thợ đào và khuyến khích họ ưu tiên giao dịch của bạn."
},
"affirmAgree": {
"message": "Tôi đồng ý"
},
"airgapVault": {
"message": "AirGap Vault"
},
@ -332,6 +329,9 @@
"message": "Cho phép $1 rút và chi tiêu tối đa số tiền sau đây:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "Nhớ luôn tự thẩm định trước khi phê duyệt bất kỳ yêu cầu nào."
},
"amount": {
"message": "Số tiền"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "Phê duyệt giới hạn chi tiêu"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "Phê duyệt"
},
"approveSpendingCap": {
"message": "Duyệt hạn mức chi tiêu $1",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "Điều này cho phép bên thứ ba được quyền truy cập và chuyển các NFT sau đây mà không cần thông báo thêm cho đến khi bạn thu hồi quyền truy cập của họ."
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "Nếu bạn cố gắng gửi tài sản trực tiếp từ mạng này sang mạng khác, bạn có thể bị mất tài sản vĩnh viễn. Hãy nhớ sử dụng cầu nối."
},
"attemptToCancel": {
"message": "Cố gắng hủy?"
},
"attemptToCancelDescription": {
"message": "Việc gửi lần thử này không đảm bảo rằng giao dịch gốc của bạn sẽ được hủy. Nếu lần hủy này thành công, bạn sẽ chịu phí giao dịch nêu ở trên."
},
"attemptingConnect": {
"message": "Đang cố gắng kết nối với chuỗi khối."
},
@ -418,7 +420,7 @@
"message": "Tự động phát hiện token"
},
"autoDetectTokensDescription": {
"message": "Chúng tôi sử dụng các API của bên thứ ba để phát hiện và hiển thị các token mới được gửi đến ví của bạn. Hãy tắt nếu bạn không muốn ứng dụng lấy dữ liệu từ các dịch vụ đó. $1",
"message": "Chúng tôi sử dụng API của bên thứ ba để phát hiện và hiển thị các token mới được gửi đến ví của bạn. Hãy tắt nếu bạn không muốn ứng dụng tự động lấy dữ liệu từ các dịch vụ đó. $1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "Phiên Bản MetaMask Beta"
},
"betaPortfolioSite": {
"message": "trang web danh mục đầu tư beta"
},
"betaTerms": {
"message": "Điều khoản Sử dụng Beta"
},
@ -535,38 +534,9 @@
"message": "Mua $1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "Mua $1 bằng Coinbase Pay",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "Bạn có thể dễ dàng mua hoặc chuyển khoản tiền điện tử bằng tài khoản Coinbase của mình.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "Mua $1 bằng MoonPay",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay hỗ trợ các phương thức thanh toán phổ biến, bao gồm Visa, Mastercard, Apple / Google / Samsung Pay và chuyển khoản ngân hàng tại hơn 145 quốc gia. Nạp token vào tài khoản MetaMask của bạn."
},
"buyCryptoWithTransak": {
"message": "Mua $1 bằng Transak",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak hỗ trợ thẻ tín dụng và ghi nợ, Apple Pay, MobiKwik và chuyển khoản ngân hàng (tùy thuộc vào vị trí) tại hơn 100 quốc gia. Nạp trực tiếp $1 vào tài khoản MetaMask của bạn.",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "Mua ngay"
},
"buyWithWyre": {
"message": "Mua $1 qua Wyre"
},
"buyWithWyreDescription": {
"message": "Dễ dàng tham gia đối với các giao dịch mua lên đến $1.000. Xác minh mua hàng giới hạn cao và tương tác nhanh. Hỗ trợ Thẻ Tín dụng/Ghi nợ, Apple Pay, Chuyển khoản Ngân hàng. Hiện có tại hơn 100 quốc gia. Nạp token vào Tài khoản MetaMask của bạn"
},
"bytes": {
"message": "Byte"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "Hủy hoán đổi miễn phí"
},
"cancellationGasFee": {
"message": "Phí gas hủy"
},
"cancelled": {
"message": "Đã hủy"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "Bạn cần sử dụng MetaMask trên Google Chrome để kết nối với Ví cứng của bạn."
},
"clear": {
"message": "Xóa"
},
"clearActivity": {
"message": "Xóa dữ liệu hoạt động và số chỉ dùng một lần"
},
"clearActivityButton": {
"message": "Xóa dữ liệu thẻ hoạt động"
},
"clearActivityDescription": {
"message": "Thao tác này sẽ đặt lại số chỉ dùng một lần của tài khoản và xóa dữ liệu khỏi thẻ hoạt động trong ví của bạn. Chỉ có tài khoản và mạng hiện tại bị ảnh hưởng. Số dư và các giao dịch đến của bạn sẽ không thay đổi."
},
"clickToConnectLedgerViaWebHID": {
"message": "Nhấn vào đây để kết nối với thiết bị Ledger của bạn qua WebHID",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "Đóng"
},
"collectibleAddFailedMessage": {
"message": "Không thể thêm NFT vì thông tin quyền sở hữu không trùng khớp. Đảm bảo bạn đã nhập đúng thông tin."
},
"collectibleAddressError": {
"message": "Token này là một NFT. Thêm vào $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "Xác nhận"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "Đang kết nối với mạng thử nghiệm Goerli"
},
"connectingToLineaTestnet": {
"message": "Đang kết nối với mạng thử nghiệm Linea Goerli"
},
"connectingToMainnet": {
"message": "Đang kết nối với mạng chính thức của Ethereum"
},
@ -755,18 +733,6 @@
"continue": {
"message": "Tiếp tục"
},
"continueToCoinbasePay": {
"message": "Tiếp tục đến Coinbase Pay"
},
"continueToMoonPay": {
"message": "Tiếp tục đến MoonPay"
},
"continueToTransak": {
"message": "Tiếp tục đến Transak"
},
"continueToWyre": {
"message": "Tiếp tục chuyển đến Wyre"
},
"contract": {
"message": "Hợp đồng"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "Đã sao chép!"
"message": "Đã sao chép."
},
"copyAddress": {
"message": "Sao chép địa chỉ vào bộ nhớ đệm"
@ -842,9 +808,19 @@
"createPassword": {
"message": "Tạo mật khẩu"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "Quy đổi tiền"
},
"currencyRateCheckToggle": {
"message": "Hiển thị trình kiểm tra giá token và số dư"
},
"currencyRateCheckToggleDescription": {
"message": "Chúng tôi sử dụng API của $1 và $2 để hiện thị giá token và số dư của bạn. $3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "Ký hiệu tiền tệ"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "Nạp"
},
"depositCrypto": {
"message": "Nạp $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "Tìm hiểu thêm"
},
@ -992,15 +964,108 @@
"description": {
"message": "Mô tả"
},
"desktopConnectionCriticalErrorDescription": {
"message": "Lỗi này có thể không xảy ra liên tục, vì vậy hãy thử khởi động lại tiện ích mở rộng hoặc tắt MetaMask Máy tính để bàn."
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask gặp sự cố khi khởi động"
},
"desktopConnectionLostErrorDescription": {
"message": "Đảm bảo bạn đã thiết lập và chạy ứng dụng máy tính để bàn hoặc tắt MetaMask Máy tính để bàn."
},
"desktopConnectionLostErrorTitle": {
"message": "Đã mất kết nối với MetaMask Máy tính để bàn"
},
"desktopDisableButton": {
"message": "Tắt ứng dụng Máy tính để bàn"
},
"desktopDisableErrorCTA": {
"message": "Tắt MetaMask Máy tính để bàn"
},
"desktopEnableButton": {
"message": "Bật ứng dụng Máy tính để bàn"
},
"desktopEnableButtonDescription": {
"message": "Nhấn để chạy tất cả các tiến trình chạy nền trong ứng dụng máy tính để bàn."
},
"desktopErrorNavigateSettingsCTA": {
"message": "Quay lại trang Cài đặt"
},
"desktopErrorRestartMMCTA": {
"message": "Khởi động lại MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "Tải về MetaMask Máy tính để bàn"
},
"desktopNotFoundErrorDescription1": {
"message": "Đảm bảo bạn đã thiết lập và chạy ứng dụng máy tính để bàn."
},
"desktopNotFoundErrorDescription2": {
"message": "Nếu bạn chưa cài đặt ứng dụng máy tính để bàn, hãy tải về trên trang web MetaMask."
},
"desktopNotFoundErrorTitle": {
"message": "Không tìm thấy MetaMask Máy tính để bàn"
},
"desktopOpenOrDownloadCTA": {
"message": "Mở MetaMask Máy tính để bàn"
},
"desktopOutdatedErrorCTA": {
"message": "Cập nhật MetaMask Máy tính để bàn"
},
"desktopOutdatedErrorDescription": {
"message": "Cần nâng cấp ứng dụng MetaMask Máy tính để bàn của bạn."
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask Máy tính để bàn đã cũ"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "Cập nhật MetaMask Tiện ích mở rộng"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "Cần nâng cấp MetaMask Tiện ích mở rộng của bạn."
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask Tiện ích mở rộng đã cũ"
},
"desktopPageDescription": {
"message": "Nếu ghép nối thành công, tiện ích mở rộng sẽ khởi động lại và bạn sẽ phải nhập lại mật khẩu."
},
"desktopPageSubTitle": {
"message": "Mở MetaMask Máy tính để bàn và nhập mã này"
},
"desktopPageTitle": {
"message": "Ghép nối với Máy tính để bàn"
},
"desktopPairedWarningDeepLink": {
"message": "Vào phần Cài đặt trong MetaMask Máy tính để bàn"
},
"desktopPairedWarningDescription": {
"message": "Nếu bạn muốn bắt đầu một ghép nối mới, vui lòng xóa kết nối hiện tại."
},
"desktopPairedWarningTitle": {
"message": "MetaMask Máy tính để bàn đã được ghép nối"
},
"desktopPairingExpireMessage": {
"message": "Mã hết hạn sau $1 giây"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "Quay lại trang chủ MetaMask"
},
"desktopUnexpectedErrorDescription": {
"message": "Kiểm tra MetaMask Máy tính để bàn để khôi phục kết nối"
},
"desktopUnexpectedErrorTitle": {
"message": "Đã xảy ra sự cố..."
},
"details": {
"message": "Chi tiết"
},
"directDepositCrypto": {
"message": "Nạp trực tiếp $1"
},
"directDepositCryptoExplainer": {
"message": "Nếu bạn đã có một ít $1, nạp trực tiếp là cách nhanh nhất để nhận $1 trong ví mới."
},
"disabledGasOptionToolTipMessage": {
"message": "“$1” bị vô hiệu hóa vì không đạt mức tăng tối thiểu 10% so với phí gas ban đầu.",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "Sử dụng API của OpenSea để tìm nạp dữ liệu NFT. Tính năng tự động phát hiện NFT dựa vào API của OpenSea và sẽ không khả dụng nếu tính năng này bị tắt."
},
"enableOpenSeaSecurityProvider": {
"message": "Kích hoạt nhà cung cấp bảo mật"
},
"enableSmartTransactions": {
"message": "Bật giao dịch thông minh"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "Xem trên Etherscan"
},
"expandExperience": {
"message": "Mở rộng trải nghiệm web3 của bạn"
},
"expandView": {
"message": "Mở rộng cửa sổ xem"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "Xem chi tiết",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "Đã thêm vào",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "Đã dùng gas"
},
"gdprMessage": {
"message": "Đây là dữ liệu tổng hợp, do đó ở trạng thái ẩn danh để phục vụ cho mục đích của Quy định chung về bảo vệ dữ liệu (Liên minh Châu Âu) 2016/679. Để biết thêm thông tin liên quan đến các phương thức bảo vệ quyền riêng tư của chúng tôi, vui lòng xem $1 của chúng tôi.",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "Chính sách quyền riêng tư tại đây",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "Chung"
},
"getEther": {
"message": "Nhận Ether"
},
"getEtherFromFaucet": {
"message": "Nhận Ether từ một vòi dành cho mạng $1.",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "Nhận cảnh báo từ OpenSea bất cứ khi nào bạn nhận được một yêu cầu độc hại đã biết."
},
"goBack": {
"message": "Quay Lại"
@ -1545,6 +1598,32 @@
"history": {
"message": "Lịch sử"
},
"holdToReveal": {
"message": "Giữ để hiển thị Cụm từ khôi phục bí mật"
},
"holdToRevealContent1": {
"message": "Cụm từ khôi phục bí mật của bạn cung cấp $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "toàn quyền truy cập vào ví và tiền của bạn.",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "Không chia sẻ với bất kỳ ai. $1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "Bộ phận Hỗ trợ của MetaMask sẽ không yêu cầu điều này,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "nhưng những kẻ lừa đảo qua mạng thì có.",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "Đảm bảo an toàn cho Cụm từ khôi phục bí mật của bạn"
},
"ignoreAll": {
"message": "Bỏ qua tất cả"
},
@ -1577,7 +1656,7 @@
"message": "Nhập trang NFT"
},
"importNFTTokenIdToolTip": {
"message": "ID của bộ sưu tập là một mã nhận dạng duy nhất vì không có hai NFT nào giống hệt nhau. Một lần nữa, trên OpenSea, mã số này nằm bên dưới mục 'Chi tiết'. Hãy ghi chú lại hoặc sao chép vào bộ nhớ đệm."
"message": "ID của NFT là một mã nhận dạng duy nhất vì không có hai NFT nào giống hệt nhau. Một lần nữa, trên OpenSea, mã số này nằm bên dưới mục 'Chi tiết'. Hãy ghi chú lại hoặc sao chép vào bộ nhớ đệm."
},
"importNFTs": {
"message": "Nhập NFT"
@ -1724,9 +1803,6 @@
"message": "Tập tin JSON",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "để giữ lại thẻ trên token và NFT của bạn trong các tài khoản và mạng."
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "Đã kết nối lần cuối"
},
"lastPriceSold": {
"message": "Giá bán gần nhất"
},
"lastSold": {
"message": "Đã bán gần nhất"
},
"learnCancelSpeeedup": {
"message": "Tìm hiểu cách $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "Bạn có muốn nhập những token này không?"
},
"lineatestnet": {
"message": "Mạng thử nghiệm Linea Goerli"
},
"link": {
"message": "Liên kết"
},
@ -1867,15 +1952,12 @@
"message": "Tạo một giao dịch hoán đổi mới"
},
"makeSureNoOneWatching": {
"message": "Đảm bảo không có ai đang nhìn màn hình của bạn",
"message": "Đảm bảo không có ai đang nhìn",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "Dữ liệu không đúng định dạng"
},
"manageSnaps": {
"message": "Quản lý các Snap đã cài đặt"
},
"max": {
"message": "Tối đa"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "Phiên bản MetaMask"
},
"metametricsCommitmentsAllowOptOut": {
"message": "Luôn cho phép bạn chọn không tham gia thông qua phần Cài đặt"
},
"metametricsCommitmentsBoldNever": {
"message": "Không bao giờ",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask sẽ.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 thu thập địa chỉ IP đầy đủ của bạn",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 thu thập mã khóa, địa chỉ, giao dịch, số dư, mã băm hoặc bất kỳ thông tin cá nhân nào",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 bán dữ liệu để thu lợi. Tuyệt đối không bao giờ!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "Gửi các lượt nhấn và xem trang đã được ẩn danh"
},
"metametricsHelpImproveMetaMask": {
"message": "Giúp chúng tôi cải thiện MetaMask"
},
"metametricsOptInDescription": {
"message": "MetaMask muốn thu thập dữ liệu sử dụng để hiểu rõ hơn về cách người dùng tương tác với tiện ích. Chúng tôi sẽ dùng dữ liệu này để liên tục cải thiện độ hữu ích và trải nghiệm người dùng trên sản phẩm của mình và hệ sinh thái Ethereum."
"metrics": {
"message": "Chỉ số"
},
"mismatchedChainLinkText": {
"message": "xác minh thông tin về mạng",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "Tính năng 'Đồng bộ với tiện ích' tạm thời bị tắt. Nếu bạn muốn sử dụng ví tiện ích trên thiết bị di động MetaMask, thì trên ứng dụng di động: hãy quay lại các tùy chọn thiết lập ví và chọn phương án 'Nhập bằng Cụm Mật Khẩu Khôi Phục Bí Mật'. Sử dụng cụm mật khẩu bí mật của ví tiện ích để nhập ví của bạn vào thiết bị di động."
},
"moreComingSoon": {
"message": "Sắp có thêm..."
},
"mustSelectOne": {
"message": "Phải chọn ít nhất 1 token."
},
@ -1992,10 +2049,6 @@
"message": "Token gốc của mạng này là $1. Token này được dùng làm phí gas.",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "Để tương tác với các ứng dụng phi tập trung bằng MetaMask, bạn sẽ cần $1 trong ví.",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "Bạn cần trợ giúp? Liên hệ $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "Tài khoản $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "Bộ sưu tập đã được thêm thành công!"
},
"newContact": {
"message": "Địa chỉ liên hệ mới"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "“$1” đã được thêm thành công!"
},
"newNftAddedMessage": {
"message": "NFT đã được thêm thành công!"
},
"newPassword": {
"message": "Mật khẩu mới (tối thiểu 8 ký tự)"
},
@ -2138,8 +2191,18 @@
"message": "Số chỉ dùng một lần lớn hơn số chỉ dùng một lần gợi ý là $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "NFT"
"nftAddFailedMessage": {
"message": "Không thể thêm NFT vì thông tin quyền sở hữu không trùng khớp. Đảm bảo bạn đã nhập đúng thông tin."
},
"nftAddressError": {
"message": "Token này là một NFT. Thêm vào $1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "Tuyên bố miễn trừ trách nhiệm: MetaMask lấy tập tin phương tiện từ URL nguồn. URL này đôi khi bị thay đổi bởi thị trường mà NFT được đào."
},
"nftOptions": {
"message": "Tùy chọn NFT"
},
"nftTokenIdPlaceholder": {
"message": "Nhập mã token"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "Chưa cài đặt Snap nào"
},
"noThanks": {
"message": "Không, cảm ơn"
},
"noThanksVariant2": {
"message": "Không, cảm ơn."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "Không đủ gas"
},
"notNow": {
"message": "Không phải bây giờ"
},
"notifications": {
"message": "Thông báo"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "Hiển thị cài đặt Bảo mật và Quyền riêng tư"
},
"notifications17Description": {
"message": "Bản cập nhật này cung cấp nhiều tùy chọn hơn để bạn có thể kiểm soát quyền riêng tư của mình tốt hơn. Chúng tôi đã minh bạch hơn về cách thu thập dữ liệu và cung cấp các tùy chọn chia sẻ dữ liệu rõ ràng hơn. Hãy thay đổi tùy chọn của bạn hoặc xóa dữ liệu sử dụng tiện ích mở rộng thông qua cài đặt Bảo mật và Quyền riêng tư."
},
"notifications17Title": {
"message": "Cài đặt Bảo mật và Quyền riêng tư"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "Mở trên trình khám phá khối"
},
"openSea": {
"message": "OpenSea (Beta)"
},
"openSeaAltText": {
"message": "Nhà cung cấp bảo mật OpenSea"
},
"openSeaDescription": {
"message": "OpenSea là nhà cung cấp bảo mật đầu tiên cho tính năng này. Sắp có thêm nhiều nhà cung cấp khác!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "Không bắt buộc"
},
"optionalWithParanthesis": {
"message": "(Không bắt buộc)"
},
"options": {
"message": "Tùy chọn"
},
"or": {
"message": "hoặc"
},
@ -2564,6 +2639,9 @@
"message": "snap khác",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "Trình duyệt của bạn đã cũ. Nếu không cập nhật trình duyệt, bạn sẽ không thể nhận các bản vá bảo mật và tính năng mới từ MetaMask."
},
"padlock": {
"message": "Ổ khóa"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "Đã thu hồi trong bản cập nhật này"
},
"permission_accessNamedSnap": {
"message": "Kết nối với $1.",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "Truy cập Internet.",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "Kết nối với Snap $1.",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "Lên lịch và thực hiện các hành động theo định kỳ.",
@ -2671,6 +2753,10 @@
"message": "Kiểm soát các tài khoản và tài sản \"$1\" của bạn.",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "Kiểm soát các tài khoản và tài sản $1 của bạn.",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "Lưu trữ và quản lý dữ liệu trong thiết bị.",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "Xem khóa công khai của bạn cho $1 ($2).",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "Xem khóa công khai của bạn cho $1.",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "Quyền"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "Mạng tùy chỉnh phổ biến"
},
"portfolioSite": {
"message": "Trang web danh mục đầu tư"
"portfolio": {
"message": "Danh mục đầu tư"
},
"preferredLedgerConnectionType": {
"message": "Dạng kết nối Ledger ưu tiên",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "Xóa NFT"
},
"removeNftMessage": {
"message": "NFT đã được xóa thành công!"
},
"removeSnap": {
"message": "Xóa Snap"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "thay thế"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "Nhà cung cấp bảo mật chưa chia sẻ thêm thông tin chi tiết"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "Yêu cầu bị gắn cờ độc hại"
},
"requestMayNotBeSafe": {
"message": "Yêu cầu có thể không an toàn"
},
"requestMayNotBeSafeError": {
"message": "Nhà cung cấp bảo mật không phát hiện thấy bất kỳ hoạt động độc hại đã biết nào, nhưng vẫn có thể không an toàn nếu tiếp tục."
},
"requestNotVerified": {
"message": "Yêu cầu chưa được xác minh"
},
"requestNotVerifiedError": {
"message": "Do có lỗi, yêu cầu này đã không được nhà cung cấp bảo mật xác minh. Hãy thực hiện cẩn thận."
},
"requestsAwaitingAcknowledgement": {
"message": "yêu cầu đang chờ xác nhận"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "Đặt lại"
},
"resetAccount": {
"message": "Đặt lại tài khoản"
},
"resetAccountDescription": {
"message": "Nếu đặt lại tài khoản của bạn, toàn bộ lịch sử giao dịch sẽ bị xóa. Việc này sẽ không làm thay đổi số dư trong tài khoản của bạn hoặc yêu cầu bạn phải nhập lại Cụm mật khẩu khôi phục bí mật."
},
"resetWallet": {
"message": "Đặt lại ví"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "Hiện Cụm mật khẩu khôi phục bí mật"
},
"revealSeedWordsDescription": {
"message": "Nếu thay đổi trình duyệt hoặc chuyển máy tính, bạn sẽ cần Cụm mật khẩu khôi phục bí mật này để truy cập tài khoản của mình. Hãy lưu Cụm mật khẩu khôi phục bí mật này ở nơi an toàn và bí mật."
"revealSeedWordsDescription1": {
"message": "$1 cung cấp $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask là một $1. Có nghĩa bạn là người sở hữu Cụm từ khôi phục bí mật của bạn.",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "toàn quyền truy cập vào ví và tiền của bạn.\n"
},
"revealSeedWordsNonCustodialWallet": {
"message": "ví không giám hộ"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "Cụm từ khôi phục bí mật (SRP)"
},
"revealSeedWordsText": {
"message": "Văn bản"
},
"revealSeedWordsWarning": {
"message": "Kẻ xấu có thể dùng các từ này để đánh cắp tất cả các tài khoản của bạn."
"message": "Đảm bảo không có ai đang nhìn vào màn hình của bạn. $1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "KHÔNG chia sẻ cụm mật khẩu này với bất kỳ ai!"
"revealSeedWordsWarning2": {
"message": "Bộ phận Hỗ trợ của MetaMask sẽ không bao giờ yêu cầu điều này.",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "Hiện cụm từ khôi phục bí mật"
@ -2941,11 +3068,11 @@
"message": "Xem lại hạn mức chi tiêu của bạn"
},
"revokeAllTokensTitle": {
"message": "Thu hồi quyền truy cập vào tất cả $1 của bạn?",
"message": "Thu hồi quyền truy cập và chuyển tất cả $1 của bạn?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "Bằng cách thu hồi quyền truy cập, $1 sau đây sẽ không thể truy cập vào $2 của bạn nữa",
"message": "Hành động này sẽ thu hồi quyền cho phép bên thứ ba truy cập và chuyển tất cả $1 của bạn mà không cần thông báo thêm.",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "Lưu"
},
"saveAsCsvFile": {
"message": "Lưu dưới dạng tập tin CSV"
},
"scanInstructions": {
"message": "Đặt mã QR vào trước máy ảnh"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "Nếu bạn không thấy các tài khoản như mong đợi, hãy chuyển sang đường dẫn HD."
},
"selectProvider": {
"message": "Chọn nhà cung cấp:"
},
"selectType": {
"message": "Chọn loại"
},
@ -3246,16 +3373,9 @@
"message": "Bạn đang cấp quyền truy cập khóa $2 cho Snap \"$1\". Hành động này không thể hủy bỏ và sẽ cấp quyền kiểm soát tài khoản và tài sản $2 của bạn cho \"$1\". Đảm bảo bạn tin tưởng \"$1\" trước khi tiếp tục.",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "Snap này đang yêu cầu các quyền sau:"
},
"snapUpdate": {
"message": "Cập nhật Snap"
},
"snapUpdateExplanation": {
"message": "$1 cần một phiên bản Snap mới hơn.",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snap"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "Giới hạn chi tiêu quá lớn"
},
"spendingCap": {
"message": "Hạn mức chi tiêu"
},
"spendingCapError": {
"message": "Lỗi: Chỉ nhập số"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "Chưa kết nối"
},
"staySafeWithOpenSea": {
"message": "Đảm bảo an toàn với OpenSea"
},
"step1LatticeWallet": {
"message": "Kết nối với Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "Phí của MetaMask"
},
"swapMetaMaskFeeDescription": {
"message": "Chúng tôi luôn tìm giá tốt nhất từ các nguồn thanh khoản hàng đầu. Phí $1% được tự động tính vào báo giá này.",
"message": "Khoản phí $1% sẽ tự động được tính vào báo giá này. Bạn trả tiền để đổi lấy giấy phép sử dụng phần mềm tổng hợp thông tin từ nhà cung cấp thanh khoản của MetaMask.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "Điều khoản dịch vụ"
},
"testFaucet": {
"message": "Vòi thử nghiệm"
},
"testNetworks": {
"message": "Mạng thử nghiệm"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "Những điều cần lưu ý:"
},
"thisIsBasedOn": {
"message": "Điều này dựa trên thông tin từ "
},
"thisServiceIsExperimental": {
"message": "Đây là dịch vụ thử nghiệm"
},
"time": {
"message": "Thời gian"
},
@ -3914,6 +4043,12 @@
"message": "Đến: $1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "Bật tính năng này để cho phép các dapp yêu cầu chữ ký của bạn bằng các yêu cầu eth_sign. eth_sign là một phương thức ký mở rộng cho phép bạn ký một hàm băm tùy ý, điều này khiến nó trở thành một rủi ro lừa đảo nguy hiểm. Chỉ ký các yêu cầu eth_sign nếu bạn có thể đọc được những gì bạn đang ký và tin tưởng vào nguồn gốc của yêu cầu."
},
"toggleEthSignField": {
"message": "Bật/tắt yêu cầu eth_sign"
},
"toggleTestNetworks": {
"message": "$1 mạng thử nghiệm",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "Đã thêm token."
},
"tokenAutoDetection": {
"message": "Tự động phát hiện token"
},
"tokenContractAddress": {
"message": "Địa chỉ hợp đồng token"
},
@ -4064,10 +4202,10 @@
"message": "Đã gửi lại giao dịch với mức phí gas ước tính tăng lên $1 lúc $2"
},
"transactionSecurityCheck": {
"message": "Kiểm tra bảo mật giao dịch"
"message": "Kích hoạt nhà cung cấp bảo mật giao dịch"
},
"transactionSecurityCheckDescription": {
"message": "Bật tính năng này để cho phép bên thứ ba (OpenSea) xem xét tất cả các giao dịch và yêu cầu chữ ký của bạn, đồng thời cảnh báo bạn về các yêu cầu độc hại đã biết."
"message": "Chúng tôi sử dụng API của bên thứ ba để phát hiện và hiển thị những rủi ro liên quan đến các yêu cầu chữ ký và giao dịch chưa ký trước khi bạn ký. Những dịch vụ này sẽ có quyền truy cập vào các yêu cầu chữ ký và giao dịch chưa ký, địa chỉ tài khoản và ngôn ngữ yêu thích của bạn."
},
"transactionSubmitted": {
"message": "Đã gửi giao dịch với mức phí gas ước tính $1 lúc $2."
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "Thử lại"
},
"tryOur": {
"message": "Thử ngay"
},
"turnOnTokenDetection": {
"message": "Bật phát hiện token nâng cao"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "Hiện không hỗ trợ gửi token sưu tập (ERC-721)",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "Hiện không hỗ trợ gửi token NFT (ERC-721)",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "Chúng tôi không thể xác minh hợp đồng này. Hãy chắc chắn bạn tin tưởng địa chỉ này."
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "Mạng $1 hiện đang sử dụng URL này."
},
"useCollectibleDetection": {
"message": "Tự động phát hiện NFT"
},
"useCollectibleDetectionDescription": {
"message": "Việc hiển thị nội dung đa phương tiện và dữ liệu NFT có thể làm lộ địa chỉ IP của bạn cho các máy chủ tập trung. API của bên thứ ba (như OpenSea) được dùng để phát hiện NFT trong ví của bạn. Điều này sẽ làm lộ địa chỉ tài khoản của bạn với các dịch vụ đó. Hãy tắt tính năng này nếu bạn không muốn ứng dụng lấy dữ liệu từ các dịch vụ đó."
},
"useCollectibleDetectionDescriptionLine2": {
"message": "Ngoài ra, hãy lưu ý rằng:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "Siêu dữ liệu NFT có thể chứa liên kết dẫn đến các trang web lừa đảo."
},
"useCollectibleDetectionDescriptionLine4": {
"message": "Bất kỳ ai cũng có thể gửi NFT vào tài khoản của bạn. Điều này có thể khiến nội dung xúc phạm tự động hiển thị trong ví của bạn."
},
"useDefault": {
"message": "Sử dụng mặc định"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "Chúng tôi xử lý hàng loạt tài khoản và kiểm tra với Infura để hiển thị các số dư tài khoản của bạn một cách nhanh chóng. Nếu bạn tắt tính năng này, chỉ những tài khoản đang hoạt động mới được truy vấn. Một số dapp sẽ không hoạt động trừ khi bạn kết nối với ví của mình."
},
"useNftDetection": {
"message": "Tự động phát hiện NFT"
},
"useNftDetectionDescription": {
"message": "Chúng tôi sử dụng API của bên thứ ba để phát hiện NFT trong ví của bạn, điều này có thể làm lộ địa chỉ IP của bạn cho các máy chủ tập trung. Có một vài điều cần thận trọng khi kích hoạt tính năng này."
},
"useNftDetectionDescriptionLine2": {
"message": "Các API của bên thứ ba có thể xem được địa chỉ tài khoản của bạn."
},
"useNftDetectionDescriptionLine3": {
"message": "Siêu dữ liệu NFT có thể chứa liên kết dẫn đến các trang web lừa đảo."
},
"useNftDetectionDescriptionLine4": {
"message": "Bất kỳ ai cũng có thể gửi NFT vào tài khoản của bạn. Điều này có thể khiến nội dung xúc phạm tự động hiển thị trong ví của bạn."
},
"useNftDetectionDescriptionLine5": {
"message": "Tắt tính năng này nếu bạn không muốn ứng dụng lấy dữ liệu từ các dịch vụ đó."
},
"usePhishingDetection": {
"message": "Sử dụng tính năng phát hiện lừa đảo"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "Xem"
},
"viewAccount": {
"message": "Xem tài khoản"
},
"viewAllDetails": {
"message": "Xem toàn bộ chi tiết"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 Hợp đồng có thể chi tiêu toàn bộ số dư token của bạn mà không cần thông báo hoặc chấp thuận. Hãy tự bảo vệ chính mình bằng cách chỉnh hạn mức chi tiêu thấp hơn.",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "Yếu"
@ -4372,9 +4507,6 @@
"yes": {
"message": "Có"
},
"yesLetsTry": {
"message": "Có, hãy thử"
},
"youHaveAddedAll": {
"message": "Bạn đã thêm tất cả các mạng phổ biến. Bạn có thể khám phá thêm nhiều mạng khác $1 Hoặc bạn có thể $2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"
@ -4392,7 +4524,7 @@
"message": "NFT của bạn có thể gặp rủi ro"
},
"yourPrivateSeedPhrase": {
"message": "Cụm mật khẩu khôi phục bí mật riêng tư của bạn"
"message": "Cụm từ khôi phục bí mật của bạn"
},
"zeroGasPriceOnSpeedUpError": {
"message": "Giá gas bằng 0 khi tăng tốc"

View File

@ -290,9 +290,6 @@
"advancedPriorityFeeToolTip": {
"message": "优先费(又称“矿工费”)直接向矿工支付,激励他们优先处理您的交易。"
},
"affirmAgree": {
"message": "我同意"
},
"airgapVault": {
"message": "AirGap Vault"
},
@ -332,6 +329,9 @@
"message": "允许 $1 提取和消费最高以下金额:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"alwaysBeSureTo": {
"message": "在批准任何请求之前,始终确保执行自身尽职调查。"
},
"amount": {
"message": "数额"
},
@ -351,6 +351,10 @@
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "批准消费限额"
},
@ -367,6 +371,10 @@
"approveButtonText": {
"message": "批准"
},
"approveSpendingCap": {
"message": "批准 $1 支出上限",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "这允许第三方访问和转移以下 NFT而无需另行通知直到您撤销其访问权限。"
},
@ -399,12 +407,6 @@
"attemptSendingAssets": {
"message": "如果您试图将资产从一个网络直接发送到另一个网络,这可能会导致永久的资产损失。必须使用桥来进行。"
},
"attemptToCancel": {
"message": "尝试取消吗?"
},
"attemptToCancelDescription": {
"message": "提交此尝试不能保证将会取消您的初始交易。如果取消尝试成功,将向您收取以上交易费。"
},
"attemptingConnect": {
"message": "正在尝试连接到区块链。"
},
@ -418,7 +420,7 @@
"message": "自动检测代币"
},
"autoDetectTokensDescription": {
"message": "我们使用第三方API来检测和显示发送到您钱包的新代币。如果您不希望该应用程序从这些服务中提取数据请将其关闭。$1",
"message": "我们使用第三方 API 来检测和显示发送到您钱包的新代币。如果您不希望该应用程序从这些服务中提取数据,请将其关闭。$1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
@ -479,9 +481,6 @@
"betaMetamaskVersion": {
"message": "MetaMask 测试版本"
},
"betaPortfolioSite": {
"message": "投资组合网站测试版"
},
"betaTerms": {
"message": "测试版使用条款"
},
@ -535,38 +534,9 @@
"message": "购买$1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyCryptoWithCoinbasePay": {
"message": "用Coinbase Pay购买$1",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithCoinbasePayDescription": {
"message": "您可以使用Coinbase账户轻松购买或转移加密货币。",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyCryptoWithMoonPay": {
"message": "用MoonPay购买$1",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithMoonPayDescription": {
"message": "MoonPay支持热门的支付方式包括Visa、万事达卡、Apple / Google / Samsung Pay以及超过145个国家/地区的银行转账。代币会被存入您的MetaMask账户。"
},
"buyCryptoWithTransak": {
"message": "用Transak购买$1",
"description": "$1 represents the cypto symbol to be purchased"
},
"buyCryptoWithTransakDescription": {
"message": "Transak在超过100个国家/地区支持信用卡和借记卡、Apple Pay、MobiKwik和银行转账取决于地点。$1会被直接存入您的MetaMask账户。",
"description": "$1 represents the crypto symbol to be purchased"
},
"buyNow": {
"message": "立即购买"
},
"buyWithWyre": {
"message": "使用Wyre购买$1"
},
"buyWithWyreDescription": {
"message": "购买不超过$1000可以轻松开通。快速交互式上限购买验证。支持借记卡/信用卡、Apple Pay、银行转账。适用于100多个国家。代币存入您的MetaMask账户"
},
"bytes": {
"message": "字节"
},
@ -600,9 +570,6 @@
"cancelSwapForFree": {
"message": "免费取消兑换"
},
"cancellationGasFee": {
"message": "取消燃料费"
},
"cancelled": {
"message": "已取消"
},
@ -629,6 +596,18 @@
"chromeRequiredForHardwareWallets": {
"message": "您需要在 Google Chrome 上使用 MetaMask 以连接到您的硬件钱包。"
},
"clear": {
"message": "清除"
},
"clearActivity": {
"message": "清除活动和nonce数据"
},
"clearActivityButton": {
"message": "清除活动选项卡数据"
},
"clearActivityDescription": {
"message": "这将会重置账户的nonce并删除钱包中的活动选项卡数据。只有当前账户和网络会受到影响。您的余额和传入的交易不会改变。"
},
"clickToConnectLedgerViaWebHID": {
"message": "点击这里以通过 WebHID 连接您的 Ledger",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
@ -639,12 +618,8 @@
"close": {
"message": "关闭"
},
"collectibleAddFailedMessage": {
"message": "由于所有权信息不匹配无法添加NFT。请确保所输入的信息正确无误。"
},
"collectibleAddressError": {
"message": "此代币是NFT。另加上$1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
"coingecko": {
"message": "CoinGecko"
},
"confirm": {
"message": "确认"
@ -736,6 +711,9 @@
"connectingToGoerli": {
"message": "正在连接 Goerli 测试网络"
},
"connectingToLineaTestnet": {
"message": "正在连接Linea测试网络"
},
"connectingToMainnet": {
"message": "正在连接到以太坊主网"
},
@ -755,18 +733,6 @@
"continue": {
"message": "继续"
},
"continueToCoinbasePay": {
"message": "继续使用Coinbase Pay"
},
"continueToMoonPay": {
"message": "继续使用MoonPay"
},
"continueToTransak": {
"message": "继续前往 Transak"
},
"continueToWyre": {
"message": "继续前往 Wyre"
},
"contract": {
"message": "合约"
},
@ -813,7 +779,7 @@
"message": "CoolWallet"
},
"copiedExclamation": {
"message": "已复制"
"message": "已复制"
},
"copyAddress": {
"message": "复制地址到剪贴板"
@ -842,9 +808,19 @@
"createPassword": {
"message": "创建密码"
},
"cryptoCompare": {
"message": "CryptoCompare"
},
"currencyConversion": {
"message": "货币转换"
},
"currencyRateCheckToggle": {
"message": "显示余额和代币价格检查器"
},
"currencyRateCheckToggleDescription": {
"message": "我们使用$1和$2的API来显示您的余额和代币价格。$3",
"description": "$1 represents Coingecko, $2 represents CryptoCompare and $3 represents Privacy Policy"
},
"currencySymbol": {
"message": "货币符号"
},
@ -979,10 +955,6 @@
"deposit": {
"message": "存入"
},
"depositCrypto": {
"message": "存入$1",
"description": "$1 represents the crypto symbol to be purchased"
},
"deprecatedTestNetworksLink": {
"message": "了解详情"
},
@ -992,15 +964,108 @@
"description": {
"message": "描述"
},
"desktopConnectionCriticalErrorDescription": {
"message": "此错误可能是间歇性的因此请尝试重新启动此扩展程序或禁用MetaMask桌面应用程序。"
},
"desktopConnectionCriticalErrorTitle": {
"message": "MetaMask启动时出现问题"
},
"desktopConnectionLostErrorDescription": {
"message": "请确保您已启动并运行桌面应用程序或禁用MetaMask桌面应用程序。"
},
"desktopConnectionLostErrorTitle": {
"message": "MetaMask桌面应用程序连接已断开"
},
"desktopDisableButton": {
"message": "禁用桌面应用程序"
},
"desktopDisableErrorCTA": {
"message": "禁用MetaMask桌面应用程序"
},
"desktopEnableButton": {
"message": "启用桌面应用程序"
},
"desktopEnableButtonDescription": {
"message": "点击以运行桌面应用程序中的所有后台进程。"
},
"desktopErrorNavigateSettingsCTA": {
"message": "返回设置页面"
},
"desktopErrorRestartMMCTA": {
"message": "重新启动MetaMask"
},
"desktopNotFoundErrorCTA": {
"message": "下载MetaMask桌面应用程序"
},
"desktopNotFoundErrorDescription1": {
"message": "请确保您已启动并运行桌面应用程序。"
},
"desktopNotFoundErrorDescription2": {
"message": "如果您没有安装桌面应用程序请到MetaMask网站下载。"
},
"desktopNotFoundErrorTitle": {
"message": "找不到MetaMask桌面应用程序"
},
"desktopOpenOrDownloadCTA": {
"message": "打开MetaMask桌面应用程序"
},
"desktopOutdatedErrorCTA": {
"message": "更新MetaMask桌面应用程序"
},
"desktopOutdatedErrorDescription": {
"message": "您的MetaMask桌面应用程序需要升级。"
},
"desktopOutdatedErrorTitle": {
"message": "MetaMask桌面应用程序已过时"
},
"desktopOutdatedExtensionErrorCTA": {
"message": "更新MetaMask扩展程序"
},
"desktopOutdatedExtensionErrorDescription": {
"message": "您的MetaMask扩展程序需要升级。"
},
"desktopOutdatedExtensionErrorTitle": {
"message": "MetaMask扩展程序已过时"
},
"desktopPageDescription": {
"message": "如果配对成功,扩展程序将重新启动,您必须重新输入密码。"
},
"desktopPageSubTitle": {
"message": "请打开MetaMask桌面应用程序并输入此代码"
},
"desktopPageTitle": {
"message": "与桌面配对"
},
"desktopPairedWarningDeepLink": {
"message": "转到MetaMask桌面应用程序中的设置"
},
"desktopPairedWarningDescription": {
"message": "如果要开始新的配对,请移除当前连接。"
},
"desktopPairedWarningTitle": {
"message": "MM桌面应用程序已配对"
},
"desktopPairingExpireMessage": {
"message": "代码将在$1秒后过期"
},
"desktopRouteNotFoundErrorDescription": {
"message": "desktopRouteNotFoundErrorDescription"
},
"desktopRouteNotFoundErrorTitle": {
"message": "desktopRouteNotFoundErrorTitle"
},
"desktopUnexpectedErrorCTA": {
"message": "返回MetaMask主页"
},
"desktopUnexpectedErrorDescription": {
"message": "请检查MetaMask桌面应用程序以恢复连接"
},
"desktopUnexpectedErrorTitle": {
"message": "出错了......"
},
"details": {
"message": "详细信息"
},
"directDepositCrypto": {
"message": "直接存入$1"
},
"directDepositCryptoExplainer": {
"message": "如果您已经有了一些$1那么在您的新钱包里获得$1的最快方式是直接存入。"
},
"disabledGasOptionToolTipMessage": {
"message": "“$1”已被禁用因为它不满足在原来的燃料费用基础上至少增加10%的要求。",
"description": "$1 is gas estimate type which can be market or aggressive"
@ -1160,6 +1225,9 @@
"enableOpenSeaAPIDescription": {
"message": "使用 OpenSea 的 API 获取 NFT 数据。NFT 自动检测依赖于 OpenSea 的 API在后者关闭时自动检测将不可用。"
},
"enableOpenSeaSecurityProvider": {
"message": "启用安全服务提供商"
},
"enableSmartTransactions": {
"message": "启用智能交易"
},
@ -1255,9 +1323,6 @@
"etherscanViewOn": {
"message": "在 Etherscan 上查看"
},
"expandExperience": {
"message": "扩展您的web3体验"
},
"expandView": {
"message": "展开视图"
},
@ -1298,7 +1363,7 @@
},
"flaskSnapSettingsCardButtonCta": {
"message": "查看详细信息",
"description": "Call to action a user can take to see more information about the Snap that is installed"
"description": "Call to action a user can take to see more information about the snap that is installed"
},
"flaskSnapSettingsCardDateAddedOn": {
"message": "添加于",
@ -1451,23 +1516,11 @@
"gasUsed": {
"message": "使用的燃料"
},
"gdprMessage": {
"message": "这些数据是汇总的因此根据《通用数据保护条例》欧盟2016/679这些数据是匿名的。有关我们隐私惯例的更多信息请参见我们的 $1。",
"description": "$1 refers to the gdprMessagePrivacyPolicy message, the translation of which is meant to be used exclusively in the context of gdprMessage"
},
"gdprMessagePrivacyPolicy": {
"message": "隐私政策",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "常规"
},
"getEther": {
"message": "获取以太币"
},
"getEtherFromFaucet": {
"message": "从 $1 网络的水龙头获取以太币",
"description": "Displays network name for Ether faucet"
"getWarningsFromOpenSea": {
"message": "每当收到已知恶意请求,即从 OpenSea 获取警告。"
},
"goBack": {
"message": "返回"
@ -1545,6 +1598,32 @@
"history": {
"message": "历史记录"
},
"holdToReveal": {
"message": "按住以显示 SRP"
},
"holdToRevealContent1": {
"message": "您的助记词提供 $1",
"description": "$1 is a bolded text with the message from 'holdToRevealContent2'"
},
"holdToRevealContent2": {
"message": "对您的钱包和资金的完整访问权限。",
"description": "Is the bolded text in 'holdToRevealContent1'"
},
"holdToRevealContent3": {
"message": "请勿与任何人分享此信息。$1 $2",
"description": "$1 is a message from 'holdToRevealContent4' and $2 is a text link with the message from 'holdToRevealContent5'"
},
"holdToRevealContent4": {
"message": "MetaMask 支持团队不会要求提供此项信息,",
"description": "Part of 'holdToRevealContent3'"
},
"holdToRevealContent5": {
"message": "但网络钓鱼者可能会。",
"description": "The text link in 'holdToRevealContent3'"
},
"holdToRevealTitle": {
"message": "确保 SRP 的安全"
},
"ignoreAll": {
"message": "忽略所有"
},
@ -1577,7 +1656,7 @@
"message": "导入NFT页面"
},
"importNFTTokenIdToolTip": {
"message": "收藏品的ID是唯一标识符因为所有NFT都是独一无二的。同样在OpenSea上此数字位于“详情”下方。记下它或将它复制到剪贴板上。"
"message": "NFT的ID是唯一标识符因为所有NFT都是独一无二的。同样在OpenSea上此数字位于“详情”下方。记下它或将它复制到剪贴板上。"
},
"importNFTs": {
"message": "添加收藏品"
@ -1724,9 +1803,6 @@
"message": "JSON 文件",
"description": "format for importing an account"
},
"keepTapsOnTokens": {
"message": "以记录您在各账户和各网络中的代币和NFT。"
},
"keystone": {
"message": "Keystone"
},
@ -1739,6 +1815,12 @@
"lastConnected": {
"message": "最后连接"
},
"lastPriceSold": {
"message": "最后售价"
},
"lastSold": {
"message": "最后售出"
},
"learnCancelSpeeedup": {
"message": "学习如何 $1",
"description": "$1 is link to cancel or speed up transactions"
@ -1813,6 +1895,9 @@
"likeToImportTokens": {
"message": "您想导入这些代币吗?"
},
"lineatestnet": {
"message": "Linea测试网络"
},
"link": {
"message": "链接"
},
@ -1867,15 +1952,12 @@
"message": "创建新的交换"
},
"makeSureNoOneWatching": {
"message": "请确保没有人在看您的屏幕",
"message": "请确保没有人在看您的屏幕",
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
},
"malformedData": {
"message": "格式错误的数据"
},
"manageSnaps": {
"message": "管理已安装的Snap"
},
"max": {
"message": "最大"
},
@ -1916,36 +1998,8 @@
"metamaskVersion": {
"message": "MetaMask 版本"
},
"metametricsCommitmentsAllowOptOut": {
"message": "始终允许您通过“设置”选择退出"
},
"metametricsCommitmentsBoldNever": {
"message": "永不",
"description": "This string is localized separately from some of the commitments so that we can bold it"
},
"metametricsCommitmentsIntro": {
"message": "MetaMask.."
},
"metametricsCommitmentsNeverCollectIP": {
"message": "$1 收集您的完整 IP 地址",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverCollectKeysEtc": {
"message": "$1 收集密钥、地址、交易记录、余额、哈希或任何个人信息",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsNeverSellDataForProfit": {
"message": "$1 为利益而出售您的数据,永远不会!",
"description": "The $1 is the bolded word 'Never', from 'metametricsCommitmentsBoldNever'"
},
"metametricsCommitmentsSendAnonymizedEvents": {
"message": "发送匿名化点击和页面浏览事件"
},
"metametricsHelpImproveMetaMask": {
"message": "帮助我们改进 MetaMask"
},
"metametricsOptInDescription": {
"message": "MetaMask 希望收集使用数据,以更好地了解我们的用户如何与扩展程序交互。这些数据将被用于持续改进我们产品和以太坊生态系统的可用性和用户体验。"
"metrics": {
"message": "指标"
},
"mismatchedChainLinkText": {
"message": "验证网络信息",
@ -1979,6 +2033,9 @@
"mobileSyncWarning": {
"message": "“与扩展程序同步”功能暂时被禁用。如果您想要在 MetaMask 移动设备上使用您的扩展程序钱包,那么在您的移动应用程序上:返回钱包设置选项并选择“使用账户助记词导入”选项。使用您的扩展程序钱包的助记词来将您的钱包导入移动设备。"
},
"moreComingSoon": {
"message": "更多即将到来……"
},
"mustSelectOne": {
"message": "至少选择1种代币。"
},
@ -1992,10 +2049,6 @@
"message": "此网络上的原生代币为$1。它是用于燃料费的代币。",
"description": "$1 represents the name of the native token on the current network"
},
"needCryptoInWallet": {
"message": "要使用MetaMask与去中心化应用程序互动您的钱包中需要有$1。",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "需要帮助?请联系 $1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -2100,9 +2153,6 @@
"message": "账户 $1",
"description": "Default name of next account to be created on create account screen"
},
"newCollectibleAddedMessage": {
"message": "收藏品已成功添加!"
},
"newContact": {
"message": "新联系人"
},
@ -2118,6 +2168,9 @@
"newNetworkAdded": {
"message": "成功添加了 “$1”"
},
"newNftAddedMessage": {
"message": "NFT已成功添加"
},
"newPassword": {
"message": "新密码(至少 8 个字符)"
},
@ -2138,8 +2191,18 @@
"message": "Nonce 高于建议的 nouce 值 $1",
"description": "The next nonce according to MetaMask's internal logic"
},
"nft": {
"message": "非同质化代币(NFT)"
"nftAddFailedMessage": {
"message": "由于所有权信息不匹配无法添加NFT。请确保所输入的信息正确无误。"
},
"nftAddressError": {
"message": "此代币是NFT。另加上$1",
"description": "$1 is a clickable link with text defined by the 'importNFTPage' key"
},
"nftDisclaimer": {
"message": "免责声明MetaMask从源网址中提取媒体文件。这个网址有时会因铸造NFT的市场而改变。"
},
"nftOptions": {
"message": "NFT 期权"
},
"nftTokenIdPlaceholder": {
"message": "输入代币ID"
@ -2179,9 +2242,6 @@
"noSnaps": {
"message": "没有安装Snap"
},
"noThanks": {
"message": "不,谢谢"
},
"noThanksVariant2": {
"message": "不,谢谢."
},
@ -2215,6 +2275,9 @@
"notEnoughGas": {
"message": "燃料不足"
},
"notNow": {
"message": "暂时不"
},
"notifications": {
"message": "通知"
},
@ -2279,9 +2342,6 @@
"notifications17ActionText": {
"message": "显示安全和隐私设置"
},
"notifications17Description": {
"message": "本次更新提供更多选项,让您可以更好地管理自己的隐私。我们增加了数据收集方式的透明度,以及更清晰的分享选项。您可以通过安全和隐私设置更改您的首选项,或删除扩展使用数据。"
},
"notifications17Title": {
"message": "安全和隐私设置"
},
@ -2545,12 +2605,27 @@
"openInBlockExplorer": {
"message": "在区块浏览器上打开"
},
"openSea": {
"message": "OpenSea测试版"
},
"openSeaAltText": {
"message": "OpenSea 安全服务提供商"
},
"openSeaDescription": {
"message": "OpenSea 是该功能的第一个安全服务提供商。即将推出更多提供商!"
},
"openSeaNew": {
"message": "OpenSea"
},
"optional": {
"message": "可选"
},
"optionalWithParanthesis": {
"message": "(可选)"
},
"options": {
"message": "期权"
},
"or": {
"message": "或"
},
@ -2564,6 +2639,9 @@
"message": "其他 Snap",
"description": "Used in the 'permission_rpc' message."
},
"outdatedBrowserNotification": {
"message": "您的浏览器已过期。如果不更新浏览器您将无法获取MetaMask的安全补丁和新功能。"
},
"padlock": {
"message": "挂锁"
},
@ -2627,13 +2705,17 @@
"permissionRevoked": {
"message": "在此更新中已撤销"
},
"permission_accessNamedSnap": {
"message": "连接至$1。",
"description": "The description for the `wallet_snap` permission. $1 is the human-readable name of the snap."
},
"permission_accessNetwork": {
"message": "访问互联网。",
"description": "The description of the `endowment:network-access` permission."
},
"permission_accessSnap": {
"message": "连接$1的Snap。",
"description": "The description for the `wallet_snap_*` permission. $1 is the name of the Snap."
"message": "连接到$1 Snap。",
"description": "The description for the `wallet_snap` permission. $1 is the name of the snap."
},
"permission_cronjob": {
"message": "规划并执行定期操作。",
@ -2671,6 +2753,10 @@
"message": "控制您的“$1”账户和资产。",
"description": "The description for the `snap_getBip44Entropy` permission. $1 is the name of a protocol, e.g. 'Filecoin'."
},
"permission_manageNamedBip32Keys": {
"message": "控制您的$1账户和资产。",
"description": "The description for the `snap_getBip32Entropy` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'. $2 is the plain derivation path, e.g. 'm/44'/0'/0''."
},
"permission_manageState": {
"message": "在您的设备上存储和管理其数据。",
"description": "The description for the `snap_manageState` permission"
@ -2699,6 +2785,10 @@
"message": "查看您的$1 ($2)公钥。",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a derivation path, e.g. 'm/44'/0'/0''. $2 is the elliptic curve name, e.g. 'secp256k1'."
},
"permission_viewNamedBip32PublicKeys": {
"message": "查看您的$1公钥。",
"description": "The description for the `snap_getBip32PublicKey` permission. $1 is a name for the derivation path, e.g., 'Ethereum accounts'."
},
"permissions": {
"message": "权限"
},
@ -2715,8 +2805,8 @@
"popularCustomNetworks": {
"message": "流行自定义网络"
},
"portfolioSite": {
"message": "投资组合网站"
"portfolio": {
"message": "投资组合"
},
"preferredLedgerConnectionType": {
"message": "首选 Ledger 连接类型",
@ -2858,6 +2948,9 @@
"removeNFT": {
"message": "删除 NFT"
},
"removeNftMessage": {
"message": "NFT已成功移除"
},
"removeSnap": {
"message": "移除Snap"
},
@ -2871,6 +2964,24 @@
"replace": {
"message": "替换"
},
"requestFlaggedAsMaliciousFallbackCopyReason": {
"message": "安全提供商没有分享其他详情"
},
"requestFlaggedAsMaliciousFallbackCopyReasonTitle": {
"message": "请求被标记为恶意"
},
"requestMayNotBeSafe": {
"message": "请求可能不安全"
},
"requestMayNotBeSafeError": {
"message": "安全提供商没有检测到任何已知的恶意活动,但继续仍然可能是不安全的。"
},
"requestNotVerified": {
"message": "请求尚未验证"
},
"requestNotVerifiedError": {
"message": "由于出现错误,安全提供商没有验证此请求。请谨慎操作。"
},
"requestsAwaitingAcknowledgement": {
"message": "待确认的请求"
},
@ -2880,12 +2991,6 @@
"reset": {
"message": "重置"
},
"resetAccount": {
"message": "重置账户"
},
"resetAccountDescription": {
"message": "重置账户将清除您的交易历史记录。这不会改变您账户中的余额,也不会要求您重新输入账户助记词。"
},
"resetWallet": {
"message": "重置钱包"
},
@ -2925,14 +3030,36 @@
"revealSeedWords": {
"message": "显示助记词"
},
"revealSeedWordsDescription": {
"message": "如果更改浏览器或移动计算机,您将需要此助记词才能访问账户。将它们保存在安全、秘密的地方。"
"revealSeedWordsDescription1": {
"message": "$1 提供 $2",
"description": "This is a sentence consisting of link using 'revealSeedWordsSRPName' as $1 and bolded text using 'revealSeedWordsDescription3' as $2."
},
"revealSeedWordsDescription2": {
"message": "MetaMask 是$1。这意味着您是自己的 SRP 的所有者。",
"description": "$1 is text link with the message from 'revealSeedWordsNonCustodialWallet'"
},
"revealSeedWordsDescription3": {
"message": "对您的钱包和资金的完整访问权限。"
},
"revealSeedWordsNonCustodialWallet": {
"message": "非托管钱包"
},
"revealSeedWordsQR": {
"message": "QR"
},
"revealSeedWordsSRPName": {
"message": "助记词SRP"
},
"revealSeedWordsText": {
"message": "文本"
},
"revealSeedWordsWarning": {
"message": "这些账户助记词可以用来窃取您的所有账户。"
"message": "确保没有人在看您的屏幕。$1",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"revealSeedWordsWarningTitle": {
"message": "切勿与任何人分享此账户助记词!"
"revealSeedWordsWarning2": {
"message": "MetaMask 支持团队绝对不会要求提供此项信息。",
"description": "The bolded texted in the second part of 'revealSeedWordsWarning'"
},
"revealTheSeedPhrase": {
"message": "显示助记词"
@ -2941,11 +3068,11 @@
"message": "检查您的支出上限"
},
"revokeAllTokensTitle": {
"message": "撤销访问您的所有$1的权限",
"message": "撤销访问和转移您的所有 $1 的权限?",
"description": "$1 is the symbol of the token for which the user is revoking approval"
},
"revokeApproveForAllDescription": {
"message": "通过撤销权限,以下$1将无法再访问您的$2",
"message": "这将撤销第三方访问和转移您的所有 $1 的权限,而无需另行通知。",
"description": "$1 is either a string or link of a given token symbol or name"
},
"revokeSpendingCap": {
@ -2964,9 +3091,6 @@
"save": {
"message": "保存"
},
"saveAsCsvFile": {
"message": "保存为 CSV 文件"
},
"scanInstructions": {
"message": "将二维码放在摄像头前"
},
@ -3078,6 +3202,9 @@
"selectPathHelp": {
"message": "如果您没有看到您期望的账户,请尝试切换 HD 路径。"
},
"selectProvider": {
"message": "选择提供程序:"
},
"selectType": {
"message": "选择类型"
},
@ -3246,16 +3373,9 @@
"message": "您正在向snap \"$1\"授予$2的密钥访问权限。此操作不可撤销并会向\"$1\"授予对您的$2账户和资产的控制权。在继续之前请确保您信任\"$1\"。",
"description": "The first parameter is the name of the snap and the second one is the protocol"
},
"snapRequestsPermission": {
"message": "此Snap正在请求以下权限"
},
"snapUpdate": {
"message": "更新Snap"
},
"snapUpdateExplanation": {
"message": "$1需要更新版本的snap。",
"description": "$1 is the dapp that is requesting an update to the snap."
},
"snaps": {
"message": "Snap"
},
@ -3327,6 +3447,9 @@
"spendLimitTooLarge": {
"message": "消费限额过大"
},
"spendingCap": {
"message": "支出上限"
},
"spendingCapError": {
"message": "错误:仅输入数字"
},
@ -3385,6 +3508,9 @@
"statusNotConnected": {
"message": "未连接"
},
"staySafeWithOpenSea": {
"message": "通过 OpenSea 确保安全"
},
"step1LatticeWallet": {
"message": "关联您的 Lattice1"
},
@ -3636,7 +3762,7 @@
"message": "MetaMask 费用"
},
"swapMetaMaskFeeDescription": {
"message": "我们每次都能从顶级流动性资源中找到最优惠的价格。$1% 的费用会自动计入此报价。",
"message": "该报价中会自动计入一笔 $1% 的费用。您支付该费用以换取使用 MetaMask 流动性提供商信息聚合软件的许可证。",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapNQuotesWithDot": {
@ -3886,9 +4012,6 @@
"termsOfService": {
"message": "服务条款"
},
"testFaucet": {
"message": "测试水龙头"
},
"testNetworks": {
"message": "测试网络"
},
@ -3901,6 +4024,12 @@
"thingsToKeep": {
"message": "注意事项:"
},
"thisIsBasedOn": {
"message": "所根据的信息是来自"
},
"thisServiceIsExperimental": {
"message": "此服务是实验性的"
},
"time": {
"message": "时间"
},
@ -3914,6 +4043,12 @@
"message": "至:$1",
"description": "$1 is the address to include in the To label. It is typically shortened first using shortenAddress"
},
"toggleEthSignDescriptionField": {
"message": "启用此选项会允许dapps使用eth_sign请求您的签名。eth_sign是一种开放式签名方法允许您对任意散列进行签名因而使其成为危险的网络钓鱼风险。只有在您能够阅读所签内容并信任请求的来源时才能对eth_sign请求进行签名。"
},
"toggleEthSignField": {
"message": "切换eth_sign请求"
},
"toggleTestNetworks": {
"message": "$1 测试网络",
"description": "$1 is a clickable link with text defined by the 'showHide' key. The link will open Settings > Advanced where users can enable the display of test networks in the network dropdown."
@ -3927,6 +4062,9 @@
"tokenAlreadyAdded": {
"message": "代币已添加。"
},
"tokenAutoDetection": {
"message": "代币自动检测"
},
"tokenContractAddress": {
"message": "代币合约地址"
},
@ -4064,10 +4202,10 @@
"message": "已在 $2 重新提交交易,燃料费预计升至 $1"
},
"transactionSecurityCheck": {
"message": "交易安全检查"
"message": "启用交易安全提供程序"
},
"transactionSecurityCheckDescription": {
"message": "启用此选项可使第三方 (OpenSea) 检查您的所有交易和签名请求,并警告您已知的恶意请求。"
"message": "我们使用第三方 API 来检测和显示未签名交易和签名请求中涉及的风险,然后您再进行签名。这些服务将访问您的未签名交易和签名请求、您的账户地址以及首选语言。"
},
"transactionSubmitted": {
"message": "已在 $2 提交交易,燃料费预计为 $1。"
@ -4104,9 +4242,6 @@
"tryAgain": {
"message": "重试"
},
"tryOur": {
"message": "试试我们的"
},
"turnOnTokenDetection": {
"message": "开启增强型代币检测"
},
@ -4171,8 +4306,8 @@
"description": "Shown when the protocol is unknown by the extension. $1 is the protocol code."
},
"unsendableAsset": {
"message": "当前不支持发送可收藏的 (ERC-721) 代币",
"description": "This is an error message we show the user if they attempt to send a collectible asset type, for which currently don't support sending"
"message": "当前不支持发送NFT (ERC-721)代币",
"description": "This is an error message we show the user if they attempt to send an NFT asset type, for which currently don't support sending"
},
"unverifiedContractAddressMessage": {
"message": "我们无法验证此合约。请确保此地址是可靠的。"
@ -4189,21 +4324,6 @@
"urlExistsErrorMsg": {
"message": "此 URL 目前已被 $1 网络使用。"
},
"useCollectibleDetection": {
"message": "自动检测 NFT"
},
"useCollectibleDetectionDescription": {
"message": "显示 NFT 媒体和数据可能会将您的 IP 地址暴露给集中式服务器。第三方 API例如 OpenSea用于在您的钱包中检测 NFT。这会通过这些服务暴露您的账户地址。如果您不希望该应用程序从这些服务中提取数据请禁用此功能。"
},
"useCollectibleDetectionDescriptionLine2": {
"message": "此外,请注意:"
},
"useCollectibleDetectionDescriptionLine3": {
"message": "NFT元数据可能包含欺诈或网络钓鱼网站的链接。"
},
"useCollectibleDetectionDescriptionLine4": {
"message": "任何人都可以将NFT空投到您的账户。这可能包括或会自动显示在钱包中的冒犯性内容。"
},
"useDefault": {
"message": "使用默认值"
},
@ -4213,6 +4333,24 @@
"useMultiAccountBalanceCheckerDescription": {
"message": "我们会将账户分批并向 Infura 查询以对应地显示您的余额。如果禁用此选项将仅查询活动账户。必须连接钱包否则有一些去中心化应用程序dapp将无法工作。"
},
"useNftDetection": {
"message": "自动检测NFT"
},
"useNftDetectionDescription": {
"message": "我们使用第三方API在您的钱包中检测NFT这意味着您的IP地址可能会暴露给集中式服务器。在启用此功能时有几件事需要注意。"
},
"useNftDetectionDescriptionLine2": {
"message": "您的账户地址将对第三方API可见。"
},
"useNftDetectionDescriptionLine3": {
"message": "NFT元数据可能包含欺诈或网络钓鱼网站的链接。"
},
"useNftDetectionDescriptionLine4": {
"message": "任何人都可以将NFT空投到您的账户。这可能包括或会自动显示在钱包中的冒犯性内容。"
},
"useNftDetectionDescriptionLine5": {
"message": "如果您不希望应用程序从这些服务中提取数据,请关闭此功能。"
},
"usePhishingDetection": {
"message": "使用网络钓鱼检测"
},
@ -4246,9 +4384,6 @@
"view": {
"message": "查看"
},
"viewAccount": {
"message": "查看账户"
},
"viewAllDetails": {
"message": "查看所有详情"
},
@ -4316,7 +4451,7 @@
},
"warningTooltipText": {
"message": "$1 合约可能会花费您的全部代币余额,无需进一步通知或同意。请自定义较低的支出上限以保护自己。",
"description": "$1 is a fa-exclamation-circle icon with text 'Be careful' in 'warning' colour"
"description": "$1 is a warning icon with text 'Be careful' in 'warning' colour"
},
"weak": {
"message": "弱"
@ -4372,9 +4507,6 @@
"yes": {
"message": "是"
},
"yesLetsTry": {
"message": "是的,我们试一下"
},
"youHaveAddedAll": {
"message": "您已经添加了所有热门网络。您可以探索更多网络$1或者您可以$2",
"description": "$1 is a link with the text 'here' and $2 is a button with the text 'add more networks manually'"

View File

@ -77,9 +77,6 @@
"advanced": {
"message": "進階"
},
"affirmAgree": {
"message": "我同意"
},
"alertDisableTooltip": {
"message": "這可以在「設定 > 提醒」裡變更"
},
@ -145,12 +142,6 @@
"assets": {
"message": "資產"
},
"attemptToCancel": {
"message": "嘗試取消?"
},
"attemptToCancelDescription": {
"message": "送出取消請求並不保證您原本的交易一定會被取消。若取消成功,將會收取上方顯示交易費用。"
},
"attemptingConnect": {
"message": "正在嘗試連結區塊鏈。"
},
@ -209,12 +200,6 @@
"buy": {
"message": "買"
},
"buyWithWyre": {
"message": "用 Wyre 購買 $1"
},
"buyWithWyreDescription": {
"message": "Wyre 讓你使用信用卡在 MetaMask 帳戶中直接存入 $1 。"
},
"bytes": {
"message": "位元組"
},
@ -230,9 +215,6 @@
"cancelSpeedUp": {
"message": "cancel or speed up a tranaction."
},
"cancellationGasFee": {
"message": "需要的手續費"
},
"cancelled": {
"message": "已取消"
},
@ -331,6 +313,9 @@
"connectingToGoerli": {
"message": "連線到 Goerli 測試網路"
},
"connectingToLineaTestnet": {
"message": "連線到 Linea Goerli 測試網路"
},
"connectingToMainnet": {
"message": "連線到 Ethereum 主網路"
},
@ -346,9 +331,6 @@
"continue": {
"message": "繼續"
},
"continueToWyre": {
"message": "繼續前往 Wyre"
},
"contractAddressError": {
"message": "您正在將代幣傳送到代幣合約的位址。這可能會導致這些代幣遺失。"
},
@ -447,19 +429,9 @@
"deleteNetworkDescription": {
"message": "你確定要刪除網路嗎?"
},
"depositCrypto": {
"message": "存入 $1",
"description": "$1 represents the crypto symbol to be purchased"
},
"details": {
"message": "詳情"
},
"directDepositCrypto": {
"message": "直接存入 $1"
},
"directDepositCryptoExplainer": {
"message": "如果您已經擁有一些 $1直接存入功能是讓新錢包最快取得的方式。"
},
"disconnect": {
"message": "中斷連結"
},
@ -678,20 +650,9 @@
"gasUsed": {
"message": "Gas 用量"
},
"gdprMessagePrivacyPolicy": {
"message": "Privacy Policy here",
"description": "this translation is intended to be exclusively used as the replacement for the $1 in the gdprMessage translation"
},
"general": {
"message": "一般"
},
"getEther": {
"message": "取得以太幣"
},
"getEtherFromFaucet": {
"message": "從水龍頭取得 $1 上的以太幣",
"description": "Displays network name for Ether faucet"
},
"goBack": {
"message": "Go Back"
},
@ -854,6 +815,9 @@
"likeToImportTokens": {
"message": "確定要加入代幣?"
},
"lineatestnet": {
"message": "Linea Goerli 測試網路"
},
"links": {
"message": "連結"
},
@ -915,10 +879,6 @@
"name": {
"message": "名稱"
},
"needCryptoInWallet": {
"message": "要使用 MetaMask 存取去中心化應用程式時,您的錢包中需要有 $1。",
"description": "$1 represents the cypto symbol to be purchased"
},
"needHelp": {
"message": "需要幫助?聯繫$1",
"description": "$1 represents `needHelpLinkText`, the text which goes in the help link"
@ -984,7 +944,7 @@
"description": "The next nonce according to MetaMask's internal logic"
},
"nftTokenIdPlaceholder": {
"message": "Enter the collectible ID"
"message": "Enter the NFT ID"
},
"noAccountsFound": {
"message": "指定的搜尋條件找不到帳戶"
@ -995,9 +955,6 @@
"noConversionRateAvailable": {
"message": "尚未有匯率比較值"
},
"noThanks": {
"message": "不了"
},
"noTransactions": {
"message": "尚未有交易"
},
@ -1166,12 +1123,6 @@
"reset": {
"message": "重置"
},
"resetAccount": {
"message": "重置帳戶"
},
"resetAccountDescription": {
"message": "重置帳戶將清除您的交易紀錄。這將不會改變您的帳戶餘額或要求您重新輸入助憶詞。"
},
"restore": {
"message": "還原"
},
@ -1184,14 +1135,9 @@
"revealSeedWords": {
"message": "顯示助憶詞"
},
"revealSeedWordsDescription": {
"message": "若想在不同瀏覽器或電腦登入,將需要使用助憶詞還原帳戶資訊。請妥善並安全的保管您的助憶詞。"
},
"revealSeedWordsWarning": {
"message": "絕對不要在公共場合輸入助憶詞!這可被用來竊取您的帳戶。"
},
"revealSeedWordsWarningTitle": {
"message": "請勿將助憶詞洩漏予他人!"
"message": "絕對不要在公共場合輸入助憶詞!這可被用來竊取您的帳戶。",
"description": "$1 is bolded text using the message from 'revealSeedWordsWarning2'"
},
"rpcUrl": {
"message": "新的 RPC URL"
@ -1199,9 +1145,6 @@
"save": {
"message": "儲存"
},
"saveAsCsvFile": {
"message": "儲存為 CSV 格式檔案"
},
"scanInstructions": {
"message": "請將 QR code 放在攝影鏡頭前面"
},
@ -1477,9 +1420,6 @@
"termsOfService": {
"message": "服務條款"
},
"testFaucet": {
"message": "測試水龍頭"
},
"tips": {
"message": "提示"
},
@ -1639,9 +1579,6 @@
"message": "在 $1 驗證這個代幣的資訊",
"description": "Points the user to etherscan as a place they can verify information about a token. $1 is replaced with the translation for \"etherscan\""
},
"viewAccount": {
"message": "查看帳戶"
},
"viewAllDetails": {
"message": "查看所有詳情"
},
@ -1687,9 +1624,6 @@
"message": "$1 之 $2 等待中",
"description": "$1 and $2 are intended to be two numbers, where $2 is a total number of pending confirmations, and $1 is a count towards that total"
},
"yesLetsTry": {
"message": "了解,試試看"
},
"youNeedToAllowCameraAccess": {
"message": "需要准許存取攝影鏡頭才能啟用此功能"
},

View File

@ -0,0 +1,4 @@
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M127.666 220C127.666 220 206.331 193.236 206.331 94.9394V59.5566C206.331 55.6784 203.315 52.5662 199.532 52.3268C185.264 51.6086 151.414 48.7359 127.666 36C103.965 48.7359 70.0669 51.6086 55.7989 52.2789C52.0164 52.5662 49 55.6784 49 59.5566V94.9394C49 193.236 127.666 220 127.666 220Z" fill="#00AEEF"/>
<path d="M159.457 107.867C158.5 97.1419 149.307 93.4552 137.624 92.3539L137.672 77.3677L128.623 77.4156L128.671 91.923C126.277 91.923 123.739 91.923 121.298 91.9709V77.272L112.153 77.3199L112.201 92.2103C110.237 92.2582 93.9106 92.2582 93.9106 92.2582V101.786H105.497L105.45 149.665L95.2991 149.713L95.2034 160.63C95.2034 160.63 109.567 160.582 111.674 160.582L111.722 175.664L120.723 175.712L120.819 160.726C123.309 160.773 125.702 160.821 128.049 160.869L128.001 175.712H137.146L137.098 160.726C152.323 159.959 163.048 156.177 164.485 141.909C165.634 130.37 160.271 125.199 151.605 123.092C156.872 120.411 160.176 115.719 159.457 107.867ZM146.578 139.946C146.482 151.198 127.426 149.809 121.25 149.761L121.202 129.796C127.378 129.843 146.674 128.216 146.578 139.946ZM142.556 111.793C142.46 122.039 126.564 120.746 121.489 120.698L121.441 102.6C126.516 102.6 142.604 101.116 142.556 111.793Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1308.89 1311"><defs><style>.cls-1{fill:#1c46a0;}</style></defs><g id="图层_2" data-name="图层 2"><g id="图层_1-2" data-name="图层 1"><path class="cls-1" d="M655.5,873.5c-120.47,0-218.12-97.72-218-218.22-.31-120,96.7-217.48,216.67-217.79h2.33c95.93.43,177.22,62.81,205.93,149.2a36.9,36.9,0,0,0,35,25.3h192a9,9,0,0,0,9-9V553.46a4,4,0,0,1,4-4h46.78a4,4,0,0,1,4,4V603a9,9,0,0,0,9,9h27.36a9,9,0,0,0,9-9V553.46a4,4,0,0,1,4-4h46.78a4,4,0,0,1,4,4V603a9,9,0,0,0,9,9h37.5a9,9,0,0,0,9-9c0-.25,0-.51,0-.76C1281.78,265.28,999.83.21,655.91,0,294-.22,0,293.61,0,655.51S293.48,1311,655.5,1311c344.1,0,626.27-265.14,653.36-602.26a9,9,0,0,0-8.23-9.71c-.26,0-.51,0-.77,0H897.45a37.08,37.08,0,0,0-35.11,25.53C833.46,811.1,751.77,873.5,655.5,873.5Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 805 B

View File

@ -0,0 +1,6 @@
<svg fill="none" height="20" width="20" xmlns="http://www.w3.org/2000/svg">
<g clip-rule="evenodd" fill-rule="evenodd">
<path d="M.833 10a9.167 9.167 0 1118.334 0A9.167 9.167 0 01.833 10z" fill="#28a745"/>
<path d="M14.426 6.702a.833.833 0 010 1.179l-5.173 5.417a.833.833 0 01-1.178 0l-2.5-2.5a.833.833 0 111.178-1.179l1.91 1.91 4.584-4.827a.833.833 0 011.179 0z" fill="#fff"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 414 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 15 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<path d="M13.015,8.847C13.232,8.195 14.688,7.717 14.688,7C14.688,6.283 13.232,5.805 13.015,5.153C12.797,4.48 13.688,3.241 13.275,2.676C12.863,2.111 11.407,2.568 10.842,2.177C10.277,1.764 10.277,0.243 9.603,0.026C8.952,-0.192 8.061,1.047 7.344,1.047C6.627,1.047 5.714,-0.192 5.084,0.026C4.411,0.243 4.411,1.785 3.846,2.177C3.281,2.589 1.825,2.111 1.412,2.676C0.999,3.241 1.89,4.48 1.673,5.153C1.456,5.805 0,6.283 0,7C0,7.717 1.456,8.195 1.673,8.847C1.89,9.52 0.999,10.759 1.412,11.324C1.825,11.889 3.281,11.432 3.846,11.823C4.411,12.236 4.411,13.757 5.084,13.974C5.736,14.192 6.627,12.953 7.344,12.953C8.061,12.953 8.973,14.192 9.603,13.974C10.277,13.757 10.277,12.214 10.842,11.823C11.407,11.411 12.863,11.889 13.275,11.324C13.688,10.759 12.797,9.499 13.015,8.847Z" style="fill:rgb(215,58,73);fill-rule:nonzero;"/>
<g transform="matrix(1,0,0,1,1.99992,1.50001)">
<path d="M8.708,2.938L8.062,2.292L5.5,4.854L2.938,2.292L2.292,2.938L4.854,5.5L2.292,8.062L2.938,8.708L5.5,6.146L8.062,8.708L8.708,8.062L6.146,5.5L8.708,2.938Z" style="fill:white;fill-rule:nonzero;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 240 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -0,0 +1,40 @@
<svg width="426" height="149" viewBox="0 0 426 149" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M52.5095 1.29006C43.9873 3.00709 35.8923 6.40352 28.6963 11.2813C18.1341 18.4704 9.8993 28.5855 5.00166 40.3863C3.29958 44.4987 2.02478 48.7753 1.19735 53.1485C-0.416047 61.4971 -0.382513 70.0805 1.29607 78.4162C3.02032 86.9352 6.41862 95.0271 11.2939 102.223C18.4808 112.795 28.5956 121.041 40.3989 125.95C48.441 129.265 57.0602 130.954 65.7588 130.92L65.5021 65.4631L65.2059 0C60.9419 0.0171994 56.6897 0.449264 52.5095 1.29006Z" fill="#3E125B"/>
<path d="M11.2949 102.229C13.6717 105.733 16.3806 109 19.384 111.984L65.457 65.4894L11.2949 102.229Z" fill="#974AC5"/>
<path d="M65.5036 65.4631L10.9598 29.2629C8.62988 32.7795 6.64606 36.5135 5.03613 40.4126L65.5036 65.4631Z" fill="#682E8B"/>
<path d="M65.5029 65.4631L4.94982 40.3994C3.24775 44.5119 1.97294 48.7884 1.14551 53.1616L65.5029 65.4631Z" fill="#6F3294"/>
<path d="M65.5038 65.4631L19.003 19.3901C16.0098 22.4139 13.3162 25.7203 10.96 29.2629L65.5038 65.4631Z" fill="#612982"/>
<path d="M65.5038 65.4631L1.29785 78.4162C2.13137 82.5544 3.36581 86.6016 4.98369 90.5005L65.5038 65.4631Z" fill="#8841B2"/>
<path d="M28.6977 11.2813C25.2025 13.6611 21.9448 16.3722 18.9697 19.377L65.4705 65.45L28.6977 11.2813Z" fill="#592479"/>
<path d="M65.5029 65.4631L0.0332031 65.7527C0.0615207 70.0087 0.502373 74.2519 1.34957 78.4228L65.5029 65.4631Z" fill="#813CA9"/>
<path d="M1.17186 53.1616C0.380059 57.3116 -0.0122564 61.5279 0.000291701 65.7527L65.47 65.4631L1.17186 53.1616Z" fill="#76379E"/>
<path d="M65.5033 65.4631L40.4528 4.97589C36.34 6.67669 32.4121 8.7939 28.7305 11.2945L65.5033 65.4631Z" fill="#511E6F"/>
<path d="M65.5026 65.4631L65.2065 0C60.9526 0.0279982 56.7116 0.468856 52.543 1.31637L65.5026 65.4631Z" fill="#3E125B"/>
<path d="M52.5098 1.2901C48.3693 2.12268 44.3198 3.35714 40.4189 4.97594L65.5024 65.4632L52.5098 1.2901Z" fill="#481965"/>
<path d="M65.5036 65.4631L19.4307 111.957C22.4526 114.955 25.7591 117.65 29.3034 120.007L65.5036 65.4631Z" fill="#9E4DCF"/>
<path d="M65.5029 65.4631L29.3027 120.007C32.8193 122.333 36.5507 124.317 40.4458 125.931L65.5029 65.4631Z" fill="#A851D9"/>
<path d="M65.5029 65.4631L5.01562 90.5071C6.71387 94.6198 8.82891 98.5477 11.3276 102.229L65.5029 65.4631Z" fill="#9045BC"/>
<path d="M65.5029 65.4631L40.4326 125.957C44.5354 127.653 48.8006 128.925 53.1619 129.755L65.5029 65.4631Z" fill="#B056E3"/>
<path d="M53.1611 129.755C57.3131 130.548 61.5319 130.938 65.7588 130.92L65.5021 65.4631L53.1611 129.755Z" fill="#B155E5"/>
<path d="M144.077 70.5772C142.352 62.0582 138.954 53.9663 134.079 46.7707C126.897 36.2016 116.79 27.9559 104.994 23.0431C96.9516 19.7279 88.3323 18.039 79.6338 18.0738L79.9234 83.5369L80.2196 149C84.4734 148.972 88.7144 148.531 92.8831 147.684C101.406 145.963 109.501 142.562 116.696 137.679C127.258 130.49 135.493 120.375 140.391 108.574C142.093 104.462 143.368 100.185 144.195 95.812C145.799 87.4639 145.757 78.8828 144.07 70.5509L144.077 70.5772Z" fill="#17125B"/>
<path d="M134.079 46.7706C131.701 43.276 128.992 40.0184 125.99 37.0427L79.917 83.5369L134.079 46.7706Z" fill="#534AC5"/>
<path d="M79.9043 83.5369L134.448 119.737C136.778 116.221 138.762 112.487 140.372 108.587L79.8779 83.5237L79.9043 83.5369Z" fill="#342E8B"/>
<path d="M79.9033 83.5369L140.397 108.601C142.099 104.488 143.374 100.212 144.201 95.8384L79.9033 83.5369Z" fill="#393294"/>
<path d="M79.9033 83.5369L126.404 129.61C129.397 126.586 132.091 123.28 134.447 119.737L79.9033 83.5369Z" fill="#302982"/>
<path d="M79.9033 83.5369L144.076 70.5772C143.243 66.439 142.008 62.3918 140.391 58.4929L79.9033 83.504V83.5369Z" fill="#4A41B2"/>
<path d="M116.676 137.706C120.171 135.33 123.428 132.623 126.404 129.623L79.9033 83.55L116.676 137.706Z" fill="#2B2479"/>
<path d="M79.9045 83.5369L145.374 83.2473C145.346 78.9913 144.905 74.7481 144.058 70.5772L79.8848 83.5369H79.9045Z" fill="#453CA9"/>
<path d="M144.201 95.8383C144.993 91.6884 145.386 87.4721 145.373 83.2473L79.9033 83.5369L144.201 95.8383Z" fill="#3E379E"/>
<path d="M79.9033 83.5369L104.954 144.024C109.067 142.323 112.994 140.206 116.676 137.706L79.9033 83.5369Z" fill="#241E6F"/>
<path d="M79.9033 83.5369L80.1995 149C84.4533 148.972 88.6944 148.531 92.863 147.684L79.9033 83.5106V83.5369Z" fill="#17125B"/>
<path d="M92.863 147.71C97.0035 146.877 101.053 145.643 104.954 144.024L79.9033 83.5369L92.863 147.71Z" fill="#1E1965"/>
<path d="M79.9033 83.5369L125.976 37.0427C122.954 34.0455 119.648 31.3496 116.104 28.9931L79.9033 83.5369Z" fill="#564DCF"/>
<path d="M79.9038 83.5369L116.104 28.9931C112.587 26.6671 108.856 24.6834 104.961 23.0695L79.8906 83.5633L79.9038 83.5369Z" fill="#5D51D9"/>
<path d="M79.9033 83.5368L140.391 58.5258C138.692 54.4131 136.577 50.4852 134.079 46.8035L79.9033 83.5698V83.5368Z" fill="#4E45BC"/>
<path d="M79.9033 83.5369L104.993 23.0431C100.88 21.3428 96.6039 20.068 92.2311 19.2388L79.9231 83.5369H79.9033Z" fill="#6156E3"/>
<path d="M92.2129 19.2388C88.061 18.4459 83.8422 18.0558 79.6152 18.0738L79.9048 83.5369L92.2129 19.2388Z" fill="#6055E5"/>
<path d="M236.239 53.1287L229.052 57.6438C222.786 49.4034 214.267 45.3051 203.495 45.3489C194.886 45.3884 187.749 48.1901 182.084 53.754C179.347 56.3511 177.183 59.4911 175.73 62.9729C174.277 66.4546 173.567 70.2014 173.646 73.9734C173.655 79.0806 175.032 84.092 177.635 88.4864C180.184 92.9382 183.931 96.5864 188.448 99.0174C193.166 101.537 198.45 102.811 203.797 102.716C214.184 102.673 222.646 98.504 229.184 90.2109L236.424 94.9234C233.06 100.028 228.383 104.132 222.885 106.804C217.18 109.634 210.7 111.064 203.442 111.095C192.275 111.148 182.992 107.637 175.594 100.564C168.196 93.4908 164.466 84.8664 164.405 74.6908C164.342 67.986 166.098 61.3894 169.486 55.6035C172.831 49.7784 177.725 44.9942 183.624 41.7816C189.813 38.4238 196.756 36.6999 203.797 36.7728C208.397 36.7424 212.972 37.4468 217.349 38.8592C221.33 40.081 225.081 41.9512 228.453 44.3946C231.589 46.775 234.233 49.7412 236.239 53.1287Z" fill="#1C1C1C"/>
<path d="M244.499 38.4116L253.595 38.3722L253.74 71.3736C253.775 79.4297 254.234 84.9717 255.116 87.9993C256.332 92.1854 258.986 95.8077 262.612 98.2275C266.285 100.72 270.66 101.957 275.736 101.94C280.813 101.922 285.111 100.678 288.63 98.2078C292.071 95.8806 294.643 92.4778 295.943 88.5325C296.82 85.8032 297.259 80.0199 297.259 71.1827L297.114 38.1813L306.401 38.1352L306.553 72.8282C306.601 82.5693 305.504 89.9146 303.262 94.8642C301.117 99.6901 297.557 103.75 293.053 106.507C288.494 109.316 282.773 110.737 275.888 110.773C269.003 110.808 263.246 109.436 258.617 106.659C254.042 103.938 250.417 99.8723 248.238 95.0156C245.943 90.0178 244.773 82.4969 244.729 72.453L244.499 38.4116Z" fill="#1C1C1C"/>
<path d="M316.966 38.0892L326.253 38.0497L326.299 48.3766C329.05 44.2958 331.959 41.2397 335.026 39.2081C337.859 37.2557 341.209 36.1903 344.649 36.1475C347.496 36.2288 350.274 37.0451 352.712 38.517L348.006 46.2046C346.497 45.4875 344.863 45.0737 343.194 44.9869C340.162 44.9869 337.245 46.2463 334.441 48.7649C331.637 51.2836 329.511 55.1581 328.063 60.3885C326.953 64.421 326.426 72.5649 326.483 84.8203L326.588 108.726L317.295 108.772L316.966 38.0892Z" fill="#1C1C1C"/>
<path d="M359.057 37.9048L368.732 37.8588L392.696 89.2762L415.904 37.6481L425.645 37.6086L393.605 108.429H391.913L359.057 37.9048Z" fill="#1C1C1C"/>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -0,0 +1,3 @@
<svg width="102" height="96" viewBox="0 0 102 96" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M96 80V85.3333C96 91.2 91.2 96 85.3333 96H10.6667C4.74667 96 0 91.2 0 85.3333V10.6667C0 4.8 4.74667 0 10.6667 0H85.3333C91.2 0 96 4.8 96 10.6667V16H48C42.08 16 37.3333 20.8 37.3333 26.6667V69.3333C37.3333 75.2 42.08 80 48 80H96ZM48 69.3333H101.333V26.6667H48V69.3333ZM69.3333 56C64.9067 56 61.3333 52.4267 61.3333 48C61.3333 43.5733 64.9067 40 69.3333 40C73.76 40 77.3333 43.5733 77.3333 48C77.3333 52.4267 73.76 56 69.3333 56Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 558 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,4 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 0L0 16H16L8 0ZM8 3.36842L13.4764 14.3158H2.52364L8 3.36842ZM7.27273 6.73684V10.1053H8.72727V6.73684H7.27273ZM7.27273 11.7895V13.4737H8.72727V11.7895" fill="#D73A49"/>
</svg>

After

Width:  |  Height:  |  Size: 282 B

Some files were not shown because too many files have changed in this diff Show More