1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Merge pull request #9479 from MetaMask/Version-v8.1.0

Version v8.1.0 RC
This commit is contained in:
Whymarrh Whitby 2020-10-13 14:45:22 -02:30 committed by GitHub
commit 61e26053bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
961 changed files with 34520 additions and 22648 deletions

View File

@ -4,6 +4,8 @@ workflows:
test_and_release:
jobs:
- create_release_pull_request:
requires:
- prep-deps
filters:
branches:
only:
@ -89,6 +91,8 @@ jobs:
- image: circleci/node@sha256:e16740707de2ebed45c05d507f33ef204902349c7356d720610b5ec6a35d3d88
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Create GitHub Pull Request for version
command: |
@ -183,13 +187,13 @@ jobs:
test-lint-shellcheck:
docker:
- image: koalaman/shellcheck-alpine@sha256:169a51b086af0ab181e32801c15deb78944bb433d4f2c0a21cc30d4e60547065
- image: koalaman/shellcheck-alpine@sha256:35882cba254810c7de458528011e935ba2c4f3ebcb224275dfa7ebfa930ef294
steps:
- checkout
- run: apk add --no-cache bash jq yarn
- run:
name: Shellcheck Lint
command: yarn lint:shellcheck
name: ShellCheck Lint
command: ./development/shellcheck.sh
test-lint-lockfile:
docker:
@ -225,7 +229,11 @@ jobs:
command: mv ./dist-test ./dist
- run:
name: test:e2e:chrome
command: yarn test:e2e:chrome
command: |
if .circleci/scripts/test-run-e2e
then
yarn test:e2e:chrome
fi
no_output_timeout: 20m
- store_artifacts:
path: test-artifacts
@ -246,7 +254,11 @@ jobs:
command: mv ./dist-test ./dist
- run:
name: test:e2e:firefox
command: yarn test:e2e:firefox
command: |
if .circleci/scripts/test-run-e2e
then
yarn test:e2e:firefox
fi
no_output_timeout: 20m
- store_artifacts:
path: test-artifacts

View File

@ -21,6 +21,7 @@ printf '%s\n' 'Updating the manifest version if needed'
version="${CIRCLE_BRANCH/Version-v/}"
updated_manifest="$(jq ".version = \"$version\"" app/manifest/_base.json)"
printf '%s\n' "$updated_manifest" > app/manifest/_base.json
yarn prettier --write app/manifest/_base.json
if [[ -z $(git status --porcelain) ]]
then

14
.circleci/scripts/test-run-e2e Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
# Skip running e2e tests if the HEAD commit is tagged correctly
if git show --format='%B' --no-patch "$CIRCLE_SHA1" | grep --fixed-strings --quiet '[skip e2e]'
then
printf '%s\n' "$CIRCLE_SHA1 contains the tag '[skip e2e]' so e2e tests will not run"
exit 1
fi
exit 0

View File

@ -1,16 +0,0 @@
!.eslintrc.js
node_modules/**
dist/**
builds/**
test-builds/**
docs/**
coverage/
app/scripts/lib/extension-instance.js
app/scripts/chromereload.js
app/vendor/**
ui/lib/blockies.js
package-lock.json

View File

@ -18,6 +18,18 @@ module.exports = {
},
},
ignorePatterns: [
'!.eslintrc.js',
'node_modules/**',
'dist/**',
'builds/**',
'test-*/**',
'docs/**',
'coverage/',
'app/scripts/chromereload.js',
'app/vendor/**',
],
extends: [
'@metamask/eslint-config',
'@metamask/eslint-config/config/nodejs',
@ -29,46 +41,19 @@ module.exports = {
plugins: [
'babel',
'react',
'json',
'import',
],
globals: {
'$': 'readonly',
document: 'readonly',
QUnit: 'readonly',
window: 'readonly',
},
rules: {
/* TODO: Remove these when upgrading to `@metamask/eslint-config@2` */
'array-callback-return': 'error',
'callback-return': 'error',
'global-require': 'error',
'guard-for-in': 'error',
/* End v2 rules */
'arrow-parens': 'error',
'no-tabs': 'error',
'no-mixed-operators': 'error',
'import/default': 'error',
'import/export': 'error',
'import/named': 'error',
'import/namespace': 'error',
'import/newline-after-import': 'error',
'import/no-absolute-path': 'error',
'import/no-amd': 'error',
'import/no-anonymous-default-export': 'error',
'import/no-duplicates': 'error',
'import/no-dynamic-require': 'error',
'import/no-mutable-exports': 'error',
'import/no-named-as-default': 'error',
'import/no-named-as-default-member': 'error',
'import/no-named-default': 'error',
'import/no-self-import': 'error',
'import/no-unresolved': ['error', { 'commonjs': true }],
'import/no-unused-modules': 'error',
'import/no-useless-path-segments': ['error', { 'commonjs': true }],
'import/no-webpack-loader-syntax': 'error',
'default-param-last': 'off',
'require-atomic-updates': 'off',
'import/no-unassigned-import': 'off',
'prefer-object-spread': 'error',
'react/no-unused-prop-types': 'error',
'react/no-unused-state': 'error',
'react/jsx-boolean-value': 'error',
@ -80,7 +65,7 @@ module.exports = {
'react/jsx-no-duplicate-props': 'error',
'react/jsx-closing-bracket-location': 'error',
'react/jsx-first-prop-new-line': ['error', 'multiline'],
'react/jsx-max-props-per-line': ['error', { 'maximum': 1, 'when': 'multiline' } ],
'react/jsx-max-props-per-line': ['error', { 'maximum': 1, 'when': 'multiline' }],
'react/jsx-tag-spacing': ['error', {
'closingSlash': 'never',
'beforeSelfClosing': 'always',
@ -95,11 +80,22 @@ module.exports = {
'logical': 'parens-new-line',
'prop': 'parens-new-line',
}],
'no-invalid-this': 'off',
'babel/no-invalid-this': 'error',
'babel/semi': ['error', 'never'],
'mocha/no-setup-in-describe': 'off',
},
overrides: [{
files: [
'test/e2e/**/*.js',
],
rules: {
'mocha/no-hooks-for-single-case': 'off',
},
}, {
files: [
'app/scripts/migrations/*.js',
'*.stories.js',
@ -114,6 +110,38 @@ module.exports = {
rules: {
'global-require': 'off',
},
}, {
files: [
'test/**/*-test.js',
'test/**/*.spec.js',
],
rules: {
// Mocha will re-assign `this` in a test context
'babel/no-invalid-this': 'off',
},
}, {
files: [
'development/**/*.js',
'test/e2e/benchmark.js',
'test/helper.js',
],
rules: {
'no-process-exit': 'off',
},
}, {
files: [
'.eslintrc.js',
'babel.config.js',
'nyc.config.js',
'stylelint.config.js',
'development/**/*.js',
'test/e2e/**/*.js',
'test/env.js',
'test/setup.js',
],
parserOptions: {
sourceType: 'script',
},
}],
settings: {

2
.gitattributes vendored
View File

@ -1,6 +1,8 @@
* text=auto
CHANGELOG.md merge=union
.metamaskrc.dist linguist-language=ini
# Reviewing the lockfile contents is an important step in verifying that
# we're using the dependencies we expect to be using
package-lock.json linguist-generated=false

View File

@ -7,13 +7,13 @@ about: Using MetaMask, but it's not working as you expect?
<!--
BEFORE SUBMITTING:
1) Please search to make sure this issue has not been opened already
2) If this is a implementation question or trouble with your personal project, please post on StackExchange. This will get your question answered more quickly and make it easier for other devs to find the answer in the future.
2) If this is an implementation question or trouble with your personal project, please post on StackExchange. This will get your question answered more quickly and make it easier for other devs to find the answer in the future.
-->
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce (REQUIRED)**
**Steps to reproduce (REQUIRED)**
Steps to reproduce the behavior, libraries used with version number, and/or any setup information to easily reproduce:
1. Go to '...'
@ -29,9 +29,9 @@ If applicable, add screenshots to help explain your problem.
**Browser details (please complete the following information):**
- OS: [e.g. OS X, Windows]
- Hardware Wallet [e.g. Trezor Firmware version 1.8.3, Ledger Nano S Firmware version 1.6.0]
- Browser [e.g. Chrome Version 79.0.3945.79 (Official Build) (64-bit), Firefox Browser 71.0 (64-bit)]
- MetaMask Version [e.g. 5.0.2]
- Hardware Wallet: [e.g. Trezor Firmware version 1.8.3, Ledger Nano S Firmware version 1.6.0]
- Browser: [e.g. Chrome Version 79.0.3945.79 (Official Build) (64-bit), Firefox Browser 71.0 (64-bit)]
- MetaMask Version: [e.g. 5.0.2]
**Additional context (Error Messages, etc.)**
Add any other context about the problem here.

8
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Request a new feature
url: https://metamask.zendesk.com/hc/en-us/community/topics/360000682552-Feature-Requests
about: Request new features and vote on the ones that are important to you
- name: Get support or ask a question
url: https://metamask.zendesk.com/hc/en-us/requests/new
about: Use the MetaMask support system to get help and ask questions

View File

@ -1,14 +0,0 @@
---
name: Feature Request
about: Looking for a feature that doesn't exist? Let us know!
---
**What problem are you trying to solve?**
A short description of what you're trying to do. E.g., "My users need to wrap ETH, but they're intimidated by the confirm screen..." or "I'm trying to debug my application, and XYZ..."
**Describe the solution you'd like**
A clear and concise description of what you want to happen. Try to also include any alternative solutions you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

View File

@ -1,9 +0,0 @@
---
name: Support Request or Question
about: Have a question about how to use MetaMask?
---
FOR USER QUESTIONS, PLEASE DO NOT OPEN A GITHUB ISSUE - IT WILL NOT BE HANDLED HERE.
INSTEAD, PLEASE EMAIL SUPPORT@METAMASK.IO WITH A DESCRIPTION OF YOUR PROBLEM.

24
.github/workflows/cla.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: "CLA Signature Bot"
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened,closed,synchronize]
jobs:
CLABot:
if: github.event_name == 'pull_request_target' || contains(github.event.comment.html_url, '/pull/')
runs-on: ubuntu-latest
steps:
- name: "CLA Signature Bot"
uses: MetaMask/cla-signature-bot@v3.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path-to-signatures: 'cla.json'
url-to-cladocument: 'https://metamask.io/cla.html'
# This branch can't have protections, commits are made directly to the specified branch.
branch: 'cla-signatures'
allowlist: 'dependabot[bot],metamaskbot'
allow-organization-members: true
blockchain-storage-flag: false

3
.metamaskrc.dist Normal file
View File

@ -0,0 +1,3 @@
; Extra environment variables
INFURA_PROJECT_ID=00000000000
SEGMENT_WRITE_KEY=

8
.prettierignore Normal file
View File

@ -0,0 +1,8 @@
node_modules/**
dist/**
builds/**
test-*/**
coverage/
app/vendor/**
.nyc_output/**
.vscode/**

1
.storybook/images/0x.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><title>Asset 1</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path d="M24.9,93.22a49.86,49.86,0,0,0,52-1.09A50.18,50.18,0,0,0,88.32,82.07c-2.72-3.79-5.62-7.7-8.68-11.68-.82-1.07-1.67-2.15-2.52-3.24A32.27,32.27,0,0,1,63.55,79.09L55,70.73Z"/><path d="M6.63,25.16A49.87,49.87,0,0,0,7.88,76.89a50.54,50.54,0,0,0,10,11.41c3.79-2.72,7.71-5.62,11.69-8.68l3.24-2.51A32.22,32.22,0,0,1,20.91,63.54l8.42-8.62Z"/><path d="M75.12,6.79a49.87,49.87,0,0,0-52,1.09,50.54,50.54,0,0,0-11.41,10c2.72,3.79,5.62,7.71,8.68,11.69.82,1.07,1.67,2.16,2.51,3.24A32.31,32.31,0,0,1,36.46,20.9h0l8.05,7.85Z"/><path d="M93.48,74.63a49.82,49.82,0,0,0-1.35-51.5A50.18,50.18,0,0,0,82.07,11.68c-3.79,2.72-7.7,5.62-11.68,8.68-1.07.82-2.15,1.67-3.24,2.52a32.27,32.27,0,0,1,12,13.6l0,.12L71.05,45Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 872 B

BIN
.storybook/images/AST.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.85 136.33"><title>BAT_icon</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><polygon points="106.86 136.33 140.85 135.33 64.19 0 3.52 109.33 106.86 136.33" opacity="0.4"/><polygon points="127.05 110.66 63.78 74.22 0.72 110.66 127.05 110.66" fill="#662d91"/><polygon points="63.99 0.5 63.97 73.51 127.33 109.79 63.99 0.5" fill="#9e1f63"/><polygon points="0 109.94 63.45 73.81 63.61 0.8 0 109.94" fill="#ff5000"/><polygon points="63.84 44.79 38.4 88.48 89.86 88.48 63.84 44.79" fill="#fff" stroke="#ff5000" stroke-miterlimit="10" stroke-width="0.83"/></g></g></svg>

After

Width:  |  Height:  |  Size: 652 B

View File

@ -0,0 +1 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91 91"><defs><style>.cls-1{fill:#231f20;stroke:#fff;stroke-miterlimit:10;}.cls-2{fill:#fff;}</style></defs><title>CVL_token</title><circle class="cls-1" cx="45.5" cy="45.5" r="45"/><g id="CIVIL_LOGO" data-name="CIVIL LOGO"><path class="cls-2" d="M29.2,45A17.57,17.57,0,0,1,47.05,27.06c6.48,0,11,2.54,14,6.76l-4.23,3c-2.35-3.1-5.26-4.79-10-4.79-7,0-12,5.54-12,13,0,7.61,5.16,13,12.21,13a12.5,12.5,0,0,0,10.52-5.07L61.8,55.8c-3.57,4.79-8.17,7.14-14.94,7.14A17.47,17.47,0,0,1,29.2,45Z"/></g></svg>

After

Width:  |  Height:  |  Size: 580 B

View File

@ -0,0 +1,9 @@
<?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 328 328" 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:1.41421;">
<rect id="Page-5" serif:id="Page 5" x="-519" y="-228" width="1366" height="768" style="fill:none;"/>
<g id="Layer-1" serif:id="Layer 1">
<path d="M264.02,56.858c-31.022,-11.562 -64.566,-17.858 -99.594,-17.858c-35.029,0 -68.574,6.296 -99.595,17.858c-14.367,5.324 -28.162,11.733 -41.325,19.232c1.945,15.226 5.037,30.107 9.274,44.531c12.247,-7.899 25.299,-14.768 38.921,-20.377c28.561,-11.79 59.87,-18.316 92.725,-18.316c32.853,0 64.164,6.526 92.724,18.316c13.622,5.609 26.673,12.478 38.923,20.377c4.233,-14.424 7.326,-29.305 9.271,-44.531c-13.164,-7.499 -26.959,-13.908 -41.325,-19.232" style="fill:#0a2052;fill-rule:nonzero;"/>
<path d="M246.331,132.984l-0.056,0c-17.172,41.841 -45.734,77.901 -81.849,104.172c-36.117,-26.271 -64.68,-62.331 -81.852,-104.172l-0.055,0c-3.665,1.316 -7.27,2.69 -10.819,4.178c-9.731,4.007 -19.116,8.643 -28.161,13.853c17.915,42.813 46.02,80.362 81.221,109.609c12.364,10.303 25.642,19.575 39.666,27.647c14.022,-8.072 27.3,-17.344 39.664,-27.647c35.201,-29.247 63.305,-66.796 81.22,-109.609c-9.042,-5.21 -18.429,-9.846 -28.161,-13.853c-3.548,-1.488 -7.154,-2.862 -10.818,-4.178" style="fill:#31c8c4;fill-rule:nonzero;"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="1055px"
height="680px"
viewBox="0 0 1055 680"
enable-background="new 0 0 1055 680"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="gnosis.svg"><metadata
id="metadata9"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs7" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="833"
inkscape:window-height="707"
id="namedview5"
showgrid="false"
inkscape:zoom="0.29383886"
inkscape:cx="527.5"
inkscape:cy="340"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><path
d="m 180.15745,575.08269 0,69.24629 c -18.04707,14.49955 -44.71746,24.43308 -69.10742,24.43308 -52.586837,0 -93.485772,-41.60718 -93.485772,-95.29343 0,-53.67766 41.415893,-94.75214 95.266662,-94.75214 25.40529,0 50.81059,10.20234 68.34766,26.31595 l -17.02592,23.3419 c -13.71275,-13.41573 -32.77515,-21.46517 -51.32174,-21.46517 -36.326471,0 -64.784723,29.25194 -64.784723,66.56069 0,37.57878 28.712665,66.84422 65.039133,66.84422 13.21438,0 28.20268,-4.83236 40.91171,-12.88916 l 0,-52.34223 26.16041,0 z m 178.59333,92.34271 -94.76364,-134.75262 0,134.75262 -29.96615,0 0,-187.90617 29.46777,0 95.26086,135.01652 0,-135.01652 29.47938,0 0,187.90617 -29.47822,0 z m 261.66675,-93.95677 c 0,53.68503 -41.14754,95.29343 -94.24552,95.29343 -53.09799,0 -94.25134,-41.60718 -94.25134,-95.29343 0,-53.94769 41.15451,-94.75214 94.25134,-94.75214 53.09798,0 94.24552,41.07448 94.24552,94.75214 z m -158.01492,0 c 0,37.32102 29.21801,66.84423 64.02381,66.84423 34.80696,0 63.2594,-29.52321 63.2594,-66.84423 0,-37.30874 -28.45244,-66.29679 -63.2594,-66.29679 -35.06138,0 -64.02381,28.98927 -64.02381,66.29679 z m 322.14853,-75.95293 -12.4616,27.90792 c -19.29938,-12.34788 -38.6127,-17.44905 -52.07452,-17.44905 -17.52546,0 -28.95198,6.98281 -28.95198,19.59581 0,41.06712 96.02177,19.06188 95.76852,86.7027 0,33.54915 -27.94246,54.21772 -67.06515,54.21772 -27.95291,0 -54.36191,-12.0717 -72.65874,-29.79078 l 12.95067,-27.38257 c 18.29218,17.7203 41.16845,27.38257 60.21109,27.38257 20.8398,0 33.2921,-8.31947 33.2921,-22.82024 0,-41.86985 -96.05197,-18.51077 -96.05197,-85.35377 0,-32.20634 26.17202,-52.34222 64.80331,-52.34222 23.10744,0 45.72233,7.77941 62.23827,19.33191 z m 48.7776,169.9097 0,-187.90617 29.97312,0 0,187.90617 -29.97312,0 z m 208.82086,-169.9097 -12.4616,27.90792 c -19.2994,-12.34788 -38.60573,-17.44905 -52.06755,-17.44905 -17.53243,0 -28.95197,6.98281 -28.95197,19.59581 0,41.06712 96.02172,19.06188 95.76622,86.7027 0,33.54915 -27.9471,54.21772 -67.06982,54.21772 -27.9471,0 -54.35495,-12.0717 -72.65875,-29.79078 l 12.95764,-27.38257 c 18.28522,17.7203 41.16845,27.38257 60.20645,27.38257 20.83168,0 33.29208,-8.31947 33.29208,-22.82024 0,-41.86985 -96.04033,-18.51077 -96.04033,-85.35377 0,-32.20634 26.16504,-52.34222 64.78936,-52.34222 23.11907,0 45.72927,7.77941 62.23827,19.33191 z M 673.44697,99.277115 660.77511,112.67812 c 10.21021,16.72364 13.20276,38.09921 6.34871,58.27927 -11.70533,34.44885 -47.62288,52.36799 -80.21679,40.00662 -4.60383,-1.73435 -8.89633,-3.99649 -12.84263,-6.67473 l -40.83272,43.13042 -35.95589,-37.98997 c -16.42416,11.61019 -37.64616,15.16358 -57.67045,7.56829 -33.54186,-12.70874 -50.96277,-51.72606 -38.94727,-87.14457 1.83665,-5.40312 4.26229,-10.38891 7.15145,-14.95124 l -15.32287,-16.189709 -2.96118,5.113439 c -16.0652,27.7103 -24.58978,59.55702 -24.66297,92.10582 -0.16961,97.82929 75.00655,177.56145 167.592,177.74679 l 0.3276,0 c 92.39841,0 167.72095,-79.43635 167.8952,-177.05943 0.0616,-32.55371 -8.34335,-64.44707 -24.27379,-92.21506 l -2.95654,-5.126945 z M 426.7813,134.95462 c -4.42725,6.07083 -7.08988,13.6649 -7.08988,21.92054 0,19.89039 15.25085,36.004 34.07625,36.004 7.81943,0 14.99527,-2.81448 20.74686,-7.49219 L 426.7813,134.95462 Z m 167.96258,47.47794 c 5.44955,3.88725 11.9911,6.14816 19.06355,6.14816 18.80682,0 34.07045,-16.11974 34.07045,-36.00399 0,-7.45905 -2.14683,-14.3854 -5.82014,-20.13465 l -47.31386,49.99048 z m -61.24501,38.08571 -138.568,-146.95321 5.3996,-6.059787 C 434.79008,28.82795 481.41738,7.5309355 531.60762,7.5309355 l 0.34038,0 C 582.66797,7.634039 631.27132,30.486199 665.33015,70.236289 l 5.20443,6.059787 L 533.49887,220.51827 Z M 417.69097,73.366218 533.54185,196.22757 647.94642,75.827201 C 617.32972,43.343454 575.48051,24.802003 531.91198,24.711174 l -0.30436,0 c -43.03299,0 -83.17217,17.206014 -113.91665,48.655044 z M 380.71975,315.13539 364.40479,314.00493 C 295.43096,309.26954 200.28512,291.3197 138.71716,232.71762 100.99781,196.82287 93.780142,162.70788 93.494363,161.26811 l -2.080611,-10.32508 251.008118,0 -1.24651,9.69541 c -1.14311,8.96264 -1.72745,18.02102 -1.75068,26.9137 -0.0674,40.43622 11.07916,79.57628 32.23959,113.19785 l 9.05548,14.3854 z m 304.05615,0 9.05548,-14.3854 c 21.04426,-33.40922 32.21404,-72.28539 32.28258,-112.41352 0.0116,-9.22654 -0.57156,-18.54145 -1.72629,-27.6968 l -1.2407,-9.69542 250.97792,0 -2.07364,10.32509 c -0.28578,1.43976 -7.51042,35.55476 -45.23441,71.44951 -61.56797,58.60085 -156.73937,76.55069 -225.72481,81.28731 l -16.31613,1.12923 z"
id="path3"
inkscape:connector-curvature="0"
style="fill:#00a6c4" /></svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

BIN
.storybook/images/omg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

29
.storybook/images/sai.svg Normal file
View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="105px" height="105px" viewBox="0 0 105 105" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 49.3 (51167) - http://www.bohemiancoding.com/sketch -->
<title>icon</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M68.1775968,52.2619297 L53.250349,37.3346818 L38.3184692,52.2665616 L15.9241234,52.2700356 L53.2538229,14.9403361 L90.5719426,52.2584557 L68.1775968,52.2619297 Z" id="path-1"></path>
<filter x="-5.4%" y="-5.4%" width="110.7%" height="121.4%" filterUnits="objectBoundingBox" id="filter-2">
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
</filter>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="DAI_small" transform="translate(-37.000000, -37.000000)">
<g id="ICON_DAI" transform="translate(10.800000, 10.800000)">
<g id="icon" transform="translate(25.730000, 26.730000)">
<rect id="Rectangle" fill="#FFCC80" transform="translate(53.248033, 52.264246) rotate(-315.000000) translate(-53.248033, -52.264246) " x="16.3049794" y="15.3097285" width="73.8861073" height="73.9090343"></rect>
<polygon id="Rectangle-Copy" fill="#FFB74D" transform="translate(53.248033, 52.264246) rotate(-315.000000) translate(-53.248033, -52.264246) " points="16.3049794 15.3097285 90.1910867 15.3097285 66.3093749 65.3296405 16.3049794 89.2187628"></polygon>
<g id="Combined-Shape">
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
<use fill="#FCFCFC" fill-rule="evenodd" xlink:href="#path-1"></use>
</g>
<polygon id="Rectangle-Copy-4" fill-opacity="0.0299999993" fill="#000000" transform="translate(53.248033, 52.264246) rotate(-315.000000) translate(-53.248033, -52.264246) " points="16.3049794 15.3097285 90.1910867 15.3097285 90.1910867 89.2187628"></polygon>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 913 B

BIN
.storybook/images/wbtc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
.storybook/images/wed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

View File

@ -1,5 +1,5 @@
module.exports = {
stories: ['../ui/app/components/**/*.stories.js'],
stories: ['../ui/app/**/*.stories.js'],
addons: [
'@storybook/addon-knobs',
'@storybook/addon-actions',

View File

@ -29,11 +29,13 @@ module.exports = {
],
},
plugins: [
new CopyWebpackPlugin([
{
from: path.join('node_modules', '@fortawesome', 'fontawesome-free', 'webfonts'),
to: path.join('fonts', 'fontawesome'),
},
]),
new CopyWebpackPlugin({
patterns: [
{
from: path.join('node_modules', '@fortawesome', 'fontawesome-free', 'webfonts'),
to: path.join('fonts', 'fontawesome'),
},
],
}),
],
}

View File

@ -1,9 +0,0 @@
/app
/development
/dist
/docs
/fonts
/images
/node_modules
/notices
/test

View File

@ -2,6 +2,38 @@
## Current Develop Branch
## 8.1.0 Tue Oct 13 2020
- [#9565](https://github.com/MetaMask/metamask-extension/pull/9565): Ensure address book entries are shared between networks with the same chain ID
- [#9552](https://github.com/MetaMask/metamask-extension/pull/9552): Fix `eth_signTypedData_v4` chain ID validation for non-default networks
- [#9551](https://github.com/MetaMask/metamask-extension/pull/9551): Allow the "Localhost 8545" network to be edited, and require a chain ID to be specified for it
- [#9491](https://github.com/MetaMask/metamask-extension/pull/9491): Validate custom network chain IDs against endpoint `eth_chainId` return values
- [#9487](https://github.com/MetaMask/metamask-extension/pull/9487): Require chain IDs to be specified for custom networks
- [#9482](https://github.com/MetaMask/metamask-extension/pull/9482): Add MetaMask Swaps 🌻
- [#9422](https://github.com/MetaMask/metamask-extension/pull/9422): Fix data backup feature (i.e. syncing with 3box)
- [#9434](https://github.com/MetaMask/metamask-extension/pull/9434): Improve gas input UI by using tooltip instead of a modal to communicate gas data
- [#9433](https://github.com/MetaMask/metamask-extension/pull/9433): Improve visual style and layout of the basic tab of the customize gas modal
- [#9415](https://github.com/MetaMask/metamask-extension/pull/9415): Fix UI bug in token approval confirmation notifications
- [#9414](https://github.com/MetaMask/metamask-extension/pull/9414): Update Wyre purchase URL
- [#9411](https://github.com/MetaMask/metamask-extension/pull/9411): Rename 'Ethereum Main Network' in network selector to 'Etherum Mainnet'
- [#9409](https://github.com/MetaMask/metamask-extension/pull/9409): Fix info tooltip on the alert settings screen when used in firefox
- [#9406](https://github.com/MetaMask/metamask-extension/pull/9406): Fix UI bug in customize gas modal: shwo left border when the first button is selected
- [#9395](https://github.com/MetaMask/metamask-extension/pull/9395): Correctly save new Contact Book addressed after editing them in 'Settings > Contact'
- [#9293](https://github.com/MetaMask/metamask-extension/pull/9293): Improve Italian translations
- [#9295](https://github.com/MetaMask/metamask-extension/pull/9295): Ensure the extension can be unlocked without network/internet access
- [#9344](https://github.com/MetaMask/metamask-extension/pull/9344): Add messages to Ledger connection process
- [#9329](https://github.com/MetaMask/metamask-extension/pull/9329): Hide seedphrase by default when restoring vault, and provide option for it to be shown
- [#9333](https://github.com/MetaMask/metamask-extension/pull/9333): Ensure names of token symbols are shown when token amounts in the token list are long
- [#9321](https://github.com/MetaMask/metamask-extension/pull/9321): Warn users when sending tokens to the token address
- [#9288](https://github.com/MetaMask/metamask-extension/pull/9288): Fix bug that caused the accounts list to be empty after entering an incorrect password when attempting to export private key
- [#9314](https://github.com/MetaMask/metamask-extension/pull/9314): Improve/fix error text for when ENS names are not found, on mainnet
- [#9307](https://github.com/MetaMask/metamask-extension/pull/9307): Improve 'Contact Us' copy in settings
- [#9283](https://github.com/MetaMask/metamask-extension/pull/9283): Fix capitalization of copy on MetaMetrics opt-in page
- [#9269](https://github.com/MetaMask/metamask-extension/pull/9269): Add lock icon to default networks in the Settings network page, to indicate they are not editable
- [#9189](https://github.com/MetaMask/metamask-extension/pull/9189): Hide gas price/speed estimate button, and link to advanced gas modal, in send flow on non-main network
- [#9184](https://github.com/MetaMask/metamask-extension/pull/9184): Improve visual styling of back button in account modal
- [#9152](https://github.com/MetaMask/metamask-extension/pull/9152): Fix vertical align of the network name in network dropdown button
- [#9073](https://github.com/MetaMask/metamask-extension/pull/9073): Use new Euclid font throughout MetaMask
## 8.0.10 Wed Sep 16 2020
- [#9423](https://github.com/MetaMask/metamask-extension/pull/9423): Update default phishing list
- [#9416](https://github.com/MetaMask/metamask-extension/pull/9416): Fix fetching a new phishing list on Firefox

39
LICENSE
View File

@ -1,21 +1,18 @@
MIT License
Copyright (c) 2018 MetaMask
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Copyright ConsenSys Software Inc. 2020. All rights reserved.
You acknowledge and agree that ConsenSys Software Inc. (“ConsenSys”) (or ConsenSyss licensors) own all legal right, title and interest in and to the work, software, application, source code, documentation and any other documents in this repository (collectively, the “Program”), including any intellectual property rights which subsist in the Program (whether those rights happen to be registered or not, and wherever in the world those rights may exist), whether in source code or any other form.
Subject to the limited license below, you may not (and you may not permit anyone else to) distribute, publish, copy, modify, merge, combine with another program, create derivative works of, reverse engineer, decompile or otherwise attempt to extract the source code of, the Program or any part thereof, except that you may contribute to this repository.
You are granted a non-exclusive, non-transferable, non-sublicensable license to distribute, publish, copy, modify, merge, combine with another program or create derivative works of the Program (such resulting program, collectively, the “Resulting Program”) solely for Non-Commercial Use as long as you:
1. give prominent notice (“Notice”) with each copy of the Resulting Program that the Program is used in the Resulting Program and that the Program is the copyright of ConsenSys; and
2. subject the Resulting Program and any distribution, publication, copy, modification, merger therewith, combination with another program or derivative works thereof to the same Notice requirement and Non-Commercial Use restriction set forth herein.
“Non-Commercial Use” means each use as described in clauses (1)-(3) below, as reasonably determined by ConsenSys in its sole discretion:
1. personal use for research, personal study, private entertainment, hobby projects or amateur pursuits, in each case without any anticipated commercial application;
2. use by any charitable organization, educational institution, public research organization, public safety or health organization, environmental protection organization or government institution; or
3. the number of monthly active users of the Resulting Program across all versions thereof and platforms globally do not exceed 10,000 at any time.
You will not use any trade mark, service mark, trade name, logo of ConsenSys or any other company or organization in a way that is likely or intended to cause confusion about the owner or authorized user of such marks, names or logos.
If you have any questions, comments or interest in pursuing any other use cases, please reach out to us at metamask.license@consensys.net.

View File

@ -1,14 +0,0 @@
# MetaMask Philosophy
## Mission
Making it safe and easy for the most people to use the decentralized web to the greatest degree that is empowering to them.
## Vision
To realize the highest goals achievable for the human race with the twin powers of peer to peer networks and cryptography. To empower users to hold and use their own keys on these new networks as securely and intelligibly as possible, enabling a new world of peer to peer agreements and economies, in hopes that we may collectively overcome the many great problems that we face together, through the power of strong cooperation.
## Strategy
We provide software for users to manage accounts, for sites to easily propose actions to users, and for users to coherently review actions before approving them. We build on this rapidly evolving set of protocols with the goal of empowering the most people to the greatest degree, and aspire to continuously evolve our offering to pursue that goal.

View File

@ -16,6 +16,9 @@ To learn how to contribute to the MetaMask project itself, visit our [Internal D
- If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you.
- Install [Yarn](https://yarnpkg.com/en/docs/install)
- Install dependencies: `yarn`
- 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/).
- Build the project to the `./dist/` folder with `yarn dist`.
- Optionally, to start a development build (e.g. with logging and file watching) run `yarn start` instead.
- To start the [React DevTools](https://github.com/facebook/react-devtools) and [Redux DevTools Extension](http://extension.remotedev.io)

View File

@ -1,179 +0,0 @@
# Terms of Use #
**THIS AGREEMENT IS SUBJECT TO BINDING ARBITRATION AND A WAIVER OF CLASS ACTION RIGHTS AS DETAILED IN SECTION 13. PLEASE READ THE AGREEMENT CAREFULLY.**
_Our Terms of Use have been updated as of September 5, 2016_
## 1. Acceptance of Terms ##
MetaMask provides a platform for managing Ethereum (or "ETH") accounts, and allowing ordinary websites to interact with the Ethereum blockchain, while keeping the user in control over what transactions they approve, through our website located at[ ](http://metamask.io)[https://metamask.io/](https://metamask.io/) and browser plugin (the "Site") — which includes text, images, audio, code and other materials (collectively, the “Content”) and all of the features, and services provided. The Site, and any other features, tools, materials, or other services offered from time to time by MetaMask are referred to here as the “Service.” Please read these Terms of Use (the “Terms” or “Terms of Use”) carefully before using the Service. By using or otherwise accessing the Services, or clicking to accept or agree to these Terms where that option is made available, you (1) accept and agree to these Terms (2) consent to the collection, use, disclosure and other handling of information as described in our Privacy Policy and (3) any additional terms, rules and conditions of participation issued by MetaMask from time to time. If you do not agree to the Terms, then you may not access or use the Content or Services.
## 2. Modification of Terms of Use ##
Except for Section 13, providing for binding arbitration and waiver of class action rights, MetaMask reserves the right, at its sole discretion, to modify or replace the Terms of Use at any time. The most current version of these Terms will be posted on our Site. You shall be responsible for reviewing and becoming familiar with any such modifications. Use of the Services by you after any modification to the Terms constitutes your acceptance of the Terms of Use as modified.
## 3. Eligibility ##
You hereby represent and warrant that you are fully able and competent to enter into the terms, conditions, obligations, affirmations, representations and warranties set forth in these Terms and to abide by and comply with these Terms.
MetaMask is a global platform and by accessing the Content or Services, you are representing and warranting that, you are of the legal age of majority in your jurisdiction as is required to access such Services and Content and enter into arrangements as provided by the Service. You further represent that you are otherwise legally permitted to use the service in your jurisdiction including owning cryptographic tokens of value, and interacting with the Services or Content in any way. You further represent you are responsible for ensuring compliance with the laws of your jurisdiction and acknowledge that MetaMask is not liable for your compliance with such laws.
## 4 Account Password and Security ##
When setting up an account within MetaMask, you will be responsible for keeping your own account secrets, which may be a twelve-word seed phrase, an account file, or other locally stored secret information. MetaMask encrypts this information locally with a password you provide, that we never send to our servers. You agree to (a) never use the same password for MetaMask that you have ever used outside of this service; (b) keep your secret information and password confidential and do not share them with anyone else; (c) immediately notify MetaMask of any unauthorized use of your account or breach of security. MetaMask cannot and will not be liable for any loss or damage arising from your failure to comply with this section.
## 5. Representations, Warranties, and Risks ##
### 5.1. Warranty Disclaimer ###
You expressly understand and agree that your use of the Service is at your sole risk. The Service (including the Service and the Content) are provided on an "AS IS" and "as available" basis, without warranties of any kind, either express or implied, including, without limitation, implied warranties of merchantability, fitness for a particular purpose or non-infringement. You acknowledge that MetaMask has no control over, and no duty to take any action regarding: which users gain access to or use the Service; what effects the Content may have on you; how you may interpret or use the Content; or what actions you may take as a result of having been exposed to the Content. You release MetaMask from all liability for you having acquired or not acquired Content through the Service. MetaMask makes no representations concerning any Content contained in or accessed through the Service, and MetaMask will not be responsible or liable for the accuracy, copyright compliance, legality or decency of material contained in or accessed through the Service.
### 5.2 Sophistication and Risk of Cryptographic Systems ###
By utilizing the Service or interacting with the Content or platform in any way, you represent that you understand the inherent risks associated with cryptographic systems; and warrant that you have an understanding of the usage and intricacies of native cryptographic tokens, like Ether (ETH) and Bitcoin (BTC), smart contract based tokens such as those that follow the Ethereum Token Standard (https://github.com/ethereum/EIPs/issues/20), and blockchain-based software systems.
### 5.3 Risk of Regulatory Actions in One or More Jurisdictions ###
MetaMask and ETH could be impacted by one or more regulatory inquiries or regulatory action, which could impede or limit the ability of MetaMask to continue to develop, or which could impede or limit your ability to access or use the Service or Ethereum blockchain.
### 5.4 Risk of Weaknesses or Exploits in the Field of Cryptography ###
You acknowledge and understand that Cryptography is a progressing field. Advances in code cracking or technical advances such as the development of quantum computers may present risks to cryptocurrencies and Services of Content, which could result in the theft or loss of your cryptographic tokens or property. To the extent possible, MetaMask intends to update the protocol underlying Services to account for any advances in cryptography and to incorporate additional security measures, but does not guarantee or otherwise represent full security of the system. By using the Service or accessing Content, you acknowledge these inherent risks.
### 5.5 Volatility of Crypto Currencies ###
You understand that Ethereum and other blockchain technologies and associated currencies or tokens are highly volatile due to many factors including but not limited to adoption, speculation, technology and security risks. You also acknowledge that the cost of transacting on such technologies is variable and may increase at any time causing impact to any activities taking place on the Ethereum blockchain. You acknowledge these risks and represent that MetaMask cannot be held liable for such fluctuations or increased costs.
### 5.6 Application Security ###
You acknowledge that Ethereum applications are code subject to flaws and acknowledge that you are solely responsible for evaluating any code provided by the Services or Content and the trustworthiness of any third-party websites, products, smart-contracts, or Content you access or use through the Service. You further expressly acknowledge and represent that Ethereum applications can be written maliciously or negligently, that MetaMask cannot be held liable for your interaction with such applications and that such applications may cause the loss of property or even identity. This warning and others later provided by MetaMask in no way evidence or represent an on-going duty to alert you to all of the potential risks of utilizing the Service or Content.
## 6. Indemnity ##
You agree to release and to indemnify, defend and hold harmless MetaMask and its parents, subsidiaries, affiliates and agencies, as well as the officers, directors, employees, shareholders and representatives of any of the foregoing entities, from and against any and all losses, liabilities, expenses, damages, costs (including attorneys fees and court costs) claims or actions of any kind whatsoever arising or resulting from your use of the Service, your violation of these Terms of Use, and any of your acts or omissions that implicate publicity rights, defamation or invasion of privacy. MetaMask reserves the right, at its own expense, to assume exclusive defense and control of any matter otherwise subject to indemnification by you and, in such case, you agree to cooperate with MetaMask in the defense of such matter.
## 7. Limitation on liability ##
YOU ACKNOWLEDGE AND AGREE THAT YOU ASSUME FULL RESPONSIBILITY FOR YOUR USE OF THE SITE AND SERVICE. YOU ACKNOWLEDGE AND AGREE THAT ANY INFORMATION YOU SEND OR RECEIVE DURING YOUR USE OF THE SITE AND SERVICE MAY NOT BE SECURE AND MAY BE INTERCEPTED OR LATER ACQUIRED BY UNAUTHORIZED PARTIES. YOU ACKNOWLEDGE AND AGREE THAT YOUR USE OF THE SITE AND SERVICE IS AT YOUR OWN RISK. RECOGNIZING SUCH, YOU UNDERSTAND AND AGREE THAT, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER METAMASK NOR ITS SUPPLIERS OR LICENSORS WILL BE LIABLE TO YOU FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY OR OTHER DAMAGES OF ANY KIND, INCLUDING WITHOUT LIMITATION DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER TANGIBLE OR INTANGIBLE LOSSES OR ANY OTHER DAMAGES BASED ON CONTRACT, TORT, STRICT LIABILITY OR ANY OTHER THEORY (EVEN IF METAMASK HAD BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), RESULTING FROM THE SITE OR SERVICE; THE USE OR THE INABILITY TO USE THE SITE OR SERVICE; UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE SITE OR SERVICE; ANY ACTIONS WE TAKE OR FAIL TO TAKE AS A RESULT OF COMMUNICATIONS YOU SEND TO US; HUMAN ERRORS; TECHNICAL MALFUNCTIONS; FAILURES, INCLUDING PUBLIC UTILITY OR TELEPHONE OUTAGES; OMISSIONS, INTERRUPTIONS, LATENCY, DELETIONS OR DEFECTS OF ANY DEVICE OR NETWORK, PROVIDERS, OR SOFTWARE (INCLUDING, BUT NOT LIMITED TO, THOSE THAT DO NOT PERMIT PARTICIPATION IN THE SERVICE); ANY INJURY OR DAMAGE TO COMPUTER EQUIPMENT; INABILITY TO FULLY ACCESS THE SITE OR SERVICE OR ANY OTHER WEBSITE; THEFT, TAMPERING, DESTRUCTION, OR UNAUTHORIZED ACCESS TO, IMAGES OR OTHER CONTENT OF ANY KIND; DATA THAT IS PROCESSED LATE OR INCORRECTLY OR IS INCOMPLETE OR LOST; TYPOGRAPHICAL, PRINTING OR OTHER ERRORS, OR ANY COMBINATION THEREOF; OR ANY OTHER MATTER RELATING TO THE SITE OR SERVICE.
SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS MAY NOT APPLY TO YOU.
## 8. Our Proprietary Rights ##
All title, ownership and intellectual property rights in and to the Service are owned by MetaMask or its licensors. You acknowledge and agree that the Service contains proprietary and confidential information that is protected by applicable intellectual property and other laws. Except as expressly authorized by MetaMask, you agree not to copy, modify, rent, lease, loan, sell, distribute, perform, display or create derivative works based on the Service, in whole or in part. MetaMask issues a license for MetaMask, found [here](https://github.com/MetaMask/metamask-plugin/blob/master/LICENSE). For information on other licenses utilized in the development of MetaMask, please see our attribution page at: [https://metamask.io/attributions.html](https://metamask.io/attributions.html)
## 9. Links ##
The Service provides, or third parties may provide, links to other World Wide Web or accessible sites, applications or resources. Because MetaMask has no control over such sites, applications and resources, you acknowledge and agree that MetaMask is not responsible for the availability of such external sites, applications or resources, and does not endorse and is not responsible or liable for any content, advertising, products or other materials on or available from such sites or resources. You further acknowledge and agree that MetaMask shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such site or resource.
## 10. Termination and Suspension ##
MetaMask may terminate or suspend all or part of the Service and your MetaMask access immediately, without prior notice or liability, if you breach any of the terms or conditions of the Terms. Upon termination of your access, your right to use the Service will immediately cease.
The following provisions of the Terms survive any termination of these Terms: INDEMNITY; WARRANTY DISCLAIMERS; LIMITATION ON LIABILITY; OUR PROPRIETARY RIGHTS; LINKS; TERMINATION; NO THIRD PARTY BENEFICIARIES; BINDING ARBITRATION AND CLASS ACTION WAIVER; GENERAL INFORMATION.
## 11. No Third Party Beneficiaries ##
You agree that, except as otherwise expressly provided in these Terms, there shall be no third party beneficiaries to the Terms.
## 12. Notice and Procedure For Making Claims of Copyright Infringement ##
If you believe that your copyright or the copyright of a person on whose behalf you are authorized to act has been infringed, please provide MetaMasks Copyright Agent a written Notice containing the following information:
· an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright or other intellectual property interest;
· a description of the copyrighted work or other intellectual property that you claim has been infringed;
· a description of where the material that you claim is infringing is located on the Service;
· your address, telephone number, and email address;
· a statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent, or the law;
· a statement by you, made under penalty of perjury, that the above information in your Notice is accurate and that you are the copyright or intellectual property owner or authorized to act on the copyright or intellectual property owner's behalf.
MetaMasks Copyright Agent can be reached at:
Email: copyright [at] metamask [dot] io
Mail:
Attention:
MetaMask Copyright ℅ ConsenSys
49 Bogart Street
Brooklyn, NY 11206
## 13. Binding Arbitration and Class Action Waiver ##
PLEASE READ THIS SECTION CAREFULLY IT MAY SIGNIFICANTLY AFFECT YOUR LEGAL RIGHTS, INCLUDING YOUR RIGHT TO FILE A LAWSUIT IN COURT
### 13.1 Initial Dispute Resolution ###
The parties shall use their best efforts to engage directly to settle any dispute, claim, question, or disagreement and engage in good faith negotiations which shall be a condition to either party initiating a lawsuit or arbitration.
### 13.2 Binding Arbitration ###
If the parties do not reach an agreed upon solution within a period of 30 days from the time informal dispute resolution under the Initial Dispute Resolution provision begins, then either party may initiate binding arbitration as the sole means to resolve claims, subject to the terms set forth below. Specifically, all claims arising out of or relating to these Terms (including their formation, performance and breach), the parties relationship with each other and/or your use of the Service shall be finally settled by binding arbitration administered by the American Arbitration Association in accordance with the provisions of its Commercial Arbitration Rules and the supplementary procedures for consumer related disputes of the American Arbitration Association (the "AAA"), excluding any rules or procedures governing or permitting class actions.
The arbitrator, and not any federal, state or local court or agency, shall have exclusive authority to resolve all disputes arising out of or relating to the interpretation, applicability, enforceability or formation of these Terms, including, but not limited to any claim that all or any part of these Terms are void or voidable, or whether a claim is subject to arbitration. The arbitrator shall be empowered to grant whatever relief would be available in a court under law or in equity. The arbitrators award shall be written, and binding on the parties and may be entered as a judgment in any court of competent jurisdiction.
The parties understand that, absent this mandatory provision, they would have the right to sue in court and have a jury trial. They further understand that, in some instances, the costs of arbitration could exceed the costs of litigation and the right to discovery may be more limited in arbitration than in court.
### 13.3 Location ###
Binding arbitration shall take place in New York. You agree to submit to the personal jurisdiction of any federal or state court in New York County, New York, in order to compel arbitration, to stay proceedings pending arbitration, or to confirm, modify, vacate or enter judgment on the award entered by the arbitrator.
### 13.4 Class Action Waiver ###
The parties further agree that any arbitration shall be conducted in their individual capacities only and not as a class action or other representative action, and the parties expressly waive their right to file a class action or seek relief on a class basis. YOU AND METAMASK AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR ITS INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. If any court or arbitrator determines that the class action waiver set forth in this paragraph is void or unenforceable for any reason or that an arbitration can proceed on a class basis, then the arbitration provision set forth above shall be deemed null and void in its entirety and the parties shall be deemed to have not agreed to arbitrate disputes.
### 13.5 Exception - Litigation of Intellectual Property and Small Claims Court Claims ###
Notwithstanding the parties' decision to resolve all disputes through arbitration, either party may bring an action in state or federal court to protect its intellectual property rights ("intellectual property rights" means patents, copyrights, moral rights, trademarks, and trade secrets, but not privacy or publicity rights). Either party may also seek relief in a small claims court for disputes or claims within the scope of that courts jurisdiction.
### 13.6 30-Day Right to Opt Out ###
You have the right to opt-out and not be bound by the arbitration and class action waiver provisions set forth above by sending written notice of your decision to opt-out to the following address: MetaMask ℅ ConsenSys, 49 Bogart Street, Brooklyn NY 11206 and via email at support@metamask.io. The notice must be sent within 30 days of September 6, 2016 or your first use of the Service, whichever is later, otherwise you shall be bound to arbitrate disputes in accordance with the terms of those paragraphs. If you opt-out of these arbitration provisions, MetaMask also will not be bound by them.
### 13.7 Changes to This Section ###
MetaMask will provide 60-days notice of any changes to this section. Changes will become effective on the 60th day, and will apply prospectively only to any claims arising after the 60th day.
For any dispute not subject to arbitration you and MetaMask agree to submit to the personal and exclusive jurisdiction of and venue in the federal and state courts located in New York, New York. You further agree to accept service of process by mail, and hereby waive any and all jurisdictional and venue defenses otherwise available.
The Terms and the relationship between you and MetaMask shall be governed by the laws of the State of New York without regard to conflict of law provisions.
## 14. General Information ##
### 14.1 Entire Agreement ###
These Terms (and any additional terms, rules and conditions of participation that MetaMask may post on the Service) constitute the entire agreement between you and MetaMask with respect to the Service and supersedes any prior agreements, oral or written, between you and MetaMask. In the event of a conflict between these Terms and the additional terms, rules and conditions of participation, the latter will prevail over the Terms to the extent of the conflict.
### 14.2 Waiver and Severability of Terms ###
The failure of MetaMask to exercise or enforce any right or provision of the Terms shall not constitute a waiver of such right or provision. If any provision of the Terms is found by an arbitrator or court of competent jurisdiction to be invalid, the parties nevertheless agree that the arbitrator or court should endeavor to give effect to the parties' intentions as reflected in the provision, and the other provisions of the Terms remain in full force and effect.
### 14.3 Statute of Limitations ###
You agree that regardless of any statute or law to the contrary, any claim or cause of action arising out of or related to the use of the Service or the Terms must be filed within one (1) year after such claim or cause of action arose or be forever barred.
### 14.4 Section Titles ###
The section titles in the Terms are for convenience only and have no legal or contractual effect.
### 14.5 Communications ###
Users with questions, complaints or claims with respect to the Service may contact us using the relevant contact information set forth above and at communications@metamask.io.
## 15 Related Links ##
**[Terms of Use](https://metamask.io/terms.html)**
**[Privacy](https://metamask.io/privacy.html)**
**[Attributions](https://metamask.io/attributions.html)**

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,4 @@
{
"reject": {
"message": "Odmítnout"
},
"account": {
"message": "Účet"
},
@ -64,24 +61,24 @@
"confirm": {
"message": "Potvrdit"
},
"confirmed": {
"message": "Potvrzeno"
},
"confirmPassword": {
"message": "Potvrdit heslo"
},
"confirmed": {
"message": "Potvrzeno"
},
"connectingToKovan": {
"message": "Připojuji se k Kovan Test Network"
},
"connectingToMainnet": {
"message": "Připojuji se k Main Ethereum Network"
},
"connectingToRopsten": {
"message": "Připojuji se k Ropsten Test Network"
"message": "Připojuji se k Ethereum Mainnet"
},
"connectingToRinkeby": {
"message": "Připojuji se k Rinkeby Test Network"
},
"connectingToRopsten": {
"message": "Připojuji se k Ropsten Test Network"
},
"continueToCoinSwitch": {
"message": "Přejít na CoinSwitch"
},
@ -91,12 +88,12 @@
"copiedExclamation": {
"message": "Zkopírováno!"
},
"copyToClipboard": {
"message": "Kopírovat do schránky"
},
"copyPrivateKey": {
"message": "Toto je váš privátní klíč (kliknutím zkopírujte)"
},
"copyToClipboard": {
"message": "Kopírovat do schránky"
},
"create": {
"message": "Vytvořit"
},
@ -106,18 +103,18 @@
"customGas": {
"message": "Nastavit palivo"
},
"customToken": {
"message": "Vlastní token"
},
"customRPC": {
"message": "Vlastní RPC"
},
"decimalsMustZerotoTen": {
"message": "Desetinných míst musí být od 0 do 36."
"customToken": {
"message": "Vlastní token"
},
"decimal": {
"message": "Počet desetinných míst přesnosti"
},
"decimalsMustZerotoTen": {
"message": "Desetinných míst musí být od 0 do 36."
},
"defaultNetwork": {
"message": "Výchozí síť pro Etherové transakce je Main Net."
},
@ -222,15 +219,12 @@
"invalidAddressRecipient": {
"message": "Adresa příjemce je neplatná"
},
"invalidInput": {
"message": "Neplatný vstup."
"invalidBlockExplorerURL": {
"message": "Neplatné Block Explorer URI"
},
"invalidRPC": {
"message": "Neplatné RPC URI"
},
"invalidBlockExplorerURL": {
"message": "Neplatné Block Explorer URI"
},
"jsonFile": {
"message": "JSON soubor",
"description": "format for importing an account"
@ -250,9 +244,6 @@
"loadingTokens": {
"message": "Načítám tokeny..."
},
"unlock": {
"message": "Přihlásit"
},
"lock": {
"message": "Odhlásit"
},
@ -262,12 +253,12 @@
"metamaskDescription": {
"message": "MetaMask je bezpečný osobní trezor pro Ethereum."
},
"myAccounts": {
"message": "Moje účty"
},
"mustSelectOne": {
"message": "Musíte zvolit aspoň 1 token."
},
"myAccounts": {
"message": "Moje účty"
},
"needEtherInWallet": {
"message": "Potřebujete Ether v peněžence, abyste mohli pomocí MetaMasku interagovat s decentralizovanými aplikacemi."
},
@ -303,12 +294,12 @@
"noTransactions": {
"message": "Žádné transakce"
},
"passwordsDontMatch": {
"message": "Hesla nejsou stejná"
},
"passwordNotLongEnough": {
"message": "Heslo není dost dlouhé"
},
"passwordsDontMatch": {
"message": "Hesla nejsou stejná"
},
"pastePrivateKey": {
"message": "Vložte zde svůj privátní klíč:",
"description": "For importing an account from a private key"
@ -335,18 +326,21 @@
"recipientAddress": {
"message": "Adresa příjemce"
},
"reject": {
"message": "Odmítnout"
},
"rejected": {
"message": "Odmítnuto"
},
"required": {
"message": "Povinné"
},
"resetAccount": {
"message": "Resetovat účet"
},
"restoreFromSeed": {
"message": "Obnovit z seed fráze"
},
"required": {
"message": "Povinné"
},
"revealSeedWords": {
"message": "Zobrazit slova klíčové fráze"
},
@ -359,6 +353,9 @@
"search": {
"message": "Hledat"
},
"searchTokens": {
"message": "Hledat tokeny"
},
"secretPhrase": {
"message": "Zadejte svých 12 slov tajné fráze k obnovení trezoru."
},
@ -380,29 +377,29 @@
"sendTokens": {
"message": "Odeslat tokeny"
},
"searchTokens": {
"message": "Hledat tokeny"
},
"settings": {
"message": "Nastavení"
},
"showPrivateKeys": {
"message": "Zobrazit privátní klíče"
},
"sigRequest": {
"message": "Požadavek podpisu"
},
"sign": {
"message": "Podepsat"
},
"signNotice": {
"message": "Podepsání zprávy může mít \nnebezpečný vedlejší učinek. Podepisujte zprávy pouze ze \nstránek, kterým plně důvěřujete celým svým účtem.\n Tato nebezpečná metoda bude odebrána v budoucí verzi. "
},
"signatureRequest": {
"message": "Požadavek podpisu"
},
"signed": {
"message": "Podepsáno"
},
"signNotice": {
"message": "Podepsání zprávy může mít \nnebezpečný vedlejší učinek. Podepisujte zprávy pouze ze \nstránek, kterým plně důvěřujete celým svým účtem.\n Tato nebezpečná metoda bude odebrána v budoucí verzi. "
},
"sigRequest": {
"message": "Požadavek podpisu"
"stateLogError": {
"message": "Chyba během získávání stavových protokolů."
},
"stateLogs": {
"message": "Stavové protokoly"
@ -410,9 +407,6 @@
"stateLogsDescription": {
"message": "Stavové protokoly obsahují vaše veřejné adresy účtů a odeslané transakce."
},
"stateLogError": {
"message": "Chyba během získávání stavových protokolů."
},
"submitted": {
"message": "Odesláno"
},
@ -459,6 +453,9 @@
"unknownNetwork": {
"message": "Neznámá soukromá síť"
},
"unlock": {
"message": "Přihlásit"
},
"urlErrorMsg": {
"message": "URI vyžadují korektní HTTP/HTTPS prefix."
},
@ -477,10 +474,10 @@
"welcome": {
"message": "Vítejte v MetaMask"
},
"yourSigRequested": {
"message": "Je vyžadován váš podpis"
},
"youSign": {
"message": "Podepisujete"
},
"yourSigRequested": {
"message": "Je vyžadován váš podpis"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,4 @@
{
"chartOnlyAvailableEth": {
"message": "Tabla solo disponible en redes Ethereum."
},
"contractInteraction": {
"message": "Interacción con contrato"
},
"reject": {
"message": "Rechazar"
},
"about": {
"message": "Acerca"
},
@ -38,17 +29,20 @@
"activityLog": {
"message": "registro de actividades"
},
"addAcquiredTokens": {
"message": "Agregar los tokens que has adquirido usando MetaMask"
},
"addAlias": {
"message": "Añadir alias"
},
"addNetwork": {
"message": "Añadir Red"
},
"addRecipient": {
"message": "Añadir destinatario"
},
"advanced": {
"message": "Avanzado"
},
"advancedOptions": {
"message": "Opciones Avanzadas"
"addSuggestedTokens": {
"message": "Agregar tokens propuestos"
},
"addToAddressBook": {
"message": "Añadir al libro de direcciones"
@ -56,20 +50,17 @@
"addToAddressBookModalPlaceholder": {
"message": "p. ej. John D."
},
"addAlias": {
"message": "Añadir alias"
},
"addToken": {
"message": "Agregar token"
},
"addTokens": {
"message": "Agregar tokens"
},
"addSuggestedTokens": {
"message": "Agregar tokens propuestos"
"advanced": {
"message": "Avanzado"
},
"addAcquiredTokens": {
"message": "Agregar los tokens que has adquirido usando MetaMask"
"advancedOptions": {
"message": "Opciones Avanzadas"
},
"amount": {
"message": "Cantidad"
@ -91,15 +82,15 @@
"asset": {
"message": "Activo"
},
"attemptingConnect": {
"message": "Intentando conectar a la Blockchain"
},
"attemptToCancel": {
"message": "¿Intentar cancelar?"
},
"attemptToCancelDescription": {
"message": "El intentar cancelar la transacción no garantiza la cancelación de la misma. Si el intento de cancelación tiene éxito, se le cobrará la comisión de transacción indicada arriba."
},
"attemptingConnect": {
"message": "Intentando conectar a la Blockchain"
},
"attributions": {
"message": "Atribuciones"
},
@ -157,90 +148,93 @@
"chainId": {
"message": "ID Cadena"
},
"chartOnlyAvailableEth": {
"message": "Tabla solo disponible en redes Ethereum."
},
"chromeRequiredForHardwareWallets": {
"message": "Hay que usar MetaMask en Google Chrome para poder conectarse con tu Monedero Físico."
},
"clickToRevealSeed": {
"message": "Haga clic aquí para revelar palabras secretas"
},
"close": {
"message": "Cerrar"
},
"chromeRequiredForHardwareWallets": {
"message": "Hay que usar MetaMask en Google Chrome para poder conectarse con tu Monedero Físico."
},
"confirm": {
"message": "Confirmar"
},
"confirmed": {
"message": "Confirmado"
},
"confirmPassword": {
"message": "Confirmar contraseña"
},
"confirmed": {
"message": "Confirmado"
},
"congratulations": {
"message": "Enhorabuena"
},
"connectHardwareWallet": {
"message": "Conectar Monedero Físico"
},
"connect": {
"message": "Conectar"
},
"connectHardwareWallet": {
"message": "Conectar Monedero Físico"
},
"connectingTo": {
"message": "Conectánodse a $1"
},
"connectingToGoerli": {
"message": "Conectando al Test de Red Goerli"
},
"connectingToKovan": {
"message": "Conectando a la red de test Kovan"
},
"connectingToMainnet": {
"message": "Conectando a la red principal de Ethereum (Main Net)"
},
"connectingToRopsten": {
"message": "Conectando a la red de test Ropsten"
},
"connectingToRinkeby": {
"message": "Conectando a la red de test Rinkeby"
},
"connectingToLocalhost": {
"message": "Conectando to Localhost 8545"
},
"connectingToGoerli": {
"message": "Conectando al Test de Red Goerli"
},
"continueToWyre": {
"message": "Continuar a Wyre"
"connectingToRopsten": {
"message": "Conectando a la red de test Ropsten"
},
"continueToCoinSwitch": {
"message": "Continuar a CoinSwitch"
},
"continueToWyre": {
"message": "Continuar a Wyre"
},
"contractDeployment": {
"message": "Desplegar (Deploy) contrato"
},
"contractInteraction": {
"message": "Interacción con contrato"
},
"copiedExclamation": {
"message": "¡Copiado!"
},
"copyAddress": {
"message": "Copiar la dirección al portapapeles"
},
"copyTransactionId": {
"message": "Copiar ID Transacción"
},
"copiedTransactionId": {
"message": "ID Transacción copiado"
},
"copyToClipboard": {
"message": "Copiar al portapapeles"
"copyAddress": {
"message": "Copiar la dirección al portapapeles"
},
"copyPrivateKey": {
"message": "Ésta es tu clave privada (haz click para copiar)"
},
"copyToClipboard": {
"message": "Copiar al portapapeles"
},
"copyTransactionId": {
"message": "Copiar ID Transacción"
},
"create": {
"message": "Crear"
},
"createAccount": {
"message": "Crear cuenta"
},
"createAWallet": {
"message": "Crear Wallet"
},
"createAccount": {
"message": "Crear cuenta"
},
"createPassword": {
"message": "Crear Contraseña"
},
@ -256,18 +250,18 @@
"customGasSubTitle": {
"message": "Aumentar la comisión puede hacer que el tiempo de procesamiento se disminuya, pero no lo garantiza."
},
"customToken": {
"message": "Token Personalizado"
},
"customRPC": {
"message": "RPC personalizado"
},
"decimalsMustZerotoTen": {
"message": "Los decimales deben ser al menos 0 y no más de 36"
"customToken": {
"message": "Token Personalizado"
},
"decimal": {
"message": "Decimales de precisión"
},
"decimalsMustZerotoTen": {
"message": "Los decimales deben ser al menos 0 y no más de 36"
},
"defaultNetwork": {
"message": "La red por defecto para las transacciones de Ether es MainNet (red principal)"
},
@ -295,15 +289,15 @@
"done": {
"message": "Completo"
},
"dontHaveAHardwareWallet": {
"message": "¿No tienes un monedero físico?"
},
"downloadGoogleChrome": {
"message": "Descargar Google Chrome"
},
"downloadStateLogs": {
"message": "Descargar logs de estado"
},
"dontHaveAHardwareWallet": {
"message": "¿No tienes un monedero físico?"
},
"dropped": {
"message": "Caído"
},
@ -325,12 +319,12 @@
"enterPasswordContinue": {
"message": "Introducir contraseña para seguir"
},
"etherscanView": {
"message": "Ver la cuenta en Etherscan"
},
"estimatedProcessingTimes": {
"message": "Tiempo Previsto de procesamiento"
},
"etherscanView": {
"message": "Ver la cuenta en Etherscan"
},
"expandView": {
"message": "Ampliar Vista"
},
@ -369,17 +363,14 @@
"gasLimitTooLow": {
"message": "El límite de gas debe ser de al menos 21000"
},
"gasUsed": {
"message": "Gas usado"
},
"gasPrice": {
"message": "Precio del Gas (GWEI)"
},
"gasPriceExtremelyLow": {
"message": "Precio de Gas excesivamente bajo"
},
"gasPriceNoDenom": {
"message": "Precio de Gas"
"gasUsed": {
"message": "Gas usado"
},
"generalSettingsDescription": {
"message": "Conversión de divisas, divisa principal, idioma, blockies identicon"
@ -432,6 +423,9 @@
"importAccountMsg": {
"message": "Las cuentas importadas no serán asociadas con tu cuenta original creada con tu MetaMask. Aprende más acerca de importar cuentas."
},
"importUsingSeed": {
"message": "Importar usando la frase semilla de la cuenta"
},
"importWallet": {
"message": "Importar Wallet"
},
@ -439,9 +433,6 @@
"message": "Importado",
"description": "status showing that an account has been fully loaded into the keyring"
},
"importUsingSeed": {
"message": "Importar usando la frase semilla de la cuenta"
},
"infoHelp": {
"message": "Informacion y ayuda"
},
@ -466,15 +457,12 @@
"invalidAddressRecipientNotEthNetwork": {
"message": "No es una red ETH, convertirlo a minúscula"
},
"invalidInput": {
"message": "Entrada inválida"
"invalidBlockExplorerURL": {
"message": "Invalida URL del Block Explorer"
},
"invalidRPC": {
"message": "Invalida URL del RPC"
},
"invalidBlockExplorerURL": {
"message": "Invalida URL del Block Explorer"
},
"invalidSeedPhrase": {
"message": "Frase semilla no válida."
},
@ -500,15 +488,15 @@
"liveGasPricePredictions": {
"message": "Previsiones en vivo del precio de Gas"
},
"loadMore": {
"message": "Cargar Más"
},
"loading": {
"message": "Cargando..."
},
"loadingTokens": {
"message": "Cargando tokens..."
},
"loadMore": {
"message": "Cargar Más"
},
"lock": {
"message": "Cerrar sesión"
},
@ -524,12 +512,12 @@
"metamaskVersion": {
"message": "Versión de MetaMask"
},
"myAccounts": {
"message": "Mis cuentas"
},
"mustSelectOne": {
"message": "Debe seleccionar al menos un (1) token"
},
"myAccounts": {
"message": "Mis cuentas"
},
"needEtherInWallet": {
"message": "Para interactuar con una aplicación descentralizada usando MetaMask, necesitas tener Ether en tu billetera"
},
@ -559,17 +547,11 @@
"newContract": {
"message": "Nuevo contrato"
},
"newPassword": {
"message": "Nueva contraseña (mínimo [8] caracteres)"
},
"newNetwork": {
"message": "Red Nueva"
},
"optionalChainId": {
"message": "ChainID (opcional)"
},
"optionalSymbol": {
"message": "Símbolo (opcional)"
"newPassword": {
"message": "Nueva contraseña (mínimo [8] caracteres)"
},
"newTotal": {
"message": "Nuevo total"
@ -589,15 +571,18 @@
"noTransactions": {
"message": "Sin transacciones"
},
"noWebcamFoundTitle": {
"message": "No se encontró a la webcam"
},
"noWebcamFound": {
"message": "No se encontró a la webcam de tu ordenador. Favor de volver a intentar."
},
"noWebcamFoundTitle": {
"message": "No se encontró a la webcam"
},
"ofTextNofM": {
"message": "de"
},
"optionalSymbol": {
"message": "Símbolo (opcional)"
},
"orderOneHere": {
"message": "Comprate un Trezor o Ledger y guarda tus fondos en almacenamiento frío"
},
@ -610,12 +595,12 @@
"password": {
"message": "Contraseña"
},
"passwordsDontMatch": {
"message": "Las contraseñas no coinciden"
},
"passwordNotLongEnough": {
"message": "La contraseña no es lo suficientemente larga"
},
"passwordsDontMatch": {
"message": "Las contraseñas no coinciden"
},
"pastePrivateKey": {
"message": "Pega tu clave privada aqui",
"description": "For importing an account from a private key"
@ -651,63 +636,30 @@
"readdToken": {
"message": "Puedes volver a agregar este token en el futuro pinchando sobre 'Agregar token' en el menú de opciones de tu cuenta"
},
"readyToConnect": {
"message": "¿Listo/a para conectar?"
},
"recents": {
"message": "Recientes"
},
"recipientAddress": {
"message": "Dirección del receptor"
},
"reject": {
"message": "Rechazar"
},
"rejectAll": {
"message": "Rechazar todas"
},
"rejectTxsN": {
"message": "Rechazar transacciones de $1"
},
"rejectTxsDescription": {
"message": "Está al punto de rechazar transacciones de $1 en lote."
},
"rejectTxsN": {
"message": "Rechazar transacciones de $1"
},
"rejected": {
"message": "Rechazado"
},
"reset": {
"message": "Reiniciar"
},
"resetAccount": {
"message": "Reiniciar cuenta"
},
"resetAccountDescription": {
"message": "Reiniciar tu cuenta borrará tu historial de transacciones."
},
"restoreFromSeed": {
"message": "Restaurar desde semilla"
},
"restoreAccountWithSeed": {
"message": "Restaurar tu Cuenta con Frase Semilla"
},
"requestsAwaitingAcknowledgement": {
"message": "peticiones pendientes de reconocimiento"
},
"required": {
"message": "Requerido"
},
"restore": {
"message": "Restaurar"
},
"revealSeedWords": {
"message": "Revelar palabras de semilla"
},
"revealSeedWordsTitle": {
"message": "Frase semilla"
},
"revealSeedWordsDescription": {
"message": "Si en algún momento cambias de navegador o de ordenador, necesitarás esta frase semilla para acceder a tus cuentas. Guárdatela en un lugar seguro y secreto."
},
"revealSeedWordsWarningTitle": {
"message": "NO compartas esta frase con nadie!"
},
"revealSeedWordsWarning": {
"message": "¡No recuperes tu semilla en un lugar pública! Esas palabras pueden ser usadas para robarte todas tus cuentas"
},
"remove": {
"message": "borrar"
},
@ -717,8 +669,44 @@
"removeAccountDescription": {
"message": "Se borrará esta cuenta de tu monedero. Por favor, asegúrate de tener la frase semilla o clave personal original para esta cuenta importada antes de seguir adelante. Podrás importar o crear cuentas de nuevo del menu desplegable de cuentas."
},
"readyToConnect": {
"message": "¿Listo/a para conectar?"
"requestsAwaitingAcknowledgement": {
"message": "peticiones pendientes de reconocimiento"
},
"required": {
"message": "Requerido"
},
"reset": {
"message": "Reiniciar"
},
"resetAccount": {
"message": "Reiniciar cuenta"
},
"resetAccountDescription": {
"message": "Reiniciar tu cuenta borrará tu historial de transacciones."
},
"restore": {
"message": "Restaurar"
},
"restoreAccountWithSeed": {
"message": "Restaurar tu Cuenta con Frase Semilla"
},
"restoreFromSeed": {
"message": "Restaurar desde semilla"
},
"revealSeedWords": {
"message": "Revelar palabras de semilla"
},
"revealSeedWordsDescription": {
"message": "Si en algún momento cambias de navegador o de ordenador, necesitarás esta frase semilla para acceder a tus cuentas. Guárdatela en un lugar seguro y secreto."
},
"revealSeedWordsTitle": {
"message": "Frase semilla"
},
"revealSeedWordsWarning": {
"message": "¡No recuperes tu semilla en un lugar pública! Esas palabras pueden ser usadas para robarte todas tus cuentas"
},
"revealSeedWordsWarningTitle": {
"message": "NO compartas esta frase con nadie!"
},
"rinkeby": {
"message": "Red privada Rinkeby"
@ -729,12 +717,6 @@
"save": {
"message": "Guardar"
},
"slow": {
"message": "Lento"
},
"slower": {
"message": "Más lento"
},
"saveAsCsvFile": {
"message": "Guardar como archivo CSV"
},
@ -750,6 +732,9 @@
"searchResults": {
"message": "Resultados de la Búsqueda"
},
"searchTokens": {
"message": "Buscar Tokens"
},
"secretPhrase": {
"message": "Ingresa tu frase de doce (12) palabras para restaurar tu bóveda"
},
@ -759,12 +744,27 @@
"seedPhraseReq": {
"message": "las frases semilla tienen doce (12) palabras de largo"
},
"selectAHigherGasFee": {
"message": "Seleccione una comisión de gas más elevada para agilizar el procesamiento de tu transacción.*"
},
"selectAnAccount": {
"message": "Seleccionar una Cuenta"
},
"selectAnAccountHelp": {
"message": "Seleccionar la cuenta que quiere ver en MetaMask"
},
"selectCurrency": {
"message": "Seleccionar moneda"
},
"selectHdPath": {
"message": "Seleccionar la ruta HD (jerárquica determinista)"
},
"selectLocale": {
"message": "Seleccionar local"
},
"selectPathHelp": {
"message": "Si no ves tus cuentas actuales de Ledger abajo, prueba cambiando la ruta a \"Legacy (MEW / MyCrypto)\""
},
"selectType": {
"message": "Seleccionar tipo"
},
@ -789,50 +789,38 @@
"separateEachWord": {
"message": "Separar a cada palabra con un sólo espacio"
},
"searchTokens": {
"message": "Buscar Tokens"
},
"selectAnAccount": {
"message": "Seleccionar una Cuenta"
},
"selectAnAccountHelp": {
"message": "Seleccionar la cuenta que quiere ver en MetaMask"
},
"selectAHigherGasFee": {
"message": "Seleccione una comisión de gas más elevada para agilizar el procesamiento de tu transacción.*"
},
"selectHdPath": {
"message": "Seleccionar la ruta HD (jerárquica determinista)"
},
"selectPathHelp": {
"message": "Si no ves tus cuentas actuales de Ledger abajo, prueba cambiando la ruta a \"Legacy (MEW / MyCrypto)\""
},
"settings": {
"message": "Configuración"
},
"showPrivateKeys": {
"message": "Mostrar claves privadas"
},
"showHexData": {
"message": "Mostrar Datos en formato Hex"
},
"showHexDataDescription": {
"message": "Seleccionar esto para mostrar el campo de los datos en formato hex en la pantalla de mandar"
},
"showPrivateKeys": {
"message": "Mostrar claves privadas"
},
"sigRequest": {
"message": "Solicitud de firma"
},
"sign": {
"message": "Firmar"
},
"signNotice": {
"message": "Firmar este mensaje puede tener\n efectos secundarios peligrosos. Firma sólo\nmensajes desde sitios a los que estés plenamente dispuesto a confiar tu cuenta.\nEste método peligroso va a ser \neliminado en una version futura."
},
"signatureRequest": {
"message": "Petición de Firma"
},
"signed": {
"message": "Firmado"
},
"signNotice": {
"message": "Firmar este mensaje puede tener\n efectos secundarios peligrosos. Firma sólo\nmensajes desde sitios a los que estés plenamente dispuesto a confiar tu cuenta.\nEste método peligroso va a ser \neliminado en una version futura."
"slow": {
"message": "Lento"
},
"sigRequest": {
"message": "Solicitud de firma"
"slower": {
"message": "Más lento"
},
"somethingWentWrong": {
"message": "¡Ups! Algo funcionó mal."
@ -846,8 +834,8 @@
"speedUpTransaction": {
"message": "Agilizar esta transacción"
},
"switchNetworks": {
"message": "Cambiar de Red"
"stateLogError": {
"message": "Error en la recogida de logs de estado"
},
"stateLogs": {
"message": "Logs de estado"
@ -855,9 +843,6 @@
"stateLogsDescription": {
"message": "Los logs de estado contienen tus direcciones de cuentas públicas y transacciones envíadas"
},
"stateLogError": {
"message": "Error en la recogida de logs de estado"
},
"step1HardwareWallet": {
"message": "1. Conectar monedero físico."
},
@ -882,6 +867,9 @@
"supportCenter": {
"message": "Visita nuestro centro de atención"
},
"switchNetworks": {
"message": "Cambiar de Red"
},
"symbolBetweenZeroTwelve": {
"message": "El símbolo debe tener 11 caracteres o menos."
},
@ -909,6 +897,12 @@
"transaction": {
"message": "transacción"
},
"transactionCancelAttempted": {
"message": "Se intentó cancelar la transacción con una comisión de gas de $1, en $2"
},
"transactionCancelSuccess": {
"message": "La transacción se canceló con éxito en $2"
},
"transactionConfirmed": {
"message": "Se confirmó la transacción a $2."
},
@ -918,36 +912,30 @@
"transactionDropped": {
"message": "Transacción se cayó en $2."
},
"transactionSubmitted": {
"message": "Se propuso la transacción con una comisión de gas de $1, en $2."
},
"transactionResubmitted": {
"message": "Se volvió a proponer la transacción, aumentando la comisión de gas a $1, en $2"
},
"transactionUpdated": {
"message": "Se actualizó la transacción en $2."
},
"transactionErrored": {
"message": "La transacción tuvo un error."
},
"transactionCancelAttempted": {
"message": "Se intentó cancelar la transacción con una comisión de gas de $1, en $2"
},
"transactionCancelSuccess": {
"message": "La transacción se canceló con éxito en $2"
},
"transactionError": {
"message": "Error en transacción. Se produjo una excepción en el código del contrato."
},
"transactionErrorNoContract": {
"message": "Intentando llamar una función en una dirección que no es del contrato."
},
"transactionErrored": {
"message": "La transacción tuvo un error."
},
"transactionFee": {
"message": "Comisión de la transacción"
},
"transactionResubmitted": {
"message": "Se volvió a proponer la transacción, aumentando la comisión de gas a $1, en $2"
},
"transactionSubmitted": {
"message": "Se propuso la transacción con una comisión de gas de $1, en $2."
},
"transactionTime": {
"message": "Tiempo de Transacción"
},
"transactionUpdated": {
"message": "Se actualizó la transacción en $2."
},
"transfer": {
"message": "Traspasar"
},
@ -973,18 +961,18 @@
"unknown": {
"message": "Desconocido (a)"
},
"unknownCameraError": {
"message": "Hubo un error al intentar acceder a la cámara. Por favor, vuelve a intentar..."
},
"unknownCameraErrorTitle": {
"message": "Uuups! Algo se estropeó..."
},
"unknownNetwork": {
"message": "Red privada desconocida"
},
"unknownQrCode": {
"message": "Error: No pudimos identificar ese código QR"
},
"unknownCameraErrorTitle": {
"message": "Uuups! Algo se estropeó..."
},
"unknownCameraError": {
"message": "Hubo un error al intentar acceder a la cámara. Por favor, vuelve a intentar..."
},
"unlock": {
"message": "Desbloquear"
},
@ -1012,27 +1000,27 @@
"walletSeed": {
"message": "Semilla de la billetera"
},
"welcomeBack": {
"message": "¡Bienvenido de nuevo!"
},
"welcome": {
"message": "Bienvenido a MetaMask"
},
"welcomeBack": {
"message": "¡Bienvenido de nuevo!"
},
"yesLetsTry": {
"message": "Sí, probemos"
},
"youNeedToAllowCameraAccess": {
"message": "Tienes que permitir acceso a la cámara para usar esta función."
},
"yourSigRequested": {
"message": "Tu firma ya fue solicitada"
},
"youSign": {
"message": "Usted está firmando"
},
"yourPrivateSeedPhrase": {
"message": "Tu frase semilla privada"
},
"yourSigRequested": {
"message": "Tu firma ya fue solicitada"
},
"zeroGasPriceOnSpeedUpError": {
"message": "No hubo precio de gas al agilizar"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,4 @@
{
"chartOnlyAvailableEth": {
"message": "Available lang ang chart sa mga Ethereum network."
},
"contractInteraction": {
"message": "Paggamit sa Contract"
},
"reject": {
"message": "Tanggihan"
},
"about": {
"message": "Tungkol sa"
},
@ -35,17 +26,20 @@
"activityLog": {
"message": "log ng aktibidad"
},
"addAcquiredTokens": {
"message": "Idagdag ang mga token na nakuha mo gamit ang MetaMask"
},
"addAlias": {
"message": "Magdagdag ng alias"
},
"addNetwork": {
"message": "Magdagdag ng Network"
},
"addRecipient": {
"message": "Magdagdag ng Recipient"
},
"advancedSettingsDescription": {
"message": "I-access ang mga feature para sa mga developer, mag-download ng mga State Log, I-reset ang Account, mag-set up ng mga testnet at custom RPC"
},
"advancedOptions": {
"message": "Mga Advanced na Opsyon"
"addSuggestedTokens": {
"message": "Magdagdag ng Mga Iminungkahing Token"
},
"addToAddressBook": {
"message": "Idagdag sa address book"
@ -53,20 +47,17 @@
"addToAddressBookModalPlaceholder": {
"message": "hal. Juan D."
},
"addAlias": {
"message": "Magdagdag ng alias"
},
"addToken": {
"message": "Magdagdag ng Token"
},
"addTokens": {
"message": "Magdagdag ng Mga Token"
},
"addSuggestedTokens": {
"message": "Magdagdag ng Mga Iminungkahing Token"
"advancedOptions": {
"message": "Mga Advanced na Opsyon"
},
"addAcquiredTokens": {
"message": "Idagdag ang mga token na nakuha mo gamit ang MetaMask"
"advancedSettingsDescription": {
"message": "I-access ang mga feature para sa mga developer, mag-download ng mga State Log, I-reset ang Account, mag-set up ng mga testnet at custom RPC"
},
"amount": {
"message": "Halaga"
@ -85,15 +76,15 @@
"approved": {
"message": "Inaprubahan"
},
"attemptingConnect": {
"message": "Sinusubukang kumonekta sa blockchain."
},
"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."
},
"attributions": {
"message": "Mga Attribution"
},
@ -109,12 +100,12 @@
"backToAll": {
"message": "Bumalik sa Lahat"
},
"backupApprovalNotice": {
"message": "I-back up ang iyong Secret Recovery code para panatilihing secure ang iyong wallet at pondo."
},
"backupApprovalInfo": {
"message": "Ang secret code na ito ay kinakailangan para ma-recover ang iyong wallet kung sakaling mawawala mo ang iyong device, nakalimutan mo ang iyong password, kailangan mong i-install ulit ang MetaMask, o gusto mong i-access ang iyong wallet sa ibang device."
},
"backupApprovalNotice": {
"message": "I-back up ang iyong Secret Recovery code para panatilihing secure ang iyong wallet at pondo."
},
"backupNow": {
"message": "I-back up ngayon"
},
@ -140,26 +131,17 @@
"builtInCalifornia": {
"message": "Ang MetaMask ay dinisenyo at binuo sa California."
},
"buyWithWyre": {
"message": "Bumili ng ETH gamit ang Wyre"
},
"buyWithWyreDescription": {
"message": "Binibigyang-daan ka ng Wyre na gumamit ng credit card para magdeposito ng ETH nang direkta sa iyong MetaMask account."
},
"buyCoinSwitch": {
"message": "Bilhin sa CoinSwitch"
},
"buyCoinSwitchExplainer": {
"message": "Ang CoinSwitch ay ang one-stop na destinasyon para magpapalit ng mahigit sa 300 cryptocurrency sa pinakamababang halaga."
},
"off": {
"message": "Naka-off"
"buyWithWyre": {
"message": "Bumili ng ETH gamit ang Wyre"
},
"on": {
"message": "Naka-on"
},
"optionalBlockExplorerUrl": {
"message": "Block Explorer URL (opsyonal)"
"buyWithWyreDescription": {
"message": "Binibigyang-daan ka ng Wyre na gumamit ng credit card para magdeposito ng ETH nang direkta sa iyong MetaMask account."
},
"cancel": {
"message": "Kanselahin"
@ -173,93 +155,96 @@
"cancelled": {
"message": "Nakansela"
},
"chartOnlyAvailableEth": {
"message": "Available lang ang chart sa mga Ethereum network."
},
"chromeRequiredForHardwareWallets": {
"message": "Kailangan mong gamitin ang MetaMask sa Google Chrome upang makakonekta sa iyong Hardware Wallet."
},
"clickToRevealSeed": {
"message": "Mag-click dito para ipakita ang iyong secret words"
},
"close": {
"message": "Isara"
},
"chromeRequiredForHardwareWallets": {
"message": "Kailangan mong gamitin ang MetaMask sa Google Chrome upang makakonekta sa iyong Hardware Wallet."
},
"confirm": {
"message": "Kumpirmahin"
},
"confirmed": {
"message": "Nakumpirma"
},
"confirmPassword": {
"message": "Kumpirmahin ang Password"
},
"confirmSecretBackupPhrase": {
"message": "Kumpirmahin ang iyong Secret Backup Phrase"
},
"confirmed": {
"message": "Nakumpirma"
},
"congratulations": {
"message": "Binabati kita"
},
"connectHardwareWallet": {
"message": "Magkonekta ng Hardware Wallet"
},
"connect": {
"message": "Kumonekta"
},
"connectHardwareWallet": {
"message": "Magkonekta ng Hardware Wallet"
},
"connectingTo": {
"message": "Kumokonekta sa $1"
},
"connectingToGoerli": {
"message": "Kumokonekta sa Goerli Test Network"
},
"connectingToKovan": {
"message": "Kumokonekta sa Kovan Test Network"
},
"connectingToMainnet": {
"message": "Kumokonekta sa Main Ethereum Network"
},
"connectingToRopsten": {
"message": "Kumokonekta sa Ropsten Test Network"
"message": "Kumokonekta sa Ethereum Mainnet"
},
"connectingToRinkeby": {
"message": "Kumokonekta sa Rinkeby Test Network"
},
"connectingToLocalhost": {
"message": "Kumokonekta sa Localhost 8545"
},
"connectingToGoerli": {
"message": "Kumokonekta sa Goerli Test Network"
},
"continueToWyre": {
"message": "Magpatuloy sa Wyre"
"connectingToRopsten": {
"message": "Kumokonekta sa Ropsten Test Network"
},
"continueToCoinSwitch": {
"message": "Magpatuloy sa CoinSwitch"
},
"continueToWyre": {
"message": "Magpatuloy sa Wyre"
},
"contractDeployment": {
"message": "Deployment ng Contract"
},
"contractInteraction": {
"message": "Paggamit sa Contract"
},
"copiedExclamation": {
"message": "Nakopya!"
},
"copyAddress": {
"message": "Kopyahin ang address sa clipboard"
},
"copyTransactionId": {
"message": "Kopyahin ang Transaction ID"
},
"copiedTransactionId": {
"message": "Nakopya ang Transaction ID"
},
"copyToClipboard": {
"message": "Kopyahin sa clipboard"
"copyAddress": {
"message": "Kopyahin ang address sa clipboard"
},
"copyPrivateKey": {
"message": "Ito ang iyong pribadong private key (i-click para kopyahin)"
},
"copyToClipboard": {
"message": "Kopyahin sa clipboard"
},
"copyTransactionId": {
"message": "Kopyahin ang Transaction ID"
},
"create": {
"message": "Gumawa"
},
"createAccount": {
"message": "Gumawa ng Account"
},
"createAWallet": {
"message": "Gumawa ng Wallet"
},
"createAccount": {
"message": "Gumawa ng Account"
},
"createPassword": {
"message": "Gumawa ng Password"
},
@ -278,12 +263,12 @@
"customToken": {
"message": "Custom na Token"
},
"decimalsMustZerotoTen": {
"message": "Ang mga decimal ay hindi dapat bumaba sa 0, at hindi lumampas sa 36."
},
"decimal": {
"message": "Bilang ng Decimal"
},
"decimalsMustZerotoTen": {
"message": "Ang mga decimal ay hindi dapat bumaba sa 0, at hindi lumampas sa 36."
},
"defaultNetwork": {
"message": "Ang default na network para sa mga transaksyon ng Ether ay Main Net."
},
@ -293,6 +278,12 @@
"deleteAccount": {
"message": "I-delete ang Account"
},
"deleteNetwork": {
"message": "I-delete ang Network?"
},
"deleteNetworkDescription": {
"message": "Sigurado ka bang gusto mong i-delete ang network na ito?"
},
"deposit": {
"message": "Deposito"
},
@ -311,6 +302,9 @@
"done": {
"message": "Tapos na"
},
"dontHaveAHardwareWallet": {
"message": "Wala ka bang hardware wallet?"
},
"downloadGoogleChrome": {
"message": "I-download ang Google Chrome"
},
@ -320,9 +314,6 @@
"downloadStateLogs": {
"message": "I-download ang mga State Log"
},
"dontHaveAHardwareWallet": {
"message": "Wala ka bang hardware wallet?"
},
"dropped": {
"message": "Na-drop"
},
@ -335,6 +326,9 @@
"endOfFlowMessage1": {
"message": "Pumasa ka sa test - panatilihing ligtas ang iyong seedphrase, responsibilidad mo ito!"
},
"endOfFlowMessage10": {
"message": "Tapos na Lahat"
},
"endOfFlowMessage2": {
"message": "Mga tip sa pag-store dito ng ligtas"
},
@ -359,15 +353,12 @@
"endOfFlowMessage9": {
"message": "Matuto pa."
},
"endOfFlowMessage10": {
"message": "Tapos na Lahat"
"ensNotFoundOnCurrentNetwork": {
"message": "Hindi nakita ang ENS name sa kasalukuyang network. Subukang lumipat sa Ethereum Mainnet."
},
"ensRegistrationError": {
"message": "May error sa pagrerehistro ng ENS name"
},
"ensNotFoundOnCurrentNetwork": {
"message": "Hindi nakita ang ENS name sa kasalukuyang network. Subukang lumipat sa Main Ethereum Network."
},
"enterAnAlias": {
"message": "Maglagay ng alias"
},
@ -377,12 +368,12 @@
"enterPasswordContinue": {
"message": "Ilagay ang password para magpatuloy"
},
"etherscanView": {
"message": "Tingnan ang account sa Etherscan"
},
"estimatedProcessingTimes": {
"message": "Tinatantiyang Tagal ng Pagproseso"
},
"etherscanView": {
"message": "Tingnan ang account sa Etherscan"
},
"expandView": {
"message": "I-expand ang View"
},
@ -414,26 +405,23 @@
"gasLimit": {
"message": "Limitasyon sa Gas"
},
"gasLimitInfoModalContent": {
"gasLimitInfoTooltipContent": {
"message": "Ang limitasyon sa gas ay ang maximum na dami ng mga unit ng gas na handa kang gastusin."
},
"gasLimitTooLow": {
"message": "Ang limitasyon sa gas ay dapat na hindi bababa sa 21000"
},
"gasUsed": {
"message": "Gas na Ginamit"
},
"gasPrice": {
"message": "Presyo ng Gas (GWEI)"
},
"gasPriceExtremelyLow": {
"message": "Napakababa ng Presyo ng Gas"
},
"gasPriceInfoModalContent": {
"gasPriceInfoTooltipContent": {
"message": "Tinutukoy ng presyo ng gas ang halaga ng Ether na handa kang ibayad para sa bawat unit ng gas."
},
"gasPriceNoDenom": {
"message": "Presyo ng Gas"
"gasUsed": {
"message": "Gas na Ginamit"
},
"general": {
"message": "Pangkalahatan"
@ -492,6 +480,9 @@
"importAccountSeedPhrase": {
"message": "Mag-import ng Account gamit ang Seed Phrase"
},
"importUsingSeed": {
"message": "Mag-import gamit ang seed phrase ng account"
},
"importWallet": {
"message": "Mag-import ng Wallet"
},
@ -502,9 +493,6 @@
"message": "Na-import",
"description": "status showing that an account has been fully loaded into the keyring"
},
"importUsingSeed": {
"message": "Mag-import gamit ang seed phrase ng account"
},
"infoHelp": {
"message": "Impormasyon at Tulong"
},
@ -526,24 +514,21 @@
"invalidAddressRecipient": {
"message": "Hindi valid ang address ng recipient"
},
"knownAddressRecipient": {
"message": "Kilalang address ng contract."
},
"invalidAddressRecipientNotEthNetwork": {
"message": "Hindi ito isang ETH network, i-set sa lowercase"
},
"invalidInput": {
"message": "Hindi valid ang input."
},
"invalidRPC": {
"message": "Hindi valid ang RPC URL"
},
"invalidBlockExplorerURL": {
"message": "Hindi valid ang Block Explorer URL"
},
"invalidRPC": {
"message": "Hindi valid ang RPC URL"
},
"invalidSeedPhrase": {
"message": "Hindi valid ang seed phrase"
},
"knownAddressRecipient": {
"message": "Kilalang address ng contract."
},
"learnMore": {
"message": "Matuto pa"
},
@ -562,15 +547,15 @@
"liveGasPricePredictions": {
"message": "Mga Live na Prediksyon sa Presyo ng Gas"
},
"loadMore": {
"message": "Mag-load Pa"
},
"loading": {
"message": "Naglo-load..."
},
"loadingTokens": {
"message": "Naglo-load ng Mga Token..."
},
"loadMore": {
"message": "Mag-load Pa"
},
"lock": {
"message": "Mag-log out"
},
@ -589,6 +574,9 @@
"mobileSyncText": {
"message": "Pakilagay ang iyong password para kumpirmahing ikaw ito!"
},
"mustSelectOne": {
"message": "Dapat pumili ng kahit 1 token."
},
"myAccounts": {
"message": "Mga Account Ko"
},
@ -598,9 +586,6 @@
"myWalletAccountsDescription": {
"message": "Ang lahat ng iyong account na ginawa sa MetaMask ay awtomatikong idadagdag sa seksyong ito."
},
"mustSelectOne": {
"message": "Dapat pumili ng kahit 1 token."
},
"needEtherInWallet": {
"message": "Para gumamit ng mga decentralized na application gamit ang MetaMask, mangangailangan ka ng Ether sa iyong wallet."
},
@ -614,12 +599,12 @@
"networkName": {
"message": "Pangalan ng Network"
},
"networks": {
"message": "Mga Network"
},
"networkSettingsDescription": {
"message": "Magdagdag at mag-edit ng mga custom na RPC network"
},
"networks": {
"message": "Mga Network"
},
"nevermind": {
"message": "Huwag na lang"
},
@ -635,36 +620,15 @@
"newContract": {
"message": "Bagong Contract"
},
"newPassword": {
"message": "Bagong Password (min 8 char)"
},
"newNetwork": {
"message": "Bagong Network"
},
"newPassword": {
"message": "Bagong Password (min 8 char)"
},
"newToMetaMask": {
"message": "Bago ka ba sa MetaMask?"
},
"noAlreadyHaveSeed": {
"message": "Hindi, may seed phrase na ako"
},
"protectYourKeys": {
"message": "Protektahan Ang Iyong Mga Key!"
},
"protectYourKeysMessage1": {
"message": "Mag-ingat sa iyong seed phrase — may mga ulat na may mga website na nagpapanggap bilang MetaMask. Hindi kailanman hihilingin ng MetaMask ang iyong seed phrase!"
},
"protectYourKeysMessage2": {
"message": "Panatilihing ligtas ang iyong parirala. Kung may makikita kang kahina-hinala, o hindi ka sigurado tungkol sa isang website, mag-email sa support@metamask.io"
},
"rpcUrl": {
"message": "Bagong RPC URL"
},
"optionalChainId": {
"message": "ChainID (opsyonal)"
},
"optionalSymbol": {
"message": "Simbolo (opsyonal)"
},
"newTotal": {
"message": "Bagong Total"
},
@ -677,24 +641,39 @@
"noAddressForName": {
"message": "Walang address na na-set para sa pangalang ito."
},
"noAlreadyHaveSeed": {
"message": "Hindi, may seed phrase na ako"
},
"noConversionRateAvailable": {
"message": "Walang Presyo ng Palitan na Available"
},
"noTransactions": {
"message": "Wala kang mga transaksyon"
},
"notEnoughGas": {
"message": "Hindi Sapat Ang Gas"
"noWebcamFound": {
"message": "Hindi nakita ang webcam ng iyong computer. Pakisubukang muli."
},
"noWebcamFoundTitle": {
"message": "Hindi nakita ang webcam"
},
"noWebcamFound": {
"message": "Hindi nakita ang webcam ng iyong computer. Pakisubukang muli."
"notEnoughGas": {
"message": "Hindi Sapat Ang Gas"
},
"ofTextNofM": {
"message": "sa"
},
"off": {
"message": "Naka-off"
},
"on": {
"message": "Naka-on"
},
"optionalBlockExplorerUrl": {
"message": "Block Explorer URL (opsyonal)"
},
"optionalSymbol": {
"message": "Simbolo (opsyonal)"
},
"orderOneHere": {
"message": "Mag-order ng Trezor o Ledger para itago sa cold storage ang iyong pondo"
},
@ -710,12 +689,12 @@
"participateInMetaMetricsDescription": {
"message": "Makilahok sa MetaMetrics para tulungan kaming mas pagandahin ang MetaMask"
},
"passwordsDontMatch": {
"message": "Hindi Nagtutugma Ang Mga Password"
},
"passwordNotLongEnough": {
"message": "Hindi sapat ang haba ng password"
},
"passwordsDontMatch": {
"message": "Hindi Nagtutugma Ang Mga Password"
},
"pastePrivateKey": {
"message": "I-paste ang iyong private key string dito:",
"description": "For importing an account from a private key"
@ -744,12 +723,24 @@
"privateNetwork": {
"message": "Pribadong Network"
},
"protectYourKeys": {
"message": "Protektahan Ang Iyong Mga Key!"
},
"protectYourKeysMessage1": {
"message": "Mag-ingat sa iyong seed phrase — may mga ulat na may mga website na nagpapanggap bilang MetaMask. Hindi kailanman hihilingin ng MetaMask ang iyong seed phrase!"
},
"protectYourKeysMessage2": {
"message": "Panatilihing ligtas ang iyong parirala. Kung may makikita kang kahina-hinala, o hindi ka sigurado tungkol sa isang website, mag-email sa support@metamask.io"
},
"queue": {
"message": "I-queue"
},
"readdToken": {
"message": "Puwede mong idagdag ulit ang token na ito sa hinaharap sa pamamagitan ng pagpunta sa “Magdagdag ng token” sa menu ng mga opsyon ng iyong mga accounts."
},
"readyToConnect": {
"message": "Handa ka nang Kumonekta?"
},
"recents": {
"message": "Kamakailan"
},
@ -759,63 +750,24 @@
"recipientAddressPlaceholder": {
"message": "Maghanap, pampublikong address (0x), o ENS"
},
"reject": {
"message": "Tanggihan"
},
"rejectAll": {
"message": "Tanggihan Lahat"
},
"rejectTxsN": {
"message": "Tanggihan ang $1 (na) transaksyon"
},
"rejectTxsDescription": {
"message": "Sabay-sabay mong tatanggihan ang $1 (na) transaksyon."
},
"rejectTxsN": {
"message": "Tanggihan ang $1 (na) transaksyon"
},
"rejected": {
"message": "Tinanggihan"
},
"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."
},
"deleteNetwork": {
"message": "I-delete ang Network?"
},
"deleteNetworkDescription": {
"message": "Sigurado ka bang gusto mong i-delete ang network na ito?"
},
"remindMeLater": {
"message": "Paalalahanan ako sa ibang pagkakataon"
},
"restoreFromSeed": {
"message": "I-restore ang account?"
},
"restoreAccountWithSeed": {
"message": "I-restore ang iyong Account gamit ang Seed Phrase"
},
"requestsAwaitingAcknowledgement": {
"message": "naghihintay na matugunan ang mga request"
},
"required": {
"message": "Kailangan"
},
"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."
},
"revealSeedWordsWarningTitle": {
"message": "HUWAG ibahagi ang pariralang ito sa kahit sino!"
},
"revealSeedWordsWarning": {
"message": "Maaaring gamitin ang mga salitang ito para nakawin ang lahat ng iyong account."
},
"remove": {
"message": "Alisin"
},
@ -825,18 +777,48 @@
"removeAccountDescription": {
"message": "Tatanggalin ang account na ito sa iyong wallet. Pakitiyak na nasa iyo ang orihinal na seed phrase o private key para sa naka-import na account na ito bago magpatuloy. Maaari kang mag-import o gumawa ulit ng mga account mual sa drop-down ng account. "
},
"readyToConnect": {
"message": "Handa ka nang Kumonekta?"
"requestsAwaitingAcknowledgement": {
"message": "naghihintay na matugunan ang mga request"
},
"required": {
"message": "Kailangan"
},
"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"
},
"restoreAccountWithSeed": {
"message": "I-restore ang iyong Account gamit ang Seed Phrase"
},
"restoreFromSeed": {
"message": "I-restore ang account?"
},
"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!"
},
"rpcUrl": {
"message": "Bagong RPC URL"
},
"save": {
"message": "I-save"
},
"slow": {
"message": "Mabagal"
},
"slower": {
"message": "Mas Mabagal"
},
"saveAsCsvFile": {
"message": "I-save bilang CSV File"
},
@ -852,6 +834,9 @@
"searchResults": {
"message": "Mga Resulta ng Paghahanap"
},
"searchTokens": {
"message": "Maghanap ng Mga Token"
},
"secretBackupPhraseDescription": {
"message": "Pinapadali ng iyong secret backup phrase na i-back up at i-restore ang iyong account."
},
@ -873,15 +858,30 @@
"seedPhraseReq": {
"message": "Ang mga seed phrase ay may habang 12 salita"
},
"selectAHigherGasFee": {
"message": "Pumili ng mas mataas na gas fee para pabilisin ang pagproseso ng iyong transaksyon.*"
},
"selectAnAccount": {
"message": "Pumili ng Account"
},
"selectAnAccountHelp": {
"message": "Piliin ang account na titingnan sa MetaMask"
},
"selectCurrency": {
"message": "Pumili ng Currency"
},
"selectEachPhrase": {
"message": "Pakipili ang bawat parirala para tiyaking tama ito."
},
"selectHdPath": {
"message": "Piliin ang HD Path"
},
"selectLocale": {
"message": "Pumili ng Locale"
},
"selectPathHelp": {
"message": "Kung hindi mo makita ang kasalukuyan mong mga Ledger account sa ibaba, subukang ilipat ang mga path sa \"Legacy (MEW / MyCrypto)\""
},
"selectType": {
"message": "Piliin ang Uri"
},
@ -906,24 +906,6 @@
"separateEachWord": {
"message": "Paghiwa-hiwalayin ang bawat salita gamit ang isang space"
},
"searchTokens": {
"message": "Maghanap ng Mga Token"
},
"selectAnAccount": {
"message": "Pumili ng Account"
},
"selectAnAccountHelp": {
"message": "Piliin ang account na titingnan sa MetaMask"
},
"selectAHigherGasFee": {
"message": "Pumili ng mas mataas na gas fee para pabilisin ang pagproseso ng iyong transaksyon.*"
},
"selectHdPath": {
"message": "Piliin ang HD Path"
},
"selectPathHelp": {
"message": "Kung hindi mo makita ang kasalukuyan mong mga Ledger account sa ibaba, subukang ilipat ang mga path sa \"Legacy (MEW / MyCrypto)\""
},
"settings": {
"message": "Mga Setting"
},
@ -939,23 +921,29 @@
"showFiatConversionInTestnetsDescription": {
"message": "Piliin ito para magpakita ng fiat conversion sa mga Testnet"
},
"showPrivateKeys": {
"message": "Ipakita ang mga Private Key"
},
"showHexData": {
"message": "Ipakita ang Hex Data"
},
"showHexDataDescription": {
"message": "Piliin ito para ipakita ang hex data field sa screen ng pagpapadala"
},
"showPrivateKeys": {
"message": "Ipakita ang mga Private Key"
},
"sign": {
"message": "I-sign"
},
"signNotice": {
"message": "Kapag na-sign ang mensaheng ito, maaaring magkaroon \nng mapapanganib na side effect. Mag-sign lang ng mga mensaheng mula \nsa mga site na ganap mong pinagkakatiwalaang gumamit sa iyong account.\n Isa itong mapanganib na method na aalisin sa isang bersyon sa hinaharap. "
},
"signed": {
"message": "Na-sign"
},
"signNotice": {
"message": "Kapag na-sign ang mensaheng ito, maaaring magkaroon \nng mapapanganib na side effect. Mag-sign lang ng mga mensaheng mula \nsa mga site na ganap mong pinagkakatiwalaang gumamit sa iyong account.\n Isa itong mapanganib na method na aalisin sa isang bersyon sa hinaharap. "
"slow": {
"message": "Mabagal"
},
"slower": {
"message": "Mas Mabagal"
},
"somethingWentWrong": {
"message": "Oops! Nagkaroon ng problema."
@ -969,8 +957,8 @@
"speedUpTransaction": {
"message": "Pabilisin ang transaksyong ito"
},
"switchNetworks": {
"message": "Lumipat ng Network"
"stateLogError": {
"message": "May error sa pagkuha sa mga state log."
},
"stateLogs": {
"message": "Mga State Log"
@ -978,9 +966,6 @@
"stateLogsDescription": {
"message": "Ang mga state log ay naglalaman ng iyong mga pampublikong account address at mga ipinadalang transaksyon."
},
"stateLogError": {
"message": "May error sa pagkuha sa mga state log."
},
"step1HardwareWallet": {
"message": "1. Magkonekta ng Hardware Wallet"
},
@ -1008,6 +993,9 @@
"supportCenter": {
"message": "Bisitahin ang aming Support Center"
},
"switchNetworks": {
"message": "Lumipat ng Network"
},
"symbol": {
"message": "Simbolo"
},
@ -1017,8 +1005,11 @@
"syncWithMobile": {
"message": "I-sync sa mobile"
},
"syncWithMobileTitle": {
"message": "I-sync sa mobile"
"syncWithMobileBeCareful": {
"message": "Tiyaking walang ibang taong tumitingin sa iyong screen kapag sina-scan mo ang code na ito"
},
"syncWithMobileComplete": {
"message": "Matagumpay na na-sync ang iyong data. I-enjoy ang MetaMask mobile app!"
},
"syncWithMobileDesc": {
"message": "Maaari mong i-sync ang iyong mga account at impormasyon sa iyong mobile device. Buksan ang MetaMask mobile app, pumunta sa \"Settings\" at mag-tap sa \"Sync from Browser Extension\""
@ -1029,11 +1020,8 @@
"syncWithMobileScanThisCode": {
"message": "I-scan ang code na ito sa iyong MetaMask mobile app"
},
"syncWithMobileBeCareful": {
"message": "Tiyaking walang ibang taong tumitingin sa iyong screen kapag sina-scan mo ang code na ito"
},
"syncWithMobileComplete": {
"message": "Matagumpay na na-sync ang iyong data. I-enjoy ang MetaMask mobile app!"
"syncWithMobileTitle": {
"message": "I-sync sa mobile"
},
"terms": {
"message": "Mga Tuntunin ng Paggamit"
@ -1059,6 +1047,12 @@
"transaction": {
"message": "transaksyon"
},
"transactionCancelAttempted": {
"message": "Sinubukan ang pagkansela sa transaksyon nang may gas fee na $1 sa ganap na $2"
},
"transactionCancelSuccess": {
"message": "Nakansela ang transaksyon sa ganap na $2"
},
"transactionConfirmed": {
"message": "Nakumpirma ang transaksyon sa ganap na $2."
},
@ -1068,36 +1062,30 @@
"transactionDropped": {
"message": "Na-drop ang transaksyon sa $2."
},
"transactionSubmitted": {
"message": "Nasumite ang transaksyon nang may gas fee na $1 sa $2."
},
"transactionResubmitted": {
"message": "Nasumite ulit ang transaksyon nang may gas fee na ginawang $1 sa ganap na $2"
},
"transactionUpdated": {
"message": "Na-update ang transaksyon sa $2."
},
"transactionErrored": {
"message": "Nagkaroon ng error ang transaksyon."
},
"transactionCancelAttempted": {
"message": "Sinubukan ang pagkansela sa transaksyon nang may gas fee na $1 sa ganap na $2"
},
"transactionCancelSuccess": {
"message": "Nakansela ang transaksyon sa ganap na $2"
},
"transactionError": {
"message": "May Error sa Transaksyon. May exception sa contract code."
},
"transactionErrorNoContract": {
"message": "Subukang mag-call ng function sa isang non-contract na address."
},
"transactionErrored": {
"message": "Nagkaroon ng error ang transaksyon."
},
"transactionFee": {
"message": "Fee sa Transaksyon"
},
"transactionResubmitted": {
"message": "Nasumite ulit ang transaksyon nang may gas fee na ginawang $1 sa ganap na $2"
},
"transactionSubmitted": {
"message": "Nasumite ang transaksyon nang may gas fee na $1 sa $2."
},
"transactionTime": {
"message": "Oras ng Transaksyon"
},
"transactionUpdated": {
"message": "Na-update ang transaksyon sa $2."
},
"transfer": {
"message": "Mag-transfer"
},
@ -1126,18 +1114,18 @@
"unknown": {
"message": "Hindi Alam"
},
"unknownCameraError": {
"message": "Nagkaroon ng error habang sinusubukang i-access ang iyong camera. Pakisubukang muli..."
},
"unknownCameraErrorTitle": {
"message": "Ooops! Nagkaroon ng problema...."
},
"unknownNetwork": {
"message": "Hindi Kilalang Pribadong Network"
},
"unknownQrCode": {
"message": "Error: Hindi namin nakilala ang QR code na iyan"
},
"unknownCameraErrorTitle": {
"message": "Ooops! Nagkaroon ng problema...."
},
"unknownCameraError": {
"message": "Nagkaroon ng error habang sinusubukang i-access ang iyong camera. Pakisubukang muli..."
},
"unlock": {
"message": "I-unlock"
},
@ -1156,9 +1144,6 @@
"viewAccount": {
"message": "Tingnan ang Account"
},
"viewinExplorer": {
"message": "Tingnan sa Explorer"
},
"viewContact": {
"message": "Tingnan ang Contact"
},
@ -1168,15 +1153,18 @@
"viewOnEtherscan": {
"message": "Tingnan sa Etherscan"
},
"viewinExplorer": {
"message": "Tingnan sa Explorer"
},
"visitWebSite": {
"message": "Bisitahin ang aming web site"
},
"welcomeBack": {
"message": "Welcome Ulit!"
},
"welcome": {
"message": "Welcome sa MetaMask"
},
"welcomeBack": {
"message": "Welcome Ulit!"
},
"writePhrase": {
"message": "Isulat ang pariralang ito sa isang piraso ng papel at itago ito sa isang secure na lokasyon. Kung gusto mo ng higit pang seguridad, isulat ito sa maraming piraso ng papel at itago ang bawat isa sa 2 - 3 iba't ibang lokasyon."
},
@ -1186,15 +1174,15 @@
"youNeedToAllowCameraAccess": {
"message": "Kailangan mong payagan ang access sa camera para magamit ang feature na ito."
},
"yourSigRequested": {
"message": "Hinihiling ang iyong signature"
},
"youSign": {
"message": "Sina-sign mo ang"
},
"yourPrivateSeedPhrase": {
"message": "Ang iyong pribadong seed phrase"
},
"yourSigRequested": {
"message": "Hinihiling ang iyong signature"
},
"zeroGasPriceOnSpeedUpError": {
"message": "Zero ang presyo ng gas sa speed up"
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,4 @@
{
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"reject": {
"message": "નકારો"
},
"about": {
"message": "વિશે"
},
@ -15,21 +8,16 @@
"advanced": {
"message": "વિગતવાર"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"back": {
"message": "પાછળ"
},
"basic": {
"message": "મૂળભૂત"
},
"off": {
"message": "બંધ"
},
"ok": {
"message": "બરાબર, સમજાઇ ગયું"
},
"on": {
"message": "ચાલુ"
},
"cancel": {
"message": "રદ કરો"
},
@ -89,6 +77,15 @@
"next": {
"message": "આગલું"
},
"off": {
"message": "બંધ"
},
"ok": {
"message": "બરાબર, સમજાઇ ગયું"
},
"on": {
"message": "ચાલુ"
},
"origin": {
"message": "મૂળ"
},
@ -98,11 +95,8 @@
"queue": {
"message": "કતારમાં"
},
"reset": {
"message": "રીસેટ કરો"
},
"restore": {
"message": "પુનઃસ્થાપિત કરો"
"reject": {
"message": "નકારો"
},
"remove": {
"message": "દૂર કરો"
@ -110,12 +104,15 @@
"removeAccount": {
"message": "એકાઉન્ટ દૂર કરો"
},
"reset": {
"message": "રીસેટ કરો"
},
"restore": {
"message": "પુનઃસ્થાપિત કરો"
},
"save": {
"message": "સાચવો"
},
"slow": {
"message": "ધીમું"
},
"search": {
"message": "શોધો"
},
@ -125,6 +122,9 @@
"settings": {
"message": "સેટિંગ્સ"
},
"slow": {
"message": "ધીમું"
},
"tryAgain": {
"message": "ફરી પ્રયાસ કરો"
},

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,4 @@
{
"approve": {
"message": "मंजूर"
},
"reject": {
"message": "अस्वीकार"
},
"account": {
"message": "खाता"
},
@ -31,6 +25,9 @@
"message": "मेटामास्क/MetaMask",
"description": "एप्लिकेशन का नाम"
},
"approve": {
"message": "मंजूर"
},
"attemptingConnect": {
"message": "ब्लॉकचैन से कनेक्ट करने का प्रयास करना होगा।सब्र करे।"
},
@ -73,12 +70,12 @@
"copiedExclamation": {
"message": "कॉपी कर दिया गया!"
},
"copyToClipboard": {
"message": "क्लिपबोर्ड पर कॉपी करें"
},
"copyPrivateKey": {
"message": "यह आपकी निजी कुंजी है (कॉपी करने के लिए क्लिक करें)।"
},
"copyToClipboard": {
"message": "क्लिपबोर्ड पर कॉपी करें"
},
"create": {
"message": "बनाएं"
},
@ -91,12 +88,12 @@
"customRPC": {
"message": "कस्टम RPC"
},
"decimalsMustZerotoTen": {
"message": "दशमलव कम से कम 0 होनी चाहिए, और 36 से अधिक नहीं होनी चाहिए।"
},
"decimal": {
"message": "दशमलव परिशुद्धता"
},
"decimalsMustZerotoTen": {
"message": "दशमलव कम से कम 0 होनी चाहिए, और 36 से अधिक नहीं होनी चाहिए।"
},
"defaultNetwork": {
"message": "ईथर लेनदेन के लिए डिफ़ॉल्ट नेटवर्क मुख्य नेट है।"
},
@ -202,15 +199,12 @@
"invalidAddressRecipient": {
"message": "प्राप्तकर्ता का पता अमान्य है"
},
"invalidInput": {
"message": "अमान्य इनपुट।"
"invalidBlockExplorerURL": {
"message": "अमान्य Block Explorer कै URI"
},
"invalidRPC": {
"message": "अमान्य RPC कै URI"
},
"invalidBlockExplorerURL": {
"message": "अमान्य Block Explorer कै URI"
},
"jsonFile": {
"message": "JSON फ़ाइल",
"description": "एक खाता आयात करने के लिए प्रारूप"
@ -230,9 +224,6 @@
"localhost": {
"message": "स्थानीयहोस्ट 8545"
},
"unlock": {
"message": "लॉग इन करें"
},
"lock": {
"message": "लॉग आउट करें"
},
@ -245,12 +236,12 @@
"metamaskDescription": {
"message": "मेटामास्क इथीरियम के लिए एक सुरक्षित पहचान वॉल्ट है।"
},
"myAccounts": {
"message": "मेरे खाते"
},
"mustSelectOne": {
"message": "कम से कम 1 टोकन का चयन करना आवश्यक है।"
},
"myAccounts": {
"message": "मेरे खाते"
},
"needEtherInWallet": {
"message": "मेटामास्क का उपयोग करने वाले विकेन्द्रीकृत अनुप्रयोगों के साथ बातचीत करने के लिए, आपको अपने वॉलेट में ईथर की आवश्यकता होगी।"
},
@ -312,18 +303,21 @@
"recipientAddress": {
"message": "प्राप्तकर्ता पता"
},
"reject": {
"message": "अस्वीकार"
},
"rejected": {
"message": "अस्वीकृत"
},
"required": {
"message": "आवश्यक"
},
"resetAccount": {
"message": "खाता रीसेट करें"
},
"restoreFromSeed": {
"message": "बीज वाक्यांश से पुनर्स्थापित करें"
},
"required": {
"message": "आवश्यक"
},
"revealSeedWords": {
"message": "बीज शब्द प्रकट करें"
},
@ -369,15 +363,15 @@
"showPrivateKeys": {
"message": "निजी कुंजी दिखाएँ"
},
"sigRequest": {
"message": "हस्ताक्षर अनुरोध"
},
"sign": {
"message": "हस्ताक्षर"
},
"signNotice": {
"message": "इस संदेश पर हस्ताक्षर करने से \n साइड इफेक्ट हो सकते हैं। \n केवल अपने पूरे खाते के साथ पूरी तरह से भरोसेमंद \n साइटों से संदेश पर हस्ताक्षर करें। \n यह खतरनाक विधि भविष्य के संस्करण में निकाल दी जाएगी।"
},
"sigRequest": {
"message": "हस्ताक्षर अनुरोध"
},
"stateLogs": {
"message": "स्थिति संदेश"
},
@ -421,6 +415,9 @@
"unknownNetwork": {
"message": "अज्ञात निजी नेटवर्क"
},
"unlock": {
"message": "लॉग इन करें"
},
"urlErrorMsg": {
"message": "URI-यूआरआई को उपयुक्त HTTP / HTTPS उपसर्ग की आवश्यकता होती है।"
},
@ -436,10 +433,10 @@
"welcome": {
"message": "मेटामास्क बीटा में आपका स्वागत है"
},
"yourSigRequested": {
"message": "आपका हस्ताक्षर अनुरोध किया जा रहा है"
},
"youSign": {
"message": "आप हस्ताक्षर कर रहे हैं"
},
"yourSigRequested": {
"message": "आपका हस्ताक्षर अनुरोध किया जा रहा है"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -20,18 +20,18 @@
"activityLog": {
"message": "aktivite ki fèt"
},
"addAcquiredTokens": {
"message": "Ajoute tokens yo ou te achte lè l sèvi avèk MetaMask"
},
"addSuggestedTokens": {
"message": "Ajoute Token Yo Sikjere W"
},
"addToken": {
"message": "Ajoute Token"
},
"addTokens": {
"message": "Ajoute Token"
},
"addSuggestedTokens": {
"message": "Ajoute Token Yo Sikjere W"
},
"addAcquiredTokens": {
"message": "Ajoute tokens yo ou te achte lè l sèvi avèk MetaMask"
},
"amount": {
"message": "Kantite lajan"
},
@ -49,15 +49,15 @@
"approved": {
"message": "Apwouve"
},
"attemptingConnect": {
"message": "Eseye konekte nan blockchain."
},
"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."
},
"attributions": {
"message": "Atribisyon"
},
@ -82,9 +82,6 @@
"buyCoinSwitchExplainer": {
"message": "CoinSwitch se destinasyon nan yon sèl-Stop nan echanj plis pase 300 kriptoksèr nan pousantaj la pi byen."
},
"ok": {
"message": "Oke"
},
"cancel": {
"message": "Anile"
},
@ -94,39 +91,39 @@
"cancellationGasFee": {
"message": "Anilasyon Gaz Chaj"
},
"close": {
"message": "Fèmen"
},
"chromeRequiredForHardwareWallets": {
"message": "Ou bezwen sèvi ak MetaMask sou Google Chrome yo nan lòd yo konekte sou Hardware Wallet."
},
"confirm": {
"message": "Konfime"
"close": {
"message": "Fèmen"
},
"confirmed": {
"confirm": {
"message": "Konfime"
},
"confirmPassword": {
"message": "Konfime Modpas"
},
"connectHardwareWallet": {
"message": "Konekte Materyèl Wallet"
"confirmed": {
"message": "Konfime"
},
"connect": {
"message": "Konekte"
},
"connectHardwareWallet": {
"message": "Konekte Materyèl Wallet"
},
"connectingToKovan": {
"message": "Konekte nan Kovan Tès Rezo a"
},
"connectingToMainnet": {
"message": "Konekte ak Prensipal Ethereum Rezo a"
},
"connectingToRopsten": {
"message": "Konekte ak Ropsten Tès Rezo a"
},
"connectingToRinkeby": {
"message": "Konekte nan Rinkeby Tès Rezo a"
},
"connectingToRopsten": {
"message": "Konekte ak Ropsten Tès Rezo a"
},
"continueToCoinSwitch": {
"message": "Kontinye CoinSwitch"
},
@ -139,12 +136,12 @@
"copyAddress": {
"message": "Kopi adrès clipboard"
},
"copyToClipboard": {
"message": "Kopi clipboard"
},
"copyPrivateKey": {
"message": "Sa a se kle prive ou (klike pou ou kopye)"
},
"copyToClipboard": {
"message": "Kopi clipboard"
},
"create": {
"message": "Kreye"
},
@ -157,18 +154,18 @@
"customGas": {
"message": "Koutim Gaz"
},
"customToken": {
"message": "Koutim Token"
},
"customRPC": {
"message": "Koutim RPC"
},
"decimalsMustZerotoTen": {
"message": "Desimal yo dwe omwen 0, epi pa dwe plis pase 36."
"customToken": {
"message": "Koutim Token"
},
"decimal": {
"message": "Presizyon desimal la"
},
"decimalsMustZerotoTen": {
"message": "Desimal yo dwe omwen 0, epi pa dwe plis pase 36."
},
"defaultNetwork": {
"message": "Dfo rezo a pou tranzaksyon Ether se Mainnet."
},
@ -190,15 +187,15 @@
"done": {
"message": "Fini"
},
"dontHaveAHardwareWallet": {
"message": "Pa gen yon materyèl bous?"
},
"downloadGoogleChrome": {
"message": "Telechaje Google Chrome"
},
"downloadStateLogs": {
"message": "Telechaje State Logs"
},
"dontHaveAHardwareWallet": {
"message": "Pa gen yon materyèl bous?"
},
"dropped": {
"message": "Tonbe"
},
@ -246,12 +243,12 @@
"gasLimitTooLow": {
"message": "Limit gaz dwe omwen 21000"
},
"gasUsed": {
"message": "Gaz yo Itilize"
},
"gasPrice": {
"message": "Pri gaz (GWEI)"
},
"gasUsed": {
"message": "Gaz yo Itilize"
},
"getEther": {
"message": "Jwenn Ether"
},
@ -300,13 +297,13 @@
"importAccountMsg": {
"message": " Kont pòte pa pral asosye avèk orijinal ou te kreye nan kont MetaMask seed fraz. Aprann plis sou kont enpòte "
},
"importUsingSeed": {
"message": "Pòte lè sèvi avèk seed fraz"
},
"imported": {
"message": "Pòte",
"description": "status showing that an account has been fully loaded into the keyring"
},
"importUsingSeed": {
"message": "Pòte lè sèvi avèk seed fraz"
},
"infoHelp": {
"message": "Enfo & Èd"
},
@ -325,15 +322,12 @@
"invalidAddressRecipient": {
"message": "Moun ki resevwa adrès la pa valab"
},
"invalidInput": {
"message": "Sa ou rantre a pa valab"
"invalidBlockExplorerURL": {
"message": "Block Explorer URI pa valab"
},
"invalidRPC": {
"message": "RPC URI pa valab"
},
"invalidBlockExplorerURL": {
"message": "Block Explorer URI pa valab"
},
"invalidSeedPhrase": {
"message": "Seed fraz pa valab"
},
@ -344,9 +338,6 @@
"kovan": {
"message": "Kovan Tès Rezo"
},
"max": {
"message": "Maksimòm"
},
"learnMore": {
"message": "Aprann plis"
},
@ -371,6 +362,9 @@
"mainnet": {
"message": "Prensipal Ethereum Rezo a"
},
"max": {
"message": "Maksimòm"
},
"message": {
"message": "Mesaje"
},
@ -380,12 +374,12 @@
"metamaskVersion": {
"message": "MetaMask Vèsyon"
},
"myAccounts": {
"message": "Kont mwen"
},
"mustSelectOne": {
"message": "Ou dwe chwazi omwen 1 token."
},
"myAccounts": {
"message": "Kont mwen"
},
"needEtherInWallet": {
"message": "Pou kominike avèk aplikasyon desantralize ou dwe itilize MetaMask, ou pral bezwen Ether nan Wallet ou."
},
@ -427,11 +421,14 @@
"noTransactions": {
"message": "Pa gen tranzaksyon"
},
"noWebcamFound": {
"message": "Nou pakay jwenn webcam òdinatè ou. Tanpri eseye ankò."
},
"noWebcamFoundTitle": {
"message": "Pa jwenn webcam"
},
"noWebcamFound": {
"message": "Nou pakay jwenn webcam òdinatè ou. Tanpri eseye ankò."
"ok": {
"message": "Oke"
},
"orderOneHere": {
"message": "Mete nan lòd on Trezor oswa Ledger epi kenbe lajan ou nan yon stòk frèt."
@ -445,12 +442,12 @@
"password": {
"message": "Modpas"
},
"passwordsDontMatch": {
"message": "Modpas pa matche"
},
"passwordNotLongEnough": {
"message": "Modpas pa lontan ase"
},
"passwordsDontMatch": {
"message": "Modpas pa matche"
},
"pastePrivateKey": {
"message": "Kole fraz prive ou a la:",
"description": "For importing an account from a private key"
@ -486,6 +483,9 @@
"readdToken": {
"message": "Ou ka ajoute token sa aprè sa ankò ou prale nan \"Ajoute token\" nan opsyon meni kont ou an."
},
"readyToConnect": {
"message": "Pare pou konekte?"
},
"recipientAddress": {
"message": "Adrès pou resevwa"
},
@ -495,51 +495,15 @@
"rejectAll": {
"message": "Rejte Tout"
},
"rejectTxsN": {
"message": "Rejete $ 1 tranzaksyon"
},
"rejectTxsDescription": {
"message": "Ou se sou rejte $ 1 yon anpil nan tranzaksyon yo."
},
"rejectTxsN": {
"message": "Rejete $ 1 tranzaksyon"
},
"rejected": {
"message": "Rejete"
},
"reset": {
"message": "Repwograme"
},
"resetAccount": {
"message": "Repwograme Kont"
},
"resetAccountDescription": {
"message": "Repwograme kont a netwaye tranzaksyon ou yo."
},
"restoreFromSeed": {
"message": "Restore kont?"
},
"restoreAccountWithSeed": {
"message": "Retabli kont ou avèk yo Seed Fraz"
},
"required": {
"message": "Egzije"
},
"restore": {
"message": "Retabli"
},
"revealSeedWords": {
"message": "Revele Seed Mo Yo"
},
"revealSeedWordsTitle": {
"message": "Seed Fraz"
},
"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è."
},
"revealSeedWordsWarningTitle": {
"message": "PA pataje fraz sa a avèk nenpòt moun!"
},
"revealSeedWordsWarning": {
"message": "Yo ka itilize mo sa pou vòlè kont ou."
},
"remove": {
"message": "retire"
},
@ -549,8 +513,41 @@
"removeAccountDescription": {
"message": "Kont sa a pral retire nan Wallet ou. Tanpri, asire ou ke ou gen orijinal fraz seed la oubyen kle prive pou rantre kont lan avan ou kontinye. Oubyen ou ka rantre kont ou ankò apati kont \"drop-down\" ou an."
},
"readyToConnect": {
"message": "Pare pou konekte?"
"required": {
"message": "Egzije"
},
"reset": {
"message": "Repwograme"
},
"resetAccount": {
"message": "Repwograme Kont"
},
"resetAccountDescription": {
"message": "Repwograme kont a netwaye tranzaksyon ou yo."
},
"restore": {
"message": "Retabli"
},
"restoreAccountWithSeed": {
"message": "Retabli kont ou avèk yo Seed Fraz"
},
"restoreFromSeed": {
"message": "Restore kont?"
},
"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è."
},
"revealSeedWordsTitle": {
"message": "Seed Fraz"
},
"revealSeedWordsWarning": {
"message": "Yo ka itilize mo sa pou vòlè kont ou."
},
"revealSeedWordsWarningTitle": {
"message": "PA pataje fraz sa a avèk nenpòt moun!"
},
"rinkeby": {
"message": "Rinkeby Tès Rezo"
@ -576,18 +573,33 @@
"searchResults": {
"message": "Rezilta rechèch"
},
"searchTokens": {
"message": "Rechèch Tokens"
},
"secretPhrase": {
"message": "Antre fraz sekrè douz mo ou a pou w restore kòf ou a."
},
"seedPhraseReq": {
"message": "Seed fraz yo se 12 long mo"
},
"selectAnAccount": {
"message": "Chwazi yon kont"
},
"selectAnAccountHelp": {
"message": "Chwazi kont pou wè nan MetaMask"
},
"selectCurrency": {
"message": "Chwazi Lajan"
},
"selectHdPath": {
"message": "Chwazi chemen HD"
},
"selectLocale": {
"message": "Chwazi Lokasyon"
},
"selectPathHelp": {
"message": "Si ou pa wè kont Ledger ou te genyen an anba a, eseye chanje chemen an \"Eritaj (MEW / MyCrypto)\""
},
"selectType": {
"message": "Chwazi Kalite"
},
@ -609,57 +621,42 @@
"separateEachWord": {
"message": "Separe chak mo ak yon sèl espas"
},
"searchTokens": {
"message": "Rechèch Tokens"
},
"selectAnAccount": {
"message": "Chwazi yon kont"
},
"selectAnAccountHelp": {
"message": "Chwazi kont pou wè nan MetaMask"
},
"selectHdPath": {
"message": "Chwazi chemen HD"
},
"selectPathHelp": {
"message": "Si ou pa wè kont Ledger ou te genyen an anba a, eseye chanje chemen an \"Eritaj (MEW / MyCrypto)\""
},
"settings": {
"message": "Paramèt"
},
"showPrivateKeys": {
"message": "Montre Kle Prive"
},
"showHexData": {
"message": "Montre Hex Data"
},
"showHexDataDescription": {
"message": "Pran sa pouw ka montre chan entèfas hex data a"
},
"showPrivateKeys": {
"message": "Montre Kle Prive"
},
"sigRequest": {
"message": "Demann Siyati"
},
"sign": {
"message": "Siyen"
},
"signNotice": {
"message": "Lè w siyen mesaj sa a ka gen efè segondè ki \ndanjere. Sèlman \nsit mesaj ki soti nan sit ou konplètman fè konfyans ak tout kont ou. \n Metòd danjere sa yo pral retire nan yon vèsyon fiti. "
},
"signatureRequest": {
"message": "Siyati Mande"
},
"signed": {
"message": "Te Siyen"
},
"signNotice": {
"message": "Lè w siyen mesaj sa a ka gen efè segondè ki \ndanjere. Sèlman \nsit mesaj ki soti nan sit ou konplètman fè konfyans ak tout kont ou. \n Metòd danjere sa yo pral retire nan yon vèsyon fiti. "
},
"sigRequest": {
"message": "Demann Siyati"
},
"speedUp": {
"message": "pi vit"
},
"stateLogsDescription": {
"message": "State logs gen adrès kont piblik ou yo epi tranzaksyon ou te voye yo."
},
"stateLogError": {
"message": "Erè nan retwouve State Logs yo."
},
"stateLogsDescription": {
"message": "State logs gen adrès kont piblik ou yo epi tranzaksyon ou te voye yo."
},
"step1HardwareWallet": {
"message": "1. Konekte Materyèl bous"
},
@ -714,15 +711,15 @@
"transactionDropped": {
"message": "Tranzaksyon ou te tonbe a $2."
},
"transactionError": {
"message": "Erè tranzaksyon. Eksepsyon jete nan kòd kontra."
},
"transactionSubmitted": {
"message": "Tranzaksyon ou te soumèt a $2."
},
"transactionUpdated": {
"message": "Tranzaksyon ou te aktyalize a $2."
},
"transactionError": {
"message": "Erè tranzaksyon. Eksepsyon jete nan kòd kontra."
},
"transfer": {
"message": "Transfè"
},
@ -745,18 +742,18 @@
"unknown": {
"message": "Enkoni"
},
"unknownCameraError": {
"message": "Te gen yon erè pandan y ap eseye jwenn aksè nan kamera ou. Tanpri eseye ankò..."
},
"unknownCameraErrorTitle": {
"message": "Ooops! Yon bagay te ale mal...."
},
"unknownNetwork": {
"message": "Rezo Prive Enkoni"
},
"unknownQrCode": {
"message": "Erè: Nou pa t kapab idantifye QR kòd sa"
},
"unknownCameraErrorTitle": {
"message": "Ooops! Yon bagay te ale mal...."
},
"unknownCameraError": {
"message": "Te gen yon erè pandan y ap eseye jwenn aksè nan kamera ou. Tanpri eseye ankò..."
},
"unlock": {
"message": "Debloke"
},
@ -784,25 +781,25 @@
"walletSeed": {
"message": "Bous Seed"
},
"welcomeBack": {
"message": "Bon Retou!"
},
"welcome": {
"message": "Byenveni nan MetaMask"
},
"welcomeBack": {
"message": "Bon Retou!"
},
"yesLetsTry": {
"message": "Wi, ann eseye"
},
"youNeedToAllowCameraAccess": {
"message": "Ou bezwen bay kamera aksè pou sèvi ak fonksyon sa."
},
"yourSigRequested": {
"message": "Yo mande siyati ou"
},
"youSign": {
"message": "Ou ap siyen kounya"
},
"yourPrivateSeedPhrase": {
"message": "Seed fraz prive ou a"
},
"yourSigRequested": {
"message": "Yo mande siyati ou"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,4 @@
{
"chartOnlyAvailableEth": {
"message": "チャートはEthereumネットワークでのみ利用可能です。"
},
"contractInteraction": {
"message": "コントラクトへのアクセス"
},
"reject": {
"message": "拒否"
},
"aboutSettingsDescription": {
"message": "バージョンやサポート、問合せ先など"
},
@ -35,20 +26,20 @@
"activityLog": {
"message": "アクティビティログ"
},
"addAcquiredTokens": {
"message": "MetaMaskで獲得したトークンを追加する"
},
"addAlias": {
"message": "エイリアスを追加"
},
"addNetwork": {
"message": "ネットワーク追加"
},
"addRecipient": {
"message": "受取人追加"
},
"advanced": {
"message": "詳細"
},
"advancedSettingsDescription": {
"message": "開発者向け機能では、状態ログのダウンロード、アカウントリセットし、テストネットやカスタムRPCの設定が可能です。"
},
"advancedOptions": {
"message": "詳細設定"
"addSuggestedTokens": {
"message": "推奨トークンを追加"
},
"addToAddressBook": {
"message": "アドレス帳に追加"
@ -56,20 +47,20 @@
"addToAddressBookModalPlaceholder": {
"message": "例: John D"
},
"addAlias": {
"message": "エイリアスを追加"
},
"addToken": {
"message": "トークンを追加"
},
"addTokens": {
"message": "トークンを追加"
},
"addSuggestedTokens": {
"message": "推奨トークンを追加"
"advanced": {
"message": "詳細"
},
"addAcquiredTokens": {
"message": "MetaMaskで獲得したトークンを追加する"
"advancedOptions": {
"message": "詳細設定"
},
"advancedSettingsDescription": {
"message": "開発者向け機能では、状態ログのダウンロード、アカウントリセットし、テストネットやカスタムRPCの設定が可能です。"
},
"amount": {
"message": "金額"
@ -91,15 +82,15 @@
"asset": {
"message": "アセット"
},
"attemptingConnect": {
"message": "ブロックチェーンに接続中"
},
"attemptToCancel": {
"message": "キャンセルを試みますか?"
},
"attemptToCancelDescription": {
"message": "このキャンセルを送信しても、元のトランザクションがキャンセルされることは保証されません。キャンセルが成功した場合、上記の取引手数料が請求されます。"
},
"attemptingConnect": {
"message": "ブロックチェーンに接続中"
},
"attributions": {
"message": "属性"
},
@ -130,6 +121,9 @@
"cancel": {
"message": "キャンセル"
},
"chartOnlyAvailableEth": {
"message": "チャートはEthereumネットワークでのみ利用可能です。"
},
"confirm": {
"message": "確認"
},
@ -142,15 +136,18 @@
"contractDeployment": {
"message": "コントラクトのデプロイ"
},
"contractInteraction": {
"message": "コントラクトへのアクセス"
},
"copiedExclamation": {
"message": "コピー完了!"
},
"copyToClipboard": {
"message": "クリップボードへコピー"
},
"copyPrivateKey": {
"message": "これはあなたの秘密鍵です(クリックでコピー)"
},
"copyToClipboard": {
"message": "クリップボードへコピー"
},
"create": {
"message": "作成"
},
@ -160,12 +157,12 @@
"customGas": {
"message": "ガスのカスタマイズ"
},
"customToken": {
"message": "カスタムトークン"
},
"customRPC": {
"message": "カスタムRPC"
},
"customToken": {
"message": "カスタムトークン"
},
"decimal": {
"message": "小数点桁数"
},
@ -268,9 +265,6 @@
"invalidAddress": {
"message": "アドレスが無効です。"
},
"invalidInput": {
"message": "インプットが無効です。"
},
"jsonFile": {
"message": "JSONファイル",
"description": "format for importing an account"
@ -278,9 +272,6 @@
"kovan": {
"message": "Kovanテストネットワーク"
},
"max": {
"message": "最大"
},
"learnMore": {
"message": "詳細"
},
@ -296,24 +287,24 @@
"loadingTokens": {
"message": "トークンをロード中..."
},
"unlock": {
"message": "ログイン"
},
"lock": {
"message": "ログアウト"
},
"mainnet": {
"message": "Ethereumメインネットワーク"
},
"max": {
"message": "最大"
},
"message": {
"message": "メッセージ"
},
"myAccounts": {
"message": "マイアカウント"
},
"mustSelectOne": {
"message": "一つ以上のトークンを選択してください。"
},
"myAccounts": {
"message": "マイアカウント"
},
"needEtherInWallet": {
"message": "MetaMaskで分散型アプリケーションを使用するためには、このウォレットにEtherが必要です。"
},
@ -337,15 +328,15 @@
"newPassword": {
"message": "新規パスワード(最低8文字)"
},
"noAlreadyHaveSeed": {
"message": "すでにシードを持っています"
},
"next": {
"message": "次へ"
},
"noAddressForName": {
"message": "この名前にはアドレスが設定されていません。"
},
"noAlreadyHaveSeed": {
"message": "すでにシードを持っています"
},
"noTransactions": {
"message": "トランザクションがありません。"
},
@ -375,18 +366,21 @@
"recipientAddress": {
"message": "受取人アドレス"
},
"reject": {
"message": "拒否"
},
"rejected": {
"message": "拒否されました"
},
"required": {
"message": "必要です。"
},
"resetAccount": {
"message": "アカウントをリセット"
},
"restoreFromSeed": {
"message": "パスフレーズから復元する"
},
"required": {
"message": "必要です。"
},
"revealSeedWords": {
"message": "パスフレーズを表示"
},
@ -405,6 +399,9 @@
"searchResults": {
"message": "検索結果"
},
"searchTokens": {
"message": "トークンの検索"
},
"selectCurrency": {
"message": "通貨を選択"
},
@ -420,25 +417,22 @@
"sendTokens": {
"message": "トークンを送信"
},
"searchTokens": {
"message": "トークンの検索"
},
"settings": {
"message": "設定"
},
"showPrivateKeys": {
"message": "秘密鍵を表示"
},
"sigRequest": {
"message": "署名リクエスト"
},
"sign": {
"message": "署名"
},
"signatureRequest": {
"message": "署名リクエスト"
},
"signNotice": {
"message": "このメッセージへの署名は危険となる可能性があります。\n完全に信頼するサイトからのメッセージのみ、\nあなたのアカウントで署名して下さい。今後のバージョンでは、\nこの危険なメソッドは削除される予定です。"
},
"sigRequest": {
"signatureRequest": {
"message": "署名リクエスト"
},
"terms": {
@ -472,6 +466,9 @@
"unknownNetwork": {
"message": "不明なプライベートネットワーク"
},
"unlock": {
"message": "ログイン"
},
"usedByClients": {
"message": "様々なクライアントによって使用されています。"
},
@ -484,16 +481,16 @@
"walletSeed": {
"message": "ウォレットのパスフレーズ"
},
"welcomeBack": {
"message": "おかえりなさい!"
},
"welcome": {
"message": "MetaMask ベータ版へようこそ!"
},
"yourSigRequested": {
"message": "あなたの署名がリクエストされています。"
"welcomeBack": {
"message": "おかえりなさい!"
},
"youSign": {
"message": "署名しています。"
},
"yourSigRequested": {
"message": "あなたの署名がリクエストされています。"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,4 @@
{
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"reject": {
"message": "നിരസിക്കുക"
},
"about": {
"message": "വിവരം"
},
@ -15,21 +8,16 @@
"advanced": {
"message": "നൂതനം"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"back": {
"message": "പിന്നോട്ട്"
},
"basic": {
"message": "അടിസ്ഥാനം"
},
"off": {
"message": "ഓഫാക്കുക"
},
"ok": {
"message": "ശരി"
},
"on": {
"message": "ഓൺ ചെയ്യുക"
},
"cancel": {
"message": "റദ്ദാക്കൂ"
},
@ -89,6 +77,15 @@
"next": {
"message": "അടുത്തത്"
},
"off": {
"message": "ഓഫാക്കുക"
},
"ok": {
"message": "ശരി"
},
"on": {
"message": "ഓൺ ചെയ്യുക"
},
"origin": {
"message": "ഉറവിടം"
},
@ -98,11 +95,8 @@
"queue": {
"message": "ക്യൂവിൽ"
},
"reset": {
"message": "വീണ്ടും സജ്ജീകരിക്കുക"
},
"restore": {
"message": "പുനഃസ്ഥാപിക്കുക"
"reject": {
"message": "നിരസിക്കുക"
},
"remove": {
"message": "നീക്കംചെയ്യുക"
@ -110,12 +104,15 @@
"removeAccount": {
"message": "അക്കൗണ്ട് നീക്കംചെയ്യൽ"
},
"reset": {
"message": "വീണ്ടും സജ്ജീകരിക്കുക"
},
"restore": {
"message": "പുനഃസ്ഥാപിക്കുക"
},
"save": {
"message": "സംരക്ഷിക്കുക"
},
"slow": {
"message": "പതുക്കെ"
},
"search": {
"message": "തിരയൂ"
},
@ -125,6 +122,9 @@
"settings": {
"message": "ക്രമീകരണങ്ങള്‍"
},
"slow": {
"message": "പതുക്കെ"
},
"tryAgain": {
"message": "വീണ്ടും ശ്രമിക്കുക"
},

View File

@ -1,11 +1,4 @@
{
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"reject": {
"message": "नाकारा"
},
"about": {
"message": "बद्दल"
},
@ -15,21 +8,16 @@
"advanced": {
"message": "प्रगत"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"back": {
"message": "मागील"
},
"basic": {
"message": "मूलभूत"
},
"off": {
"message": "बंद"
},
"ok": {
"message": "ठीक आहे"
},
"on": {
"message": "चालू"
},
"cancel": {
"message": "रद्द करा"
},
@ -89,6 +77,15 @@
"next": {
"message": "पुढील"
},
"off": {
"message": "बंद"
},
"ok": {
"message": "ठीक आहे"
},
"on": {
"message": "चालू"
},
"origin": {
"message": "मूळ"
},
@ -98,11 +95,8 @@
"queue": {
"message": "रांग"
},
"reset": {
"message": "रीसेट करा"
},
"restore": {
"message": "पुनर्संचयित करा"
"reject": {
"message": "नाकारा"
},
"remove": {
"message": "काढून टाका"
@ -110,12 +104,15 @@
"removeAccount": {
"message": "खाते काढून टाका"
},
"reset": {
"message": "रीसेट करा"
},
"restore": {
"message": "पुनर्संचयित करा"
},
"save": {
"message": "सेव्ह करा"
},
"slow": {
"message": "धीमी"
},
"search": {
"message": "शोधा"
},
@ -125,6 +122,9 @@
"settings": {
"message": "सेटिंग्ज"
},
"slow": {
"message": "धीमी"
},
"tryAgain": {
"message": "पुन्हा प्रयत्न करा"
},

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,4 @@
{
"reject": {
"message": "Afwijzen"
},
"accountDetails": {
"message": "Accountgegevens"
},
@ -70,12 +67,12 @@
"copiedExclamation": {
"message": "Gekopieerde!"
},
"copyToClipboard": {
"message": "Kopieer naar klembord"
},
"copyPrivateKey": {
"message": "Dit is uw privésleutel (klik om te kopiëren)"
},
"copyToClipboard": {
"message": "Kopieer naar klembord"
},
"create": {
"message": "creëren"
},
@ -88,12 +85,12 @@
"customRPC": {
"message": "Aangepaste RPC"
},
"decimalsMustZerotoTen": {
"message": "Decimalen moeten minimaal 0 en niet meer dan 36 zijn."
},
"decimal": {
"message": "Decimalen van precisie"
},
"decimalsMustZerotoTen": {
"message": "Decimalen moeten minimaal 0 en niet meer dan 36 zijn."
},
"defaultNetwork": {
"message": "Het standaardnetwerk voor Ether-transacties is Main Net."
},
@ -196,15 +193,12 @@
"invalidAddressRecipient": {
"message": "Het adres van de ontvanger is ongeldig"
},
"invalidInput": {
"message": "Ongeldige invoer."
"invalidBlockExplorerURL": {
"message": "Ongeldige Block Explorer URI"
},
"invalidRPC": {
"message": "Ongeldige RPC-URI"
},
"invalidBlockExplorerURL": {
"message": "Ongeldige Block Explorer URI"
},
"jsonFile": {
"message": "JSON-bestand",
"description": "format for importing an account"
@ -221,9 +215,6 @@
"loadingTokens": {
"message": "Tokens laden ..."
},
"unlock": {
"message": "Log in"
},
"lock": {
"message": "Uitloggen"
},
@ -236,12 +227,12 @@
"metamaskDescription": {
"message": "MetaMask is een veilige identiteitskluis voor Ethereum."
},
"myAccounts": {
"message": "Mijn accounts"
},
"mustSelectOne": {
"message": "Moet ten minste één token selecteren."
},
"myAccounts": {
"message": "Mijn accounts"
},
"needEtherInWallet": {
"message": "Om te communiceren met gedecentraliseerde applicaties met MetaMask, heb je Ether nodig in je portemonnee."
},
@ -299,18 +290,21 @@
"recipientAddress": {
"message": "Geadresseerde adres"
},
"reject": {
"message": "Afwijzen"
},
"rejected": {
"message": "Verworpen"
},
"required": {
"message": "Verplicht"
},
"resetAccount": {
"message": "Account opnieuw instellen"
},
"restoreFromSeed": {
"message": "Herstel vanuit back-up woorden"
},
"required": {
"message": "Verplicht"
},
"revealSeedWords": {
"message": "Onthul back-up woorden"
},
@ -356,16 +350,16 @@
"showPrivateKeys": {
"message": "Privésleutels weergeven"
},
"sigRequest": {
"message": "Ondertekeningsverzoek"
},
"sign": {
"message": "Teken"
},
"signatureRequest": {
"message": "Ondertekeningsverzoek"
},
"signNotice": {
"message": "Het ondertekenen van dit bericht kan hebben \ngevaarlijke bijwerkingen. Meld alleen berichten van \nsites die u volledig vertrouwt met uw volledige account.\n Deze gevaarlijke methode wordt in een toekomstige versie verwijderd."
},
"sigRequest": {
"signatureRequest": {
"message": "Ondertekeningsverzoek"
},
"stateLogs": {
@ -408,6 +402,9 @@
"unknownNetwork": {
"message": "Onbekend privénetwerk"
},
"unlock": {
"message": "Log in"
},
"urlErrorMsg": {
"message": "Voor URI's is het juiste HTTP / HTTPS-voorvoegsel vereist."
},
@ -423,10 +420,10 @@
"welcome": {
"message": "Welkom bij MetaMask"
},
"yourSigRequested": {
"message": "Uw handtekening wordt aangevraagd"
},
"youSign": {
"message": "U ondertekent"
},
"yourSigRequested": {
"message": "Uw handtekening wordt aangevraagd"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,14 +1,4 @@
{
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"approve": {
"message": "Aprubahan"
},
"reject": {
"message": "Tanggihan"
},
"accountDetails": {
"message": "Detalye ng Account"
},
@ -25,6 +15,13 @@
"message": "Ethereum Browser Extension",
"description": "Ang deskripsyon ng application"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"approve": {
"message": "Aprubahan"
},
"attemptingConnect": {
"message": "Sinusubukang kumonekta sa blockchain."
},
@ -58,12 +55,12 @@
"copiedExclamation": {
"message": "Kinopya!"
},
"copyToClipboard": {
"message": "Kinopya sa clipboard"
},
"copyPrivateKey": {
"message": "Ito ang iyong private key (i-click upang makopya)"
},
"copyToClipboard": {
"message": "Kinopya sa clipboard"
},
"create": {
"message": "Gumawa"
},
@ -157,9 +154,6 @@
"invalidAddress": {
"message": "Invalid ang address"
},
"invalidInput": {
"message": "Invalid ang input."
},
"loading": {
"message": "Naglo-load..."
},
@ -213,6 +207,9 @@
"recipientAddress": {
"message": "Address ng Tatanggap"
},
"reject": {
"message": "Tanggihan"
},
"rejected": {
"message": "Tinanggihan"
},
@ -234,15 +231,15 @@
"showPrivateKeys": {
"message": "Ipakita ang Private Keys"
},
"sigRequest": {
"message": "Hiling na Signature"
},
"sign": {
"message": "I-sign"
},
"signNotice": {
"message": "Ang pag-sign ng mensaheng ito ay maaring magdulot ng mapanganib na epekto. I-sign lamang ang mga mensahe mula sa mga site na pinagkakatiwalaan mo ng iyong account. Ang mapanganib na paraang ito ay aalisin sa isa sa mga susunod na bersyon. "
},
"sigRequest": {
"message": "Hiling na Signature"
},
"total": {
"message": "Kabuuan"
},
@ -265,10 +262,10 @@
"viewAccount": {
"message": "Tingnan ang Account"
},
"yourSigRequested": {
"message": "Hinihiling ang iyong signature"
},
"youSign": {
"message": "Ikaw ay nagsa-sign"
},
"yourSigRequested": {
"message": "Hinihiling ang iyong signature"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,4 @@
{
"reject": {
"message": "Rejeitar"
},
"account": {
"message": "Conta"
},
@ -73,12 +70,12 @@
"copiedExclamation": {
"message": "Copiado!"
},
"copyToClipboard": {
"message": "Copiar para o clipboard"
},
"copyPrivateKey": {
"message": "Esta é a sua chave privada (carregue para copiar)"
},
"copyToClipboard": {
"message": "Copiar para o clipboard"
},
"create": {
"message": "Criar"
},
@ -91,12 +88,12 @@
"customRPC": {
"message": "Customizar RPC"
},
"decimalsMustZerotoTen": {
"message": "Decimais devem ser no mínimo 0 e não passar de 36."
},
"decimal": {
"message": "Precisão em Decimais"
},
"decimalsMustZerotoTen": {
"message": "Decimais devem ser no mínimo 0 e não passar de 36."
},
"defaultNetwork": {
"message": "A rede pré definida para transações em Ether é a Main Net."
},
@ -202,15 +199,12 @@
"invalidAddressRecipient": {
"message": "O endereço do destinatário é inválido "
},
"invalidInput": {
"message": "Campo inválido."
"invalidBlockExplorerURL": {
"message": "Block Explorer URI Inválido"
},
"invalidRPC": {
"message": "RPC URI Inválido"
},
"invalidBlockExplorerURL": {
"message": "Block Explorer URI Inválido"
},
"jsonFile": {
"message": "Ficheiro JSON",
"description": "format for importing an account"
@ -227,9 +221,6 @@
"loadingTokens": {
"message": "A carregar Tokens..."
},
"unlock": {
"message": "Entrar"
},
"lock": {
"message": "Sair"
},
@ -242,12 +233,12 @@
"metamaskDescription": {
"message": "O MetaMask é um lugar seguro para guardar a sua identidade em em Ethereum."
},
"myAccounts": {
"message": "As minhas contas"
},
"mustSelectOne": {
"message": "Deve escolher no mínimo 1 token."
},
"myAccounts": {
"message": "As minhas contas"
},
"needEtherInWallet": {
"message": "Para interagir com applicações descentralizadas usando MetaMask tem de ter Ether na sua carteira."
},
@ -309,18 +300,21 @@
"recipientAddress": {
"message": "Endereço do Destinatário"
},
"reject": {
"message": "Rejeitar"
},
"rejected": {
"message": "Rejeitado"
},
"required": {
"message": "Necessário"
},
"resetAccount": {
"message": "Reinicializar Conta"
},
"restoreFromSeed": {
"message": "Restaurar a partir da frase seed"
},
"required": {
"message": "Necessário"
},
"revealSeedWords": {
"message": "Revelar Palavras Seed"
},
@ -366,16 +360,16 @@
"showPrivateKeys": {
"message": "Mostrar Chaves Privadas"
},
"sigRequest": {
"message": "Pedido de Assinatura"
},
"sign": {
"message": "Assinar"
},
"signatureRequest": {
"message": "Pedido de Assinatura"
},
"signNotice": {
"message": "Assinar esta mensagem pode ter \nefeitos laterais perigosos. Apenas assine mensagens de sites que \ntotalmente confia com a sua conta total.\n Este método perigoso será removido numa versão posterior."
},
"sigRequest": {
"signatureRequest": {
"message": "Pedido de Assinatura"
},
"stateLogs": {
@ -418,6 +412,9 @@
"unknownNetwork": {
"message": "Rede Privada Desconhecida"
},
"unlock": {
"message": "Entrar"
},
"urlErrorMsg": {
"message": "Links requerem o prefixo HTTP/HTTPS apropriado."
},
@ -433,10 +430,10 @@
"welcome": {
"message": "Bem-vindo ao MetaMask"
},
"yourSigRequested": {
"message": "A sua assinatura está a ser pedida"
},
"youSign": {
"message": "Está a assinar"
},
"yourSigRequested": {
"message": "A sua assinatura está a ser pedida"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,4 @@
{
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"reject": {
"message": "Rejeitar"
},
"about": {
"message": "Acerca de"
},
@ -18,21 +11,16 @@
"amount": {
"message": "Quantia"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"back": {
"message": "Anterior"
},
"basic": {
"message": "Básico"
},
"off": {
"message": "Desativado"
},
"ok": {
"message": "OK"
},
"on": {
"message": "Ativado"
},
"cancel": {
"message": "Cancelar"
},
@ -108,6 +96,15 @@
"next": {
"message": "Seguinte"
},
"off": {
"message": "Desativado"
},
"ok": {
"message": "OK"
},
"on": {
"message": "Ativado"
},
"origin": {
"message": "Origem"
},
@ -120,11 +117,8 @@
"queue": {
"message": "Fila"
},
"reset": {
"message": "Repor"
},
"restore": {
"message": "Restaurar"
"reject": {
"message": "Rejeitar"
},
"remove": {
"message": "Remover"
@ -132,12 +126,15 @@
"removeAccount": {
"message": "Remover conta"
},
"reset": {
"message": "Repor"
},
"restore": {
"message": "Restaurar"
},
"save": {
"message": "Guardar"
},
"slow": {
"message": "Lento"
},
"search": {
"message": "Pesquisar"
},
@ -147,6 +144,9 @@
"settings": {
"message": "Definições"
},
"slow": {
"message": "Lento"
},
"tips": {
"message": "Doações"
},

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,6 @@
{
"approve": {
"message": "ஒப்புதல்"
},
"reject": {
"message": "நிராகரி"
"about": {
"message": "அறிமுகம்"
},
"account": {
"message": "கணக்கு"
@ -20,6 +17,9 @@
"addTokens": {
"message": "டோக்கன்களைச் சேர்"
},
"advanced": {
"message": "மேம்பட்டவை"
},
"amount": {
"message": "தொகை"
},
@ -31,6 +31,9 @@
"message": "மேடமஸ்க் ",
"description": "பயன்பாட்டின் பெயர்"
},
"approve": {
"message": "ஒப்புதல்"
},
"approved": {
"message": "அங்கீகரிக்கப்பட்ட"
},
@ -46,6 +49,9 @@
"balance": {
"message": "இருப்பு:"
},
"basic": {
"message": "அடிப்படை"
},
"blockiesIdenticon": {
"message": "ப்ளாக்கிஸ் ஐடென்டிகோன் பயன்பாட்டு"
},
@ -58,20 +64,35 @@
"buyCoinSwitchExplainer": {
"message": "சிறந்த விகிதத்தில் 300 க்கும் அதிகமான cryptocurrencies ஐ பரிமாறிக்கொள்ள ஒரு நாணயமாற்று இலக்கு நாணயம் ஸ்விட்ச் ஆகும்."
},
"ok": {
"message": "சரி"
},
"cancel": {
"message": "ரத்து செய்"
},
"close": {
"message": "மூடு"
},
"confirm": {
"message": "உறுதிப்படுத்து"
},
"confirmPassword": {
"message": "கடவுச்சொல்லை உறுதிப்படுத்துக"
},
"confirmed": {
"message": "உறுதி"
},
"confirmPassword": {
"message": "கடவுச்சொல்லை உறுதிப்படுத்துக"
"connect": {
"message": "இணை"
},
"connectingToKovan": {
"message": "கோவன் டெஸ்ட் நெட்வொர்க்குடன் இணைத்தல்"
},
"connectingToMainnet": {
"message": "முக்கிய எதெரியும் நெட்வொர்க் இணைக்கும்"
},
"connectingToRinkeby": {
"message": "ரிங்கெப்ய டெஸ்ட் நெட்வொர்க்குடன் இணைக்கிறது"
},
"connectingToRopsten": {
"message": "ரொப்ஸ்டென் டெஸ்ட் நெட்வொர்க்குடன் இணைக்கிறது"
},
"continueToCoinSwitch": {
"message": "நாணயம் மாறாமல் தொடர்க"
@ -82,12 +103,12 @@
"copiedExclamation": {
"message": "நகலெடுக்கப்பட்டன!"
},
"copyToClipboard": {
"message": "கிளிப்போர்டுக்கு நகலெடு"
},
"copyPrivateKey": {
"message": "இது உங்கள் தனிப்பட்ட விசை (நகலெடுக்க கிளிக் செய்யவும்)"
},
"copyToClipboard": {
"message": "கிளிப்போர்டுக்கு நகலெடு"
},
"create": {
"message": "உருவாக்கு"
},
@ -97,21 +118,24 @@
"customGas": {
"message": "எரிவாயுவைத் தனிப்பயனாக்குங்கள்"
},
"customToken": {
"message": "தனிப்பயன் டோக்கன்"
},
"customRPC": {
"message": "விருப்ப RPC ஐ"
},
"decimalsMustZerotoTen": {
"message": "தசமங்கள் குறைந்தபட்சம் 0, மற்றும் 36 க்கு மேல் இருக்க வேண்டும்."
"customToken": {
"message": "தனிப்பயன் டோக்கன்"
},
"decimal": {
"message": "துல்லியத்தின் முடிவு"
},
"decimalsMustZerotoTen": {
"message": "தசமங்கள் குறைந்தபட்சம் 0, மற்றும் 36 க்கு மேல் இருக்க வேண்டும்."
},
"defaultNetwork": {
"message": "எதிர் பரிவர்த்தனைகளுக்கான முன்னிருப்பு வலையமைப்பு முதன்மை நிகரமாகும்."
},
"delete": {
"message": "நீக்கு"
},
"deposit": {
"message": "வைப்புத்தொகை"
},
@ -142,12 +166,6 @@
"enterPassword": {
"message": "கடவுச்சொல்லை உள்ளிடவும்"
},
"passwordNotLongEnough": {
"message": "கடவுச்சொல் போதாது"
},
"passwordsDontMatch": {
"message": "கடவுச்சொற்கள் பொருந்தாதே"
},
"etherscanView": {
"message": "Etherscan கணக்கைப் பார்க்கவும்"
},
@ -157,6 +175,9 @@
"failed": {
"message": "தோல்வி"
},
"fast": {
"message": "வேகமான"
},
"fiat": {
"message": "FIAT",
"description": "பரிமாற்ற வகை"
@ -165,6 +186,9 @@
"message": "கோப்பு இறக்குமதி வேலை செய்யவில்லையா? இங்கே கிளிக் செய்யவும்!",
"description": "JSON கோப்பில் பயனர் கணக்கை தங்கள் கணக்கை இறக்குமதி செய்ய உதவுகிறது"
},
"forgetDevice": {
"message": "இந்தச் சாதனத்தை அகற்று"
},
"from": {
"message": "இருந்து"
},
@ -184,6 +208,9 @@
"message": "$ 1 க்கு ஒரு குழாய் இருந்து ஈதர் கிடைக்கும்$1",
"description": "ஈத்தர் குழாய் ஐந்து பிணைய பெயர் காட்டுகிறது"
},
"getStarted": {
"message": "தொடங்குக"
},
"here": {
"message": "இங்கே",
"description": "இங்கே-கிளிக் செய்யவும்- மேலும் தகவலுக்கு (troubleTokenBalances செல்கிறது)"
@ -194,6 +221,9 @@
"hideTokenPrompt": {
"message": "டோக்கனை மறை?"
},
"history": {
"message": "வரலாறு"
},
"import": {
"message": "இறக்குமதி செய்",
"description": "Button to import an account from a selected file"
@ -223,15 +253,12 @@
"invalidAddressRecipient": {
"message": "பெறுநர் முகவரி தவறானது"
},
"invalidInput": {
"message": "தவறான உள்ளீடு.."
"invalidBlockExplorerURL": {
"message": "தவறான Block Explorer URI"
},
"invalidRPC": {
"message": "தவறான RPC URI"
},
"invalidBlockExplorerURL": {
"message": "தவறான Block Explorer URI"
},
"jsonFile": {
"message": "JSON கோப்பு",
"description": "ஒரு கணக்கை இறக்குமதி செய்ய வடிவமைக்கப்பட்டுள்ளது"
@ -239,9 +266,6 @@
"kovan": {
"message": "கோவன் டெஸ்ட் நெட்வொர்க்"
},
"max": {
"message": "மேக்ஸ்"
},
"learnMore": {
"message": "மேலும் அறிக"
},
@ -266,18 +290,21 @@
"mainnet": {
"message": "முதன்மை எதெரியும் நெட்வொர்க்"
},
"max": {
"message": "மேக்ஸ்"
},
"message": {
"message": "செய்தி"
},
"metamaskDescription": {
"message": "மேடமஸ்க் என்பது ஒரு பாதுகாப்பான அடையாள வால்ட் எதெரியும்"
},
"myAccounts": {
"message": "எனது கணக்குகள்"
},
"mustSelectOne": {
"message": "குறைந்தது 1 டோக்கனை தேர்ந்தெடுக்க வேண்டும்."
},
"myAccounts": {
"message": "எனது கணக்குகள்"
},
"needEtherInWallet": {
"message": "மேடமஸ்க் ஐ பயன்படுத்தி பரவலாக்கப்பட்ட பயன்பாடுகளுடன் தொடர்பு கொள்ள, உங்கள் பணப்பரிமாற்றத்தில் ஈதர் தேவை."
},
@ -313,6 +340,27 @@
"noTransactions": {
"message": "பரிவர்த்தனைகள் இல்லை"
},
"off": {
"message": "ஆஃப்"
},
"ok": {
"message": "சரி"
},
"on": {
"message": "இயக்கு"
},
"origin": {
"message": "அசல்"
},
"password": {
"message": "கடவுச்சொல்"
},
"passwordNotLongEnough": {
"message": "கடவுச்சொல் போதாது"
},
"passwordsDontMatch": {
"message": "கடவுச்சொற்கள் பொருந்தாதே"
},
"pastePrivateKey": {
"message": "இங்கே உங்கள் தனிப்பட்ட விசை சரத்தை ஒட்டுக:",
"description": "ஒரு தனிப்பட்ட விசை ஒரு கணக்கை இறக்குமதி செய்ய"
@ -333,26 +381,41 @@
"privateNetwork": {
"message": "தனியார் நெட்வொர்க்"
},
"queue": {
"message": "வரிசை"
},
"readdToken": {
"message": "உங்கள் கணக்கு விருப்பங்கள் மெனுவில் \"டோக்கனைச் சேர்\" என்பதன் மூலம் நீங்கள் எதிர்காலத்தில் இந்த டோக்கனை மீண்டும் சேர்க்கலாம்."
},
"recipientAddress": {
"message": "பெறுநர் முகவரி"
},
"reject": {
"message": "நிராகரி"
},
"rejected": {
"message": "நிராகரிக்கப்பட்டது"
},
"resetAccount": {
"message": "கணக்கை மீட்டமை"
"remove": {
"message": "அகற்று"
},
"restoreFromSeed": {
"message": "விதை வாக்கியத்திலிருந்து மீட்கவும்"
"removeAccount": {
"message": "கணக்கை அகற்றுக"
},
"required": {
"message": "தேவையான"
},
"walletSeed": {
"message": "வால்ட் விதை"
"reset": {
"message": "மீட்டமை"
},
"resetAccount": {
"message": "கணக்கை மீட்டமை"
},
"restore": {
"message": "மீட்டமை"
},
"restoreFromSeed": {
"message": "விதை வாக்கியத்திலிருந்து மீட்கவும்"
},
"revealSeedWords": {
"message": "விதை வார்த்தைகள் வெளிப்படுத்த"
@ -366,24 +429,15 @@
"ropsten": {
"message": "ரொப்ஸ்டென் டெஸ்ட் நெட்வொர்க்"
},
"connectingToMainnet": {
"message": "முக்கிய எதெரியும் நெட்வொர்க் இணைக்கும்"
},
"connectingToRopsten": {
"message": "ரொப்ஸ்டென் டெஸ்ட் நெட்வொர்க்குடன் இணைக்கிறது"
},
"connectingToKovan": {
"message": "கோவன் டெஸ்ட் நெட்வொர்க்குடன் இணைத்தல்"
},
"connectingToRinkeby": {
"message": "ரிங்கெப்ய டெஸ்ட் நெட்வொர்க்குடன் இணைக்கிறது"
},
"save": {
"message": "சேமி"
},
"search": {
"message": "தேடல்"
},
"searchTokens": {
"message": "தேடல் டோக்கன்ஸ்"
},
"secretPhrase": {
"message": "உங்கள் பெட்டகத்தை மீட்டெடுப்பதற்காக இங்கே உங்கள் ரகசிய பன்னிரண்டு வார்த்தை சொற்றொடரை உள்ளிடவும்."
},
@ -405,26 +459,29 @@
"sendTokens": {
"message": "டோக்கன்களை அனுப்பவும்"
},
"searchTokens": {
"message": "தேடல் டோக்கன்ஸ்"
},
"settings": {
"message": "அமைப்புகள்"
},
"showPrivateKeys": {
"message": "தனிப்பட்ட விசைகளைக் காண்பி"
},
"sigRequest": {
"message": "கையொப்பம் கோரிக்கை"
},
"sign": {
"message": "உள்நுழை"
},
"signed": {
"message": "கையொப்பமிடப்பட்ட"
},
"signNotice": {
"message": "இந்த செய்தியில் கையொப்பமிடலாம் \nஆபத்தான பக்க விளைவுகள் இருக்கலாம். \n உங்கள் மொத்த கணக்கில் முழுமையாக நம்பக்கூடிய தளங்களில் செய்திகளை மட்டுமே கையொப்பமிடுங்கள். \n இந்த ஆபத்தான முறை எதிர்கால பதிப்பில் அகற்றப்படும்."
},
"sigRequest": {
"message": "கையொப்பம் கோரிக்கை"
"signed": {
"message": "கையொப்பமிடப்பட்ட"
},
"slow": {
"message": "மெதுவான"
},
"stateLogError": {
"message": "மாநில பதிவுகளை மீட்டெடுப்பதில் பிழை."
},
"stateLogs": {
"message": "மாநில பதிவுகள்"
@ -432,9 +489,6 @@
"stateLogsDescription": {
"message": "மாநில பதிவுகள் உங்கள் பொது கணக்கு முகவரிகள் மற்றும் பரிமாற்றங்களை அனுப்பியுள்ளன."
},
"stateLogError": {
"message": "மாநில பதிவுகளை மீட்டெடுப்பதில் பிழை."
},
"submitted": {
"message": "சமர்ப்பிக்கப்பட்டது"
},
@ -469,6 +523,9 @@
"message": "உங்கள் டோக்கன் நிலுவைகளை ஏற்றுவதில் சிக்கல் ஏற்பட்டது. நீங்கள் அவர்களை பார்க்க முடியும்.",
"description": "டோக்கன் நிலுவைகளை காண ஒரு இணைப்பு (இங்கே) தொடர்ந்து"
},
"tryAgain": {
"message": "மீண்டும் முயல்க"
},
"typePassword": {
"message": "உங்கள் கடவுச்சொல்லை தட்டச்சு செய்யவும்"
},
@ -481,94 +538,34 @@
"unknownNetwork": {
"message": "அறியப்படாத தனியார் நெட்வொர்க்"
},
"unlock": {
"message": "பூட்டைத் திற"
},
"urlErrorMsg": {
"message": "URI கள் சரியான HTTP / HTTPS முன்னொட்டு தேவை."
},
"usedByClients": {
"message": "பல்வேறு வாடிக்கையாளர்கள் பல்வேறு பயன்படுத்திய"
},
"userName": {
"message": "பயனர்பெயர்"
},
"viewAccount": {
"message": "கணக்கைப் பார்"
},
"visitWebSite": {
"message": "எங்கள் வலைத்தளத்தைப் பார்வையிடவும்"
},
"walletSeed": {
"message": "வால்ட் விதை"
},
"welcome": {
"message": "மெட்டாமாஸ்க் பீட்டாவுக்கு வருக"
},
"yourSigRequested": {
"message": "உங்கள் கையொப்பம் கோரப்படுகிறது"
},
"youSign": {
"message": "நீங்கள் கையெழுத்திடுகிறீர்கள்"
},
"about": {
"message": "அறிமுகம்"
},
"advanced": {
"message": "மேம்பட்டவை"
},
"basic": {
"message": "அடிப்படை"
},
"off": {
"message": "ஆஃப்"
},
"on": {
"message": "இயக்கு"
},
"close": {
"message": "மூடு"
},
"connect": {
"message": "இணை"
},
"delete": {
"message": "நீக்கு"
},
"fast": {
"message": "வேகமான"
},
"forgetDevice": {
"message": "இந்தச் சாதனத்தை அகற்று"
},
"getStarted": {
"message": "தொடங்குக"
},
"history": {
"message": "வரலாறு"
},
"origin": {
"message": "அசல்"
},
"password": {
"message": "கடவுச்சொல்"
},
"queue": {
"message": "வரிசை"
},
"reset": {
"message": "மீட்டமை"
},
"restore": {
"message": "மீட்டமை"
},
"remove": {
"message": "அகற்று"
},
"removeAccount": {
"message": "கணக்கை அகற்றுக"
},
"slow": {
"message": "மெதுவான"
},
"tryAgain": {
"message": "மீண்டும் முயல்க"
},
"unlock": {
"message": "பூட்டைத் திற"
},
"userName": {
"message": "பயனர்பெயர்"
"yourSigRequested": {
"message": "உங்கள் கையொப்பம் கோரப்படுகிறது"
}
}

View File

@ -1,11 +1,4 @@
{
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"reject": {
"message": "తిరస్కరించు"
},
"about": {
"message": "గురించి"
},
@ -15,21 +8,16 @@
"advanced": {
"message": "ఆధునిక"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"back": {
"message": "వెనుకకు"
},
"basic": {
"message": "ప్రాథమికం"
},
"off": {
"message": "ఆఫ్ అయ్యింది"
},
"ok": {
"message": "సరే"
},
"on": {
"message": "ఆన్ చేయి"
},
"cancel": {
"message": "రద్దు చెయ్యి"
},
@ -89,6 +77,15 @@
"next": {
"message": "తదుపరి"
},
"off": {
"message": "ఆఫ్ అయ్యింది"
},
"ok": {
"message": "సరే"
},
"on": {
"message": "ఆన్ చేయి"
},
"origin": {
"message": "మూలం"
},
@ -98,11 +95,8 @@
"queue": {
"message": "క్రమ వరుస"
},
"reset": {
"message": "రీసెట్ చేయి"
},
"restore": {
"message": "పునరుద్ధరించు"
"reject": {
"message": "తిరస్కరించు"
},
"remove": {
"message": "తీసివేయి"
@ -110,12 +104,15 @@
"removeAccount": {
"message": "ఖాతాను తీసివేయి"
},
"reset": {
"message": "రీసెట్ చేయి"
},
"restore": {
"message": "పునరుద్ధరించు"
},
"save": {
"message": "సేవ్ చేయి"
},
"slow": {
"message": "నెమ్మదిగా"
},
"search": {
"message": "శోధించు"
},
@ -125,6 +122,9 @@
"settings": {
"message": "సెట్టింగ్‌లు"
},
"slow": {
"message": "నెమ్మదిగా"
},
"tryAgain": {
"message": "మళ్లీ ప్రయత్నించు"
},

View File

@ -1,7 +1,4 @@
{
"reject": {
"message": "ปฏิเสธ"
},
"about": {
"message": "เกี่ยวกับ"
},
@ -61,9 +58,6 @@
"buyCoinSwitchExplainer": {
"message": "CoinSwitch เป็นจุดหมายปลายทางแบบครบวงจรในการแลกเปลี่ยนสกุลเงินมากกว่า 300 ครั้งในอัตราที่ดีที่สุด"
},
"on": {
"message": "เปิด"
},
"cancel": {
"message": "ยกเลิก"
},
@ -94,33 +88,33 @@
"connectingToRopsten": {
"message": "เชื่อมต่อกับเครือข่ายทดสอบ Ropsten"
},
"continueToWyre": {
"message": "ไปที่ Wyre"
},
"continueToCoinSwitch": {
"message": "ไปที่ CoinSwitch"
},
"continueToWyre": {
"message": "ไปที่ Wyre"
},
"contractDeployment": {
"message": "การติดตั้งสัญญา"
},
"copiedExclamation": {
"message": "คัดลอกแล้ว!"
},
"copyToClipboard": {
"message": "คัดลอกไปคลิปบอร์ด"
},
"copyPrivateKey": {
"message": "นี่คือคีย์ส่วนตัวของคุณ(กดเพื่อคัดลอก)"
},
"copyToClipboard": {
"message": "คัดลอกไปคลิปบอร์ด"
},
"create": {
"message": "สร้าง"
},
"createAccount": {
"message": "สร้างบัญชี"
},
"createAWallet": {
"message": "สร้าง Wallet"
},
"createAccount": {
"message": "สร้างบัญชี"
},
"currencyConversion": {
"message": "การแปลงสกุลเงิน"
},
@ -133,18 +127,21 @@
"customRPC": {
"message": "กำหนดค่า RPC เอง"
},
"decimalsMustZerotoTen": {
"message": "จำนวนต้องมากกว่า 0 และไม่เกิน 36"
},
"decimal": {
"message": "ตำแหน่งของทศนิยม"
},
"decimalsMustZerotoTen": {
"message": "จำนวนต้องมากกว่า 0 และไม่เกิน 36"
},
"defaultNetwork": {
"message": "ค่าเริ่มต้นของเครือข่ายสำหรับทำรายการธุรกรรมอีเธอร์คือ Main Net"
},
"delete": {
"message": "ลบ"
},
"deleteNetwork": {
"message": "ลบเครือข่าย?"
},
"deposit": {
"message": "ฝาก"
},
@ -163,15 +160,15 @@
"done": {
"message": "เสร็จสิ้น"
},
"dontHaveAHardwareWallet": {
"message": "ไม่มี Hardware Wallet ใช่ไหม"
},
"downloadSecretBackup": {
"message": "ดาวน์โหลด Phrase แบ็คอัพลับนี้และเก็บรักษาไว้ให้ปลอดภัยในฮาร์ดดิสก์หรืออุปกรณ์เก็บข้อมูลภายนอกที่มีการเข้ารหัส"
},
"downloadStateLogs": {
"message": "ดาวน์โหลดล็อกสถานะ"
},
"dontHaveAHardwareWallet": {
"message": "ไม่มี Hardware Wallet ใช่ไหม"
},
"edit": {
"message": "แก้ไข"
},
@ -280,15 +277,12 @@
"invalidAddressRecipientNotEthNetwork": {
"message": "ไม่ใช่เครือข่าย ETH ตั้งเป็นตัวพิมพ์เล็ก"
},
"invalidInput": {
"message": "อินพุทไม่ถูกต้อง"
"invalidBlockExplorerURL": {
"message": "Block Explorer URI ไม่ถูกต้อง"
},
"invalidRPC": {
"message": "RPC URI ไม่ถูกต้อง"
},
"invalidBlockExplorerURL": {
"message": "Block Explorer URI ไม่ถูกต้อง"
},
"jsonFile": {
"message": "ไฟล์ JSON",
"description": "format for importing an account"
@ -320,12 +314,12 @@
"metamaskDescription": {
"message": "MetaMask คือที่เก็บตัวตนนิรภัยสำหรับอีเธอเรียม"
},
"myAccounts": {
"message": "บัญชีของฉัน"
},
"mustSelectOne": {
"message": "ต้องเลือกอย่างน้อย 1 โทเค็น"
},
"myAccounts": {
"message": "บัญชีของฉัน"
},
"needEtherInWallet": {
"message": "คุณจะต้องมีอีเธอร์ในกระเป๋าเงินของคุณในการใช้งานกับแอพพลิเคชันแบบกระจายด้วย MetaMask"
},
@ -336,12 +330,12 @@
"negativeETH": {
"message": "ไม่สามารถส่งอีเธอร์เป็นจำนวนติดลบได้"
},
"networks": {
"message": "เครือข่าย"
},
"networkSettingsDescription": {
"message": "เพิ่มและแก้ไขเครือข่าย RPC แบบกำหนดเอง"
},
"networks": {
"message": "เครือข่าย"
},
"newAccount": {
"message": "บัญชีใหม่"
},
@ -373,6 +367,9 @@
"noTransactions": {
"message": "ยังไม่มีรายการธุรกรรม"
},
"on": {
"message": "เปิด"
},
"participateInMetaMetricsDescription": {
"message": "เข้าร่วมใน MetaMetrics เพื่อช่วยเราในการพัฒนา MetaMask"
},
@ -402,24 +399,24 @@
"recipientAddress": {
"message": "แอดแดรสผู้รับ"
},
"reject": {
"message": "ปฏิเสธ"
},
"rejected": {
"message": "ถูกปฏิเสธ"
},
"resetAccount": {
"message": "รีเซ็ตบัญชี"
},
"deleteNetwork": {
"message": "ลบเครือข่าย?"
},
"remindMeLater": {
"message": "เตือนฉันภายหลัง"
},
"restoreFromSeed": {
"message": "กู้คืนจากกลุ่มคำชีด"
},
"required": {
"message": "จำเป็น"
},
"resetAccount": {
"message": "รีเซ็ตบัญชี"
},
"restoreFromSeed": {
"message": "กู้คืนจากกลุ่มคำชีด"
},
"revealSeedWords": {
"message": "เปิดเผยกลุ่มคำชีด"
},
@ -435,9 +432,6 @@
"save": {
"message": "บันทึก"
},
"slower": {
"message": "ช้าลง"
},
"search": {
"message": "ค้นหา"
},
@ -447,9 +441,15 @@
"seedPhraseReq": {
"message": "กลุ่มคำชีดมีความยาว 12 คำ"
},
"selectAnAccount": {
"message": "เลือกบัญชี"
},
"selectCurrency": {
"message": "เลือกสกุลเงิน"
},
"selectHdPath": {
"message": "เลือกเส้นทาง HD"
},
"selectType": {
"message": "เลือกประเภท"
},
@ -465,12 +465,6 @@
"sendTokens": {
"message": "ส่งโทเค็น"
},
"selectAnAccount": {
"message": "เลือกบัญชี"
},
"selectHdPath": {
"message": "เลือกเส้นทาง HD"
},
"settings": {
"message": "การตั้งค่า"
},
@ -480,23 +474,23 @@
"showPrivateKeys": {
"message": "แสดงคีย์ส่วนตัว"
},
"sigRequest": {
"message": "ขอลายเซ็น"
},
"sign": {
"message": "เซ็นชื่อ"
},
"signNotice": {
"message": "การเซ็นชื่อในข้อความนี้อาจจะเป็นอันตรายได้ \nเซ็นชื่อเฉพาะข้อความจากแหล่งที่คุณไว้วางใจได้จริง ๆ เท่านั้น \nวิธีที่อันตรายนี้จะถูกลบออกในอนาคต"
},
"signatureRequest": {
"message": "ขอลายเซ็น"
},
"signed": {
"message": "ลงชื่อแล้ว"
},
"signNotice": {
"message": "การเซ็นชื่อในข้อความนี้อาจจะเป็นอันตรายได้ \nเซ็นชื่อเฉพาะข้อความจากแหล่งที่คุณไว้วางใจได้จริง ๆ เท่านั้น \nวิธีที่อันตรายนี้จะถูกลบออกในอนาคต"
},
"sigRequest": {
"message": "ขอลายเซ็น"
},
"switchNetworks": {
"message": "เปลี่ยนเครือข่าย"
"slower": {
"message": "ช้าลง"
},
"stateLogs": {
"message": "บันทึกของสถานะ"
@ -519,6 +513,9 @@
"supportCenter": {
"message": "ไปที่ศูนย์สนับสนุนของเรา"
},
"switchNetworks": {
"message": "เปลี่ยนเครือข่าย"
},
"symbol": {
"message": "เครื่องหมาย"
},
@ -549,12 +546,12 @@
"total": {
"message": "รวม"
},
"transactionDropped": {
"message": "ธุรกรรมถูกยกเลิกเมื่อ $2"
},
"transactionCancelSuccess": {
"message": "ยกเลิกธุรกรรมเรียบร้อยแล้วเมื่อ $2"
},
"transactionDropped": {
"message": "ธุรกรรมถูกยกเลิกเมื่อ $2"
},
"transferBetweenAccounts": {
"message": "โอนระหว่างบัญชีของฉัน"
},
@ -592,10 +589,10 @@
"welcome": {
"message": "ยินดีต้อนรับสู่ MetaMask เบต้า"
},
"yourSigRequested": {
"message": "ลายเซ็นของคุณกำลังได้รับการร้องขอ"
},
"youSign": {
"message": "คุณกำลังเซ็นชื่อ"
},
"yourSigRequested": {
"message": "ลายเซ็นของคุณกำลังได้รับการร้องขอ"
}
}

View File

@ -1,7 +1,4 @@
{
"reject": {
"message": "Reddetmek"
},
"account": {
"message": "Hesap"
},
@ -58,33 +55,30 @@
"buyCoinSwitchExplainer": {
"message": "Cairnswich, 300'den fazla kriptona en iyi oranda eşlik eden tek durak noktasıdır."
},
"ok": {
"message": "Tamam"
},
"cancel": {
"message": "Vazgeç"
},
"confirm": {
"message": "Onayla"
},
"confirmed": {
"message": "Onaylandı"
},
"confirmPassword": {
"message": "Şifreyi onayla"
},
"confirmed": {
"message": "Onaylandı"
},
"connectingToKovan": {
"message": "Kovan Test Ağına bağlanıyor"
},
"connectingToMainnet": {
"message": "Main Ethereum Ağına bağlanıyor"
},
"connectingToRopsten": {
"message": "Ropsten Test Ağına bağlanıyor"
},
"connectingToRinkeby": {
"message": "Rinkeby Test Ağına bağlanıyor"
},
"connectingToRopsten": {
"message": "Ropsten Test Ağına bağlanıyor"
},
"continueToCoinSwitch": {
"message": "CoinSwitch'e devam et"
},
@ -94,12 +88,12 @@
"copiedExclamation": {
"message": "Kopyalandı!"
},
"copyToClipboard": {
"message": "Panoya kopyala"
},
"copyPrivateKey": {
"message": "Bu sizin özel anahtarınız (kopyalamak için tıklayın)"
},
"copyToClipboard": {
"message": "Panoya kopyala"
},
"create": {
"message": "Yarat"
},
@ -109,18 +103,18 @@
"customGas": {
"message": "Gas'i özelleştir"
},
"customToken": {
"message": "Özel Jeton"
},
"customRPC": {
"message": "Özel RPC"
},
"decimalsMustZerotoTen": {
"message": "Ondalıklar en azından 0 olmalı ve 36'dan büyük olmamalı."
"customToken": {
"message": "Özel Jeton"
},
"decimal": {
"message": "Ondalık hassasiyeti"
},
"decimalsMustZerotoTen": {
"message": "Ondalıklar en azından 0 olmalı ve 36'dan büyük olmamalı."
},
"defaultNetwork": {
"message": "Ether işlemleri için varsayılan ağ Main Net."
},
@ -229,15 +223,12 @@
"invalidAddressRecipient": {
"message": "Alıcı adresi geçersiz"
},
"invalidInput": {
"message": "Geçersiz giriş."
"invalidBlockExplorerURL": {
"message": "Geçersiz Block Explorer URI"
},
"invalidRPC": {
"message": "Geçersiz RPC URI"
},
"invalidBlockExplorerURL": {
"message": "Geçersiz Block Explorer URI"
},
"jsonFile": {
"message": "JSON Dosyası",
"description": "format for importing an account"
@ -245,9 +236,6 @@
"kovan": {
"message": "Kovan Test Ağı"
},
"max": {
"message": "Maksimum"
},
"learnMore": {
"message": "Daha fazla bilgi."
},
@ -263,27 +251,27 @@
"loadingTokens": {
"message": "Jetonlar yükleniyor..."
},
"unlock": {
"message": "Giriş yap"
},
"lock": {
"message": ıkış"
},
"mainnet": {
"message": "Main Ethereum Ağı"
},
"max": {
"message": "Maksimum"
},
"message": {
"message": "Mesaj"
},
"metamaskDescription": {
"message": "MetaMask Ethereum için güvenli bir kimlik kasasıdır."
},
"myAccounts": {
"message": "Hesaplarım"
},
"mustSelectOne": {
"message": "En az bir jeton seçilmeli"
},
"myAccounts": {
"message": "Hesaplarım"
},
"needEtherInWallet": {
"message": "MetaMask kullanarak merkezi olamayan uygulamalarla etkileşmek için cüzdanınızda Ether bulunmalıdır."
},
@ -319,12 +307,15 @@
"noTransactions": {
"message": "İşlem yok"
},
"passwordsDontMatch": {
"message": "Parolalar eşleşmiyor"
"ok": {
"message": "Tamam"
},
"passwordNotLongEnough": {
"message": "Parola yeterince uzun değil"
},
"passwordsDontMatch": {
"message": "Parolalar eşleşmiyor"
},
"pastePrivateKey": {
"message": "Özel anahtar dizinizi buraya yapıştırın:",
"description": "For importing an account from a private key"
@ -351,18 +342,21 @@
"recipientAddress": {
"message": "Alıcı adresi"
},
"reject": {
"message": "Reddetmek"
},
"rejected": {
"message": "Rededildi"
},
"required": {
"message": "Gerekli"
},
"resetAccount": {
"message": "Hesabı sıfıla"
},
"restoreFromSeed": {
"message": "Kaynak ifadeden geri getir. Restore from seed phrase"
},
"required": {
"message": "Gerekli"
},
"revealSeedWords": {
"message": "Kaynak kelimelerini göster"
},
@ -381,6 +375,9 @@
"search": {
"message": "Ara"
},
"searchTokens": {
"message": "Jeton ara"
},
"secretPhrase": {
"message": "Kasanızı geri getirmek için gizli 12 kelimelik ifadenizi giriniz."
},
@ -402,29 +399,29 @@
"sendTokens": {
"message": "Jeton Gönder"
},
"searchTokens": {
"message": "Jeton ara"
},
"settings": {
"message": "Ayarlar"
},
"showPrivateKeys": {
"message": "Özel anahtarları göster"
},
"sigRequest": {
"message": "İmza isteği"
},
"sign": {
"message": "İmza"
},
"signNotice": {
"message": "Bu mesajı imzalamanın tehlikeli \nyan etkileri olabilir. Tamamen güvendiğiniz sitelerden \ngelen mesajları hesabınızla imzalayınız.\n Bu tehlikeli metod gelecek versiyonlarda çıkarılacaktır. "
},
"signatureRequest": {
"message": "İmza isteği"
},
"signed": {
"message": "İmzalandı"
},
"signNotice": {
"message": "Bu mesajı imzalamanın tehlikeli \nyan etkileri olabilir. Tamamen güvendiğiniz sitelerden \ngelen mesajları hesabınızla imzalayınız.\n Bu tehlikeli metod gelecek versiyonlarda çıkarılacaktır. "
},
"sigRequest": {
"message": "İmza isteği"
"stateLogError": {
"message": "Durum kayıtlarını alma hatası"
},
"stateLogs": {
"message": "Durum Kayıtları"
@ -432,9 +429,6 @@
"stateLogsDescription": {
"message": "Durum kayıtlarıık hesap adresinizi ve gönderilen işlemleri içerir."
},
"stateLogError": {
"message": "Durum kayıtlarını alma hatası"
},
"submitted": {
"message": "Gönderildi"
},
@ -481,6 +475,9 @@
"unknownNetwork": {
"message": "Bilinmeyen özel ağ"
},
"unlock": {
"message": "Giriş yap"
},
"urlErrorMsg": {
"message": "URIler için HTTP/HTTPS öneki gerekmektedir."
},
@ -499,10 +496,10 @@
"welcome": {
"message": "MetaMask'ya Hoşgeldiniz"
},
"yourSigRequested": {
"message": "İmzanız isteniyor"
},
"youSign": {
"message": "İmzalıyorsunuz"
},
"yourSigRequested": {
"message": "İmzanız isteniyor"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,4 @@
{
"reject": {
"message": "Từ chối"
},
"account": {
"message": "Tài khoản"
},
@ -61,12 +58,12 @@
"copiedExclamation": {
"message": "Đã sao chép!"
},
"copyToClipboard": {
"message": "Đã sao chép vào clipboard"
},
"copyPrivateKey": {
"message": "Đây là Khoá Bí Mật của bạn (nhấp vào để sao chép)"
},
"copyToClipboard": {
"message": "Đã sao chép vào clipboard"
},
"create": {
"message": "Tạo"
},
@ -169,9 +166,6 @@
"invalidAddress": {
"message": "Địa chỉ không hợp lệ"
},
"invalidInput": {
"message": "Thông tin nhập vào không hợp lệ"
},
"jsonFile": {
"message": "Tập tin JSON",
"description": "format for importing an account"
@ -249,6 +243,9 @@
"recipientAddress": {
"message": "Địa chỉ người nhận"
},
"reject": {
"message": "Từ chối"
},
"rejected": {
"message": "Không chấp thuận/Bị từ chối"
},
@ -276,16 +273,16 @@
"showPrivateKeys": {
"message": "Hiển thị khóa cá nhân"
},
"sigRequest": {
"message": "Yêu cầu chữ ký"
},
"sign": {
"message": "Ký nhận"
},
"signatureRequest": {
"message": "Yêu cầu chữ ký"
},
"signNotice": {
"message": "Ký nhận vào tin nhắn này có thể gây nguy hiểm. Chỉ nên ký nhận tin nhắn từ những nguồn bạn hoàn toàn tin tưởng có thể dùng với tài khoản của bạn. Cách thức nguy hiểm này sẽ bị xóa trong phiên bản sắp tới."
},
"sigRequest": {
"signatureRequest": {
"message": "Yêu cầu chữ ký"
},
"testFaucet": {
@ -316,10 +313,10 @@
"viewAccount": {
"message": "Xem tài khoản"
},
"yourSigRequested": {
"message": "Chữ ký của bạn đang được yêu cầu"
},
"youSign": {
"message": "Bạn đang ký nhận"
},
"yourSigRequested": {
"message": "Chữ ký của bạn đang được yêu cầu"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,3 @@
<svg width="12" height="16" viewBox="0 0 12 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.35075 15.9844C3.77098 15.9844 4.07114 15.6722 4.07114 15.2351L4.07114 3.9961L5.51193 3.9961C6.1723 3.9961 6.47246 3.21561 6.02221 2.74732L3.62089 0.249757C3.35074 -0.0624391 2.9005 -0.0624391 2.63035 0.249757L0.229027 2.74732C-0.251237 3.21561 0.0789448 3.9961 0.709292 3.9961L2.15008 3.9961L2.15008 15.2351C2.15008 15.6722 2.48027 15.9844 2.87048 15.9844L3.35075 15.9844ZM7.91325 0.749269L7.91325 11.9883L6.47246 11.9883C5.84212 11.9883 5.51193 12.8 5.9922 13.2683L8.39352 15.7659C8.66367 16.078 9.11392 16.078 9.38406 15.7659L11.7854 13.2683C12.2356 12.8 11.9355 11.9883 11.2751 11.9883L9.83431 11.9883L9.83431 0.749269C9.83431 0.343415 9.53415 5.36924e-07 9.11391 5.55292e-07L8.63365 5.76285e-07C8.24344 5.93342e-07 7.91325 0.343415 7.91325 0.749269Z" fill="#D6D9DC"/>
</svg>

After

Width:  |  Height:  |  Size: 887 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 118 KiB

View File

@ -1,35 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
"version": "8.0.10",
"manifest_version": 2,
"author": "https://metamask.io",
"description": "__MSG_appDescription__",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Shift+M",
"mac": "Alt+Shift+M",
"chromeos": "Alt+Shift+M",
"linux": "Alt+Shift+M"
}
}
},
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"512": "images/icon-512.png"
},
"default_locale": "en",
"background": {
"scripts": [
"bg-libs.js",
"background.js"
],
"scripts": ["bg-libs.js", "background.js"],
"persistent": true
},
"browser_action": {
@ -45,28 +17,45 @@
"default_title": "MetaMask",
"default_popup": "popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Shift+M",
"mac": "Alt+Shift+M",
"chromeos": "Alt+Shift+M",
"linux": "Alt+Shift+M"
}
}
},
"content_scripts": [
{
"matches": [
"file://*/*",
"http://*/*",
"https://*/*"
],
"js": [
"contentscript.js"
],
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"js": ["contentscript.js"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"*://connect.trezor.io/*/popup.html"
],
"js": [
"vendor/trezor/content-script.js"
]
"matches": ["*://connect.trezor.io/*/popup.html"],
"js": ["vendor/trezor/content-script.js"]
}
],
"default_locale": "en",
"description": "__MSG_appDescription__",
"externally_connectable": {
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"icons": {
"16": "images/icon-16.png",
"19": "images/icon-19.png",
"32": "images/icon-32.png",
"38": "images/icon-38.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"512": "images/icon-512.png"
},
"manifest_version": 2,
"name": "__MSG_appName__",
"permissions": [
"storage",
"unlimitedStorage",
@ -78,16 +67,7 @@
"*://*.eth/",
"notifications"
],
"web_accessible_resources": [
"inpage.js",
"phishing.html"
],
"externally_connectable": {
"matches": [
"https://metamask.io/*"
],
"ids": [
"*"
]
}
"short_name": "__MSG_appName__",
"version": "8.1.0",
"web_accessible_resources": ["inpage.js", "phishing.html"]
}

View File

@ -1 +1 @@
{}
{}

View File

@ -1,3 +1,3 @@
{
"minimum_chrome_version": "58"
}
}

View File

@ -5,4 +5,4 @@
"strict_min_version": "56.0"
}
}
}
}

View File

@ -6,4 +6,4 @@
"clipboardRead",
"http://localhost:8545/"
]
}
}

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