Compare commits
101 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ab93d512d3 | ||
|
|
cf4c26a77c | ||
|
|
02296c686f | ||
|
|
60bd0eb86c | ||
|
|
188b321cc9 | ||
|
|
377331c44e | ||
|
|
dfd442cdac | ||
|
|
9561cf54e4 | ||
|
|
714953b50e | ||
|
|
b3844e38d1 | ||
|
|
5dac6a03eb | ||
|
|
d18974480a | ||
|
|
6a90bf3b9d | ||
|
|
5026ebded8 | ||
|
|
02dbed7a75 | ||
|
|
20f462f5a4 | ||
|
|
cf9c6e4b4c | ||
|
|
c0201206cc | ||
|
|
2d2508f681 | ||
|
|
609542c49b | ||
|
|
9a0294f469 | ||
|
|
68e6bc1ba8 | ||
|
|
bbc64f12bb | ||
|
|
06f5fdc6ad | ||
|
|
b4e756ebba | ||
|
|
17439d6fbb | ||
|
|
79d582c72f | ||
|
|
245f8d7279 | ||
|
|
3bf36eade4 | ||
|
|
8eb864426f | ||
|
|
af83399606 | ||
|
|
1d5be31621 | ||
|
|
abe6bf500c | ||
|
|
36cfe627f1 | ||
|
|
aef5d0513a | ||
|
|
5e09a0ced7 | ||
|
|
f768428b9d | ||
|
|
76c9bf84cd | ||
|
|
f26a3306ec | ||
|
|
1846883e56 | ||
|
|
9cacd577e7 | ||
|
|
5e8d725e0e | ||
|
|
c63482b6f7 | ||
|
|
e15a8ddf59 | ||
|
|
1e7dff060f | ||
|
|
244ed38b72 | ||
|
|
87d547ab2b | ||
|
|
0c213be5d9 | ||
|
|
f62d301891 | ||
|
|
902cd343d2 | ||
|
|
a26db9a51d | ||
|
|
b7cb2d24c7 | ||
|
|
aea2bca775 | ||
|
|
93b79be1b6 | ||
|
|
54531b53c6 | ||
|
|
b286c1ba09 | ||
|
|
8dd1be3b47 | ||
|
|
0b8afcff41 | ||
|
|
e4b727f6f0 | ||
|
|
6e0b24cbb1 | ||
|
|
442879ccd9 | ||
|
|
50386f65e7 | ||
|
|
eba8170c46 | ||
|
|
095dbffbca | ||
|
|
4df2824984 | ||
|
|
15345690e3 | ||
|
|
3e36281f77 | ||
|
|
27a868f0cb | ||
|
|
03c3fdef34 | ||
|
|
d37e963f26 | ||
|
|
2e40bef7f0 | ||
|
|
dac87e2299 | ||
|
|
be15604244 | ||
|
|
077570efb4 | ||
|
|
a9ea5c9a1d | ||
|
|
f5b91c9cda | ||
|
|
c0e6388bf8 | ||
|
|
d89d5598a0 | ||
|
|
6f66f5ee77 | ||
|
|
4b8d942da6 | ||
|
|
ef2cb75f6f | ||
|
|
5e0e9be955 | ||
|
|
72a914b0d1 | ||
|
|
c4ce5caf0c | ||
|
|
b87a45b0ba | ||
|
|
80eb394877 | ||
|
|
b47808fcd9 | ||
|
|
e56fdf3eff | ||
|
|
bca70dd46a | ||
|
|
78581d5420 | ||
|
|
896f2fc3c0 | ||
|
|
66e9092d11 | ||
|
|
df397a8a15 | ||
|
|
a7b945a812 | ||
|
|
b71708faee | ||
|
|
7715294bea | ||
|
|
7a57fbe6d9 | ||
|
|
dddd24f1f4 | ||
|
|
13d9f6c29d | ||
|
|
16d8f958b1 | ||
|
|
868242a6b2 |
@@ -2,3 +2,4 @@ REACT_APP_INFURA_KEY="099fc58e0de9451d80b18d7c74caa7c1"
|
||||
REACT_APP_PORTIS_ID="c0e2bf01-4b08-4fd5-ac7b-8e26b58cd236"
|
||||
REACT_APP_FORTMATIC_KEY="pk_live_F937DF033A1666BF"
|
||||
REACT_APP_GOOGLE_ANALYTICS_ID="UA-128182339-4"
|
||||
REACT_APP_FIREBASE_KEY="AIzaSyBcZWwTcTJHj_R6ipZcrJkXdq05PuX0Rs0"
|
||||
|
||||
@@ -48,6 +48,11 @@
|
||||
{
|
||||
"name": "styled-components",
|
||||
"message": "Please import from styled-components/macro."
|
||||
},
|
||||
{
|
||||
"name": "@lingui/macro",
|
||||
"importNames": ["t"],
|
||||
"message": "Please use <Trans> instead of t."
|
||||
}
|
||||
],
|
||||
"patterns": [
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -16,6 +16,9 @@
|
||||
# production
|
||||
/build
|
||||
|
||||
# bundle
|
||||
/dist
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
|
||||
7
cosmos.config.json
Normal file
7
cosmos.config.json
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"staticPath": "public",
|
||||
"watchDirs": ["src"],
|
||||
"webpack": {
|
||||
"configPath": "react-scripts/config/webpack.config"
|
||||
}
|
||||
}
|
||||
21
package.json
21
package.json
@@ -2,9 +2,16 @@
|
||||
"name": "@uniswap/interface",
|
||||
"description": "Uniswap Interface",
|
||||
"homepage": ".",
|
||||
"main": "dist/interface.js",
|
||||
"module": "dist/interface.esm.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
"lib",
|
||||
"dist"
|
||||
],
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"@davatar/react": "1.6.2",
|
||||
"@davatar/react": "1.8.1",
|
||||
"@ethersproject/experimental": "^5.4.0",
|
||||
"@gnosis.pm/safe-apps-web3-react": "^0.6.0",
|
||||
"@graphql-codegen/cli": "1.21.5",
|
||||
@@ -53,7 +60,7 @@
|
||||
"@uniswap/liquidity-staker": "^1.0.2",
|
||||
"@uniswap/merkle-distributor": "1.0.1",
|
||||
"@uniswap/sdk-core": "^3.0.1",
|
||||
"@uniswap/token-lists": "^1.0.0-beta.26",
|
||||
"@uniswap/token-lists": "^1.0.0-beta.27",
|
||||
"@uniswap/v2-core": "1.0.0",
|
||||
"@uniswap/v2-periphery": "^1.1.0-beta.0",
|
||||
"@uniswap/v2-sdk": "^3.0.0-alpha.2",
|
||||
@@ -65,12 +72,13 @@
|
||||
"@web3-react/injected-connector": "^6.0.7",
|
||||
"@web3-react/portis-connector": "^6.0.9",
|
||||
"@web3-react/walletconnect-connector": "^7.0.2-alpha.0",
|
||||
"@web3-react/walletlink-connector": "^6.2.3",
|
||||
"@web3-react/walletlink-connector": "^6.2.8",
|
||||
"ajv": "^6.12.3",
|
||||
"array.prototype.flat": "^1.2.4",
|
||||
"array.prototype.flatmap": "^1.2.4",
|
||||
"cids": "^1.0.0",
|
||||
"copy-to-clipboard": "^3.2.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"cypress": "^7.7.0",
|
||||
"d3": "^7.0.0",
|
||||
"eslint": "^7.11.0",
|
||||
@@ -80,11 +88,13 @@
|
||||
"eslint-plugin-react-hooks": "^4.0.0",
|
||||
"eslint-plugin-simple-import-sort": "^7.0.0",
|
||||
"ethers": "^5.4.6",
|
||||
"firebase": "^9.1.3",
|
||||
"graphql": "^15.5.0",
|
||||
"graphql-request": "^3.4.0",
|
||||
"inter-ui": "^3.13.1",
|
||||
"jest-styled-components": "^7.0.5",
|
||||
"luxon": "^1.25.0",
|
||||
"microbundle": "^0.13.3",
|
||||
"ms.macro": "^2.0.0",
|
||||
"multicodec": "^3.0.1",
|
||||
"multihashes": "^4.0.2",
|
||||
@@ -95,6 +105,7 @@
|
||||
"qs": "^6.9.4",
|
||||
"react": "^17.0.1",
|
||||
"react-confetti": "^6.0.0",
|
||||
"react-cosmos": "^5.6.3",
|
||||
"react-dom": "^17.0.1",
|
||||
"react-feather": "^2.0.8",
|
||||
"react-ga": "^2.5.7",
|
||||
@@ -138,7 +149,9 @@
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test --env=./custom-test-env.js",
|
||||
"test:e2e": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run --record'"
|
||||
"test:e2e": "start-server-and-test 'serve build -l 3000' http://localhost:3000 'cypress run --record'",
|
||||
"bundle": "microbundle --tsconfig tsconfig.lib.json src/lib/index.tsx --format esm,cjs",
|
||||
"cosmos": "open http://localhost:5000 && cross-env FAST_REFRESH=false cosmos"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app",
|
||||
|
||||
3
src/assets/svg/dot_line.svg
Normal file
3
src/assets/svg/dot_line.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="100%" height="35" viewBox="800 0 300 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<line x1="0" x2="2000" y1="100" y2="100" stroke="currentColor" stroke-width="20" stroke-linecap="round" stroke-dasharray="1, 45"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 233 B |
@@ -1,13 +1,13 @@
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="black" xmlns="http://www.w3.org/2000/svg">
|
||||
<g style="mix-blend-mode:darken">
|
||||
<path d="M4.15217 1.55141C3.96412 1.52242 3.95619 1.51902 4.04468 1.5055C4.21427 1.47958 4.61472 1.51491 4.89067 1.58012C5.53489 1.73232 6.12109 2.12221 6.74683 2.81466L6.91307 2.99862L7.15088 2.96062C8.15274 2.8006 9.17194 2.92778 10.0244 3.31918C10.2589 3.42686 10.6287 3.64121 10.6749 3.69629C10.6896 3.71384 10.7166 3.82684 10.7349 3.94742C10.7982 4.36458 10.7665 4.68434 10.6382 4.92317C10.5683 5.05313 10.5644 5.09432 10.6114 5.20554C10.6489 5.2943 10.7534 5.35999 10.8569 5.35985C11.0687 5.35956 11.2968 5.0192 11.4024 4.54561L11.4444 4.3575L11.5275 4.45109C11.9835 4.96459 12.3417 5.66488 12.4032 6.16335L12.4192 6.29332L12.3426 6.17517C12.2107 5.97186 12.0781 5.83346 11.9084 5.72183C11.6024 5.52062 11.2789 5.45215 10.4222 5.40727C9.64839 5.36675 9.21045 5.30106 8.77621 5.16032C8.03738 4.9209 7.66493 4.60204 6.78729 3.4576C6.39748 2.94928 6.15654 2.66804 5.91687 2.44155C5.37228 1.92691 4.83716 1.65701 4.15217 1.55141Z" fill="black"/>
|
||||
<path d="M10.8494 2.68637C10.8689 2.34575 10.9153 2.12108 11.0088 1.9159C11.0458 1.83469 11.0804 1.76822 11.0858 1.76822C11.0911 1.76822 11.075 1.82816 11.05 1.90142C10.9821 2.10054 10.9709 2.3729 11.0177 2.68978C11.0771 3.09184 11.1109 3.14985 11.5385 3.58416C11.739 3.78788 11.9723 4.0448 12.0568 4.15511L12.2106 4.35568L12.0568 4.21234C11.8688 4.03705 11.4364 3.6952 11.3409 3.64633C11.2768 3.61356 11.2673 3.61413 11.2278 3.65321C11.1914 3.68922 11.1837 3.74333 11.1787 3.99915C11.1708 4.39786 11.1161 4.65377 10.9842 4.90965C10.9128 5.04805 10.9015 5.01851 10.9661 4.8623C11.0143 4.74566 11.0192 4.69439 11.0189 4.30842C11.0181 3.53291 10.9255 3.34647 10.3823 3.02709C10.2447 2.94618 10.0179 2.8295 9.87839 2.76778C9.73887 2.70606 9.62805 2.6523 9.63208 2.64828C9.64746 2.63307 10.1772 2.78675 10.3905 2.86828C10.7077 2.98954 10.76 3.00526 10.7985 2.99063C10.8244 2.98082 10.8369 2.90608 10.8494 2.68637Z" fill="black"/>
|
||||
<path d="M4.51745 4.01304C4.13569 3.49066 3.89948 2.68973 3.95062 2.091L3.96643 1.90572L4.05333 1.92148C4.21652 1.95106 4.49789 2.05515 4.62964 2.13469C4.9912 2.35293 5.14773 2.64027 5.30697 3.37811C5.35362 3.59423 5.41482 3.8388 5.44298 3.9216C5.48831 4.05487 5.65962 4.36617 5.7989 4.56834C5.89922 4.71395 5.83258 4.78295 5.61082 4.76305C5.27215 4.73267 4.8134 4.41799 4.51745 4.01304Z" fill="black"/>
|
||||
<path d="M10.3863 7.90088C8.60224 7.18693 7.97389 6.56721 7.97389 5.52157C7.97389 5.36769 7.97922 5.24179 7.98571 5.24179C7.99221 5.24179 8.06124 5.29257 8.1391 5.35465C8.50088 5.64305 8.906 5.76623 10.0275 5.92885C10.6875 6.02455 11.0589 6.10185 11.4015 6.21477C12.4904 6.57371 13.1641 7.30212 13.3248 8.29426C13.3715 8.58255 13.3441 9.12317 13.2684 9.4081C13.2087 9.63315 13.0263 10.0388 12.9779 10.0544C12.9645 10.0587 12.9514 10.0076 12.9479 9.93809C12.9296 9.56554 12.7402 9.20285 12.4221 8.93116C12.0604 8.62227 11.5745 8.37633 10.3863 7.90088Z" fill="black"/>
|
||||
<path d="M9.13385 8.19748C9.11149 8.06527 9.07272 7.89643 9.04769 7.82228L9.00217 7.68748L9.08672 7.7818C9.20374 7.91233 9.2962 8.07937 9.37457 8.30185C9.43438 8.47165 9.44111 8.52215 9.44066 8.79807C9.4402 9.06896 9.43273 9.12575 9.3775 9.27858C9.29042 9.51959 9.18233 9.69048 9.00097 9.87391C8.67507 10.2036 8.25607 10.3861 7.65143 10.4618C7.54633 10.4749 7.24 10.4971 6.97069 10.511C6.292 10.5461 5.84531 10.6186 5.44393 10.7587C5.38623 10.7788 5.3347 10.7911 5.32947 10.7859C5.31323 10.7698 5.58651 10.6079 5.81223 10.4998C6.1305 10.3474 6.44733 10.2643 7.15719 10.1468C7.50785 10.0887 7.86998 10.0183 7.96194 9.99029C8.83033 9.72566 9.27671 9.04276 9.13385 8.19748Z" fill="black"/>
|
||||
<path d="M9.95169 9.64109C9.71465 9.13463 9.66022 8.64564 9.79009 8.18961C9.80399 8.14088 9.82632 8.101 9.83976 8.101C9.85319 8.101 9.90913 8.13105 9.96404 8.16777C10.0733 8.24086 10.2924 8.36395 10.876 8.68023C11.6043 9.0749 12.0196 9.3805 12.302 9.72965C12.5493 10.0354 12.7023 10.3837 12.776 10.8084C12.8177 11.0489 12.7932 11.6277 12.7311 11.8699C12.5353 12.6337 12.0802 13.2336 11.4311 13.5837C11.336 13.635 11.2506 13.6771 11.2414 13.6773C11.2321 13.6775 11.2668 13.5899 11.3184 13.4827C11.5367 13.029 11.5616 12.5877 11.3965 12.0965C11.2954 11.7957 11.0893 11.4287 10.6732 10.8084C10.1893 10.0873 10.0707 9.89539 9.95169 9.64109Z" fill="black"/>
|
||||
<path d="M3.25046 12.3737C3.91252 11.8181 4.73629 11.4234 5.48666 11.3022C5.81005 11.25 6.34877 11.2707 6.64823 11.3469C7.12824 11.469 7.55763 11.7425 7.78094 12.0683C7.99918 12.3867 8.09281 12.6642 8.19029 13.2816C8.22875 13.5252 8.27057 13.7697 8.28323 13.8251C8.35644 14.1451 8.4989 14.4008 8.67544 14.5293C8.95583 14.7333 9.43865 14.7459 9.91362 14.5618C9.99423 14.5305 10.0642 14.5089 10.0691 14.5138C10.0864 14.5308 9.84719 14.6899 9.67847 14.7737C9.45143 14.8864 9.2709 14.93 9.03102 14.93C8.59601 14.93 8.23486 14.7101 7.9335 14.2616C7.87419 14.1733 7.7409 13.909 7.63729 13.6741C7.3191 12.9528 7.16199 12.7331 6.79255 12.4926C6.47104 12.2834 6.05641 12.2459 5.74449 12.3979C5.33475 12.5976 5.22043 13.118 5.51389 13.4478C5.63053 13.5789 5.84803 13.6919 6.02588 13.7139C6.35861 13.7551 6.64455 13.5035 6.64455 13.1696C6.64455 12.9528 6.56071 12.8291 6.34966 12.7344C6.0614 12.6051 5.75156 12.7562 5.75304 13.0254C5.75368 13.1402 5.80396 13.2122 5.91971 13.2643C5.99397 13.2977 5.99569 13.3003 5.93514 13.2878C5.67066 13.2333 5.6087 12.9164 5.82135 12.706C6.07667 12.4535 6.60461 12.5649 6.78591 12.9097C6.86208 13.0545 6.87092 13.3429 6.80451 13.517C6.6559 13.9068 6.22256 14.1117 5.78297 14.0002C5.48368 13.9242 5.36181 13.842 5.00097 13.4726C4.37395 12.8306 4.13053 12.7062 3.22657 12.566L3.05335 12.5391L3.25046 12.3737Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.308383 0.883984C2.40235 3.40996 3.84457 4.45213 4.00484 4.67231C4.13717 4.85412 4.08737 5.01757 3.86067 5.14567C3.7346 5.21689 3.47541 5.28905 3.34564 5.28905C3.19887 5.28905 3.14847 5.23278 3.14847 5.23278C3.06337 5.15255 3.01544 5.16658 2.5784 4.39555C1.97166 3.45981 1.46389 2.68357 1.45004 2.67057C1.41801 2.64052 1.41856 2.64153 2.51654 4.59413C2.69394 5.0011 2.55182 5.15049 2.55182 5.20845C2.55182 5.32636 2.51946 5.38834 2.37311 5.55059C2.12914 5.8211 2.02008 6.12505 1.94135 6.7541C1.8531 7.45926 1.60492 7.95737 0.917156 8.80989C0.514562 9.30893 0.448686 9.4004 0.3471 9.60153C0.219144 9.85482 0.183961 9.99669 0.169701 10.3165C0.154629 10.6547 0.183983 10.8732 0.287934 11.1965C0.378939 11.4796 0.473932 11.6665 0.716778 12.0403C0.926351 12.3629 1.04702 12.6027 1.04702 12.6965C1.04702 12.7711 1.06136 12.7712 1.38611 12.6983C2.16328 12.5239 2.79434 12.2171 3.14925 11.8411C3.36891 11.6084 3.42048 11.4799 3.42215 11.1611C3.42325 10.9525 3.41587 10.9088 3.35914 10.7888C3.2668 10.5935 3.09869 10.4311 2.72817 10.1794C2.2427 9.84953 2.03534 9.58398 1.97807 9.21878C1.93108 8.91913 1.98559 8.70771 2.25416 8.14825C2.53214 7.56916 2.60103 7.32239 2.64763 6.73869C2.67773 6.36158 2.71941 6.21286 2.82842 6.09348C2.94212 5.969 3.04447 5.92684 3.32584 5.88863C3.78457 5.82635 4.07667 5.70839 4.31677 5.48849C4.52505 5.29772 4.61221 5.11391 4.62558 4.8372L4.63574 4.62747L4.51934 4.49259C4.09783 4.00411 0.0261003 0.5 0.000160437 0.5C-0.00538105 0.5 0.133325 0.672804 0.308383 0.883984ZM1.28364 10.6992C1.37894 10.5314 1.3283 10.3158 1.16889 10.2104C1.01827 10.1109 0.78428 10.1578 0.78428 10.2875C0.78428 10.3271 0.806303 10.3559 0.855937 10.3813C0.939514 10.424 0.945581 10.4721 0.879823 10.5703C0.81323 10.6698 0.818604 10.7573 0.894991 10.8167C1.0181 10.9125 1.19237 10.8598 1.28364 10.6992Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.92523 5.99865C4.70988 6.06439 4.50054 6.29124 4.43574 6.5291C4.39621 6.67421 4.41864 6.92875 4.47785 7.00736C4.57351 7.13433 4.66602 7.16778 4.91651 7.16603C5.40693 7.16263 5.83327 6.95358 5.88284 6.69224C5.92347 6.47801 5.73622 6.18112 5.4783 6.05078C5.34521 5.98355 5.06217 5.95688 4.92523 5.99865ZM5.49853 6.44422C5.57416 6.33741 5.54107 6.22198 5.41245 6.14391C5.1675 5.99525 4.79708 6.11827 4.79708 6.34826C4.79708 6.46274 4.99025 6.58765 5.16731 6.58765C5.28516 6.58765 5.44644 6.5178 5.49853 6.44422Z" fill="black"/>
|
||||
<path d="M4.15217 1.55141C3.96412 1.52242 3.95619 1.51902 4.04468 1.5055C4.21427 1.47958 4.61472 1.51491 4.89067 1.58012C5.53489 1.73232 6.12109 2.12221 6.74683 2.81466L6.91307 2.99862L7.15088 2.96062C8.15274 2.8006 9.17194 2.92778 10.0244 3.31918C10.2589 3.42686 10.6287 3.64121 10.6749 3.69629C10.6896 3.71384 10.7166 3.82684 10.7349 3.94742C10.7982 4.36458 10.7665 4.68434 10.6382 4.92317C10.5683 5.05313 10.5644 5.09432 10.6114 5.20554C10.6489 5.2943 10.7534 5.35999 10.8569 5.35985C11.0687 5.35956 11.2968 5.0192 11.4024 4.54561L11.4444 4.3575L11.5275 4.45109C11.9835 4.96459 12.3417 5.66488 12.4032 6.16335L12.4192 6.29332L12.3426 6.17517C12.2107 5.97186 12.0781 5.83346 11.9084 5.72183C11.6024 5.52062 11.2789 5.45215 10.4222 5.40727C9.64839 5.36675 9.21045 5.30106 8.77621 5.16032C8.03738 4.9209 7.66493 4.60204 6.78729 3.4576C6.39748 2.94928 6.15654 2.66804 5.91687 2.44155C5.37228 1.92691 4.83716 1.65701 4.15217 1.55141Z"/>
|
||||
<path d="M10.8494 2.68637C10.8689 2.34575 10.9153 2.12108 11.0088 1.9159C11.0458 1.83469 11.0804 1.76822 11.0858 1.76822C11.0911 1.76822 11.075 1.82816 11.05 1.90142C10.9821 2.10054 10.9709 2.3729 11.0177 2.68978C11.0771 3.09184 11.1109 3.14985 11.5385 3.58416C11.739 3.78788 11.9723 4.0448 12.0568 4.15511L12.2106 4.35568L12.0568 4.21234C11.8688 4.03705 11.4364 3.6952 11.3409 3.64633C11.2768 3.61356 11.2673 3.61413 11.2278 3.65321C11.1914 3.68922 11.1837 3.74333 11.1787 3.99915C11.1708 4.39786 11.1161 4.65377 10.9842 4.90965C10.9128 5.04805 10.9015 5.01851 10.9661 4.8623C11.0143 4.74566 11.0192 4.69439 11.0189 4.30842C11.0181 3.53291 10.9255 3.34647 10.3823 3.02709C10.2447 2.94618 10.0179 2.8295 9.87839 2.76778C9.73887 2.70606 9.62805 2.6523 9.63208 2.64828C9.64746 2.63307 10.1772 2.78675 10.3905 2.86828C10.7077 2.98954 10.76 3.00526 10.7985 2.99063C10.8244 2.98082 10.8369 2.90608 10.8494 2.68637Z"/>
|
||||
<path d="M4.51745 4.01304C4.13569 3.49066 3.89948 2.68973 3.95062 2.091L3.96643 1.90572L4.05333 1.92148C4.21652 1.95106 4.49789 2.05515 4.62964 2.13469C4.9912 2.35293 5.14773 2.64027 5.30697 3.37811C5.35362 3.59423 5.41482 3.8388 5.44298 3.9216C5.48831 4.05487 5.65962 4.36617 5.7989 4.56834C5.89922 4.71395 5.83258 4.78295 5.61082 4.76305C5.27215 4.73267 4.8134 4.41799 4.51745 4.01304Z"/>
|
||||
<path d="M10.3863 7.90088C8.60224 7.18693 7.97389 6.56721 7.97389 5.52157C7.97389 5.36769 7.97922 5.24179 7.98571 5.24179C7.99221 5.24179 8.06124 5.29257 8.1391 5.35465C8.50088 5.64305 8.906 5.76623 10.0275 5.92885C10.6875 6.02455 11.0589 6.10185 11.4015 6.21477C12.4904 6.57371 13.1641 7.30212 13.3248 8.29426C13.3715 8.58255 13.3441 9.12317 13.2684 9.4081C13.2087 9.63315 13.0263 10.0388 12.9779 10.0544C12.9645 10.0587 12.9514 10.0076 12.9479 9.93809C12.9296 9.56554 12.7402 9.20285 12.4221 8.93116C12.0604 8.62227 11.5745 8.37633 10.3863 7.90088Z"/>
|
||||
<path d="M9.13385 8.19748C9.11149 8.06527 9.07272 7.89643 9.04769 7.82228L9.00217 7.68748L9.08672 7.7818C9.20374 7.91233 9.2962 8.07937 9.37457 8.30185C9.43438 8.47165 9.44111 8.52215 9.44066 8.79807C9.4402 9.06896 9.43273 9.12575 9.3775 9.27858C9.29042 9.51959 9.18233 9.69048 9.00097 9.87391C8.67507 10.2036 8.25607 10.3861 7.65143 10.4618C7.54633 10.4749 7.24 10.4971 6.97069 10.511C6.292 10.5461 5.84531 10.6186 5.44393 10.7587C5.38623 10.7788 5.3347 10.7911 5.32947 10.7859C5.31323 10.7698 5.58651 10.6079 5.81223 10.4998C6.1305 10.3474 6.44733 10.2643 7.15719 10.1468C7.50785 10.0887 7.86998 10.0183 7.96194 9.99029C8.83033 9.72566 9.27671 9.04276 9.13385 8.19748Z"/>
|
||||
<path d="M9.95169 9.64109C9.71465 9.13463 9.66022 8.64564 9.79009 8.18961C9.80399 8.14088 9.82632 8.101 9.83976 8.101C9.85319 8.101 9.90913 8.13105 9.96404 8.16777C10.0733 8.24086 10.2924 8.36395 10.876 8.68023C11.6043 9.0749 12.0196 9.3805 12.302 9.72965C12.5493 10.0354 12.7023 10.3837 12.776 10.8084C12.8177 11.0489 12.7932 11.6277 12.7311 11.8699C12.5353 12.6337 12.0802 13.2336 11.4311 13.5837C11.336 13.635 11.2506 13.6771 11.2414 13.6773C11.2321 13.6775 11.2668 13.5899 11.3184 13.4827C11.5367 13.029 11.5616 12.5877 11.3965 12.0965C11.2954 11.7957 11.0893 11.4287 10.6732 10.8084C10.1893 10.0873 10.0707 9.89539 9.95169 9.64109Z"/>
|
||||
<path d="M3.25046 12.3737C3.91252 11.8181 4.73629 11.4234 5.48666 11.3022C5.81005 11.25 6.34877 11.2707 6.64823 11.3469C7.12824 11.469 7.55763 11.7425 7.78094 12.0683C7.99918 12.3867 8.09281 12.6642 8.19029 13.2816C8.22875 13.5252 8.27057 13.7697 8.28323 13.8251C8.35644 14.1451 8.4989 14.4008 8.67544 14.5293C8.95583 14.7333 9.43865 14.7459 9.91362 14.5618C9.99423 14.5305 10.0642 14.5089 10.0691 14.5138C10.0864 14.5308 9.84719 14.6899 9.67847 14.7737C9.45143 14.8864 9.2709 14.93 9.03102 14.93C8.59601 14.93 8.23486 14.7101 7.9335 14.2616C7.87419 14.1733 7.7409 13.909 7.63729 13.6741C7.3191 12.9528 7.16199 12.7331 6.79255 12.4926C6.47104 12.2834 6.05641 12.2459 5.74449 12.3979C5.33475 12.5976 5.22043 13.118 5.51389 13.4478C5.63053 13.5789 5.84803 13.6919 6.02588 13.7139C6.35861 13.7551 6.64455 13.5035 6.64455 13.1696C6.64455 12.9528 6.56071 12.8291 6.34966 12.7344C6.0614 12.6051 5.75156 12.7562 5.75304 13.0254C5.75368 13.1402 5.80396 13.2122 5.91971 13.2643C5.99397 13.2977 5.99569 13.3003 5.93514 13.2878C5.67066 13.2333 5.6087 12.9164 5.82135 12.706C6.07667 12.4535 6.60461 12.5649 6.78591 12.9097C6.86208 13.0545 6.87092 13.3429 6.80451 13.517C6.6559 13.9068 6.22256 14.1117 5.78297 14.0002C5.48368 13.9242 5.36181 13.842 5.00097 13.4726C4.37395 12.8306 4.13053 12.7062 3.22657 12.566L3.05335 12.5391L3.25046 12.3737Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.308383 0.883984C2.40235 3.40996 3.84457 4.45213 4.00484 4.67231C4.13717 4.85412 4.08737 5.01757 3.86067 5.14567C3.7346 5.21689 3.47541 5.28905 3.34564 5.28905C3.19887 5.28905 3.14847 5.23278 3.14847 5.23278C3.06337 5.15255 3.01544 5.16658 2.5784 4.39555C1.97166 3.45981 1.46389 2.68357 1.45004 2.67057C1.41801 2.64052 1.41856 2.64153 2.51654 4.59413C2.69394 5.0011 2.55182 5.15049 2.55182 5.20845C2.55182 5.32636 2.51946 5.38834 2.37311 5.55059C2.12914 5.8211 2.02008 6.12505 1.94135 6.7541C1.8531 7.45926 1.60492 7.95737 0.917156 8.80989C0.514562 9.30893 0.448686 9.4004 0.3471 9.60153C0.219144 9.85482 0.183961 9.99669 0.169701 10.3165C0.154629 10.6547 0.183983 10.8732 0.287934 11.1965C0.378939 11.4796 0.473932 11.6665 0.716778 12.0403C0.926351 12.3629 1.04702 12.6027 1.04702 12.6965C1.04702 12.7711 1.06136 12.7712 1.38611 12.6983C2.16328 12.5239 2.79434 12.2171 3.14925 11.8411C3.36891 11.6084 3.42048 11.4799 3.42215 11.1611C3.42325 10.9525 3.41587 10.9088 3.35914 10.7888C3.2668 10.5935 3.09869 10.4311 2.72817 10.1794C2.2427 9.84953 2.03534 9.58398 1.97807 9.21878C1.93108 8.91913 1.98559 8.70771 2.25416 8.14825C2.53214 7.56916 2.60103 7.32239 2.64763 6.73869C2.67773 6.36158 2.71941 6.21286 2.82842 6.09348C2.94212 5.969 3.04447 5.92684 3.32584 5.88863C3.78457 5.82635 4.07667 5.70839 4.31677 5.48849C4.52505 5.29772 4.61221 5.11391 4.62558 4.8372L4.63574 4.62747L4.51934 4.49259C4.09783 4.00411 0.0261003 0.5 0.000160437 0.5C-0.00538105 0.5 0.133325 0.672804 0.308383 0.883984ZM1.28364 10.6992C1.37894 10.5314 1.3283 10.3158 1.16889 10.2104C1.01827 10.1109 0.78428 10.1578 0.78428 10.2875C0.78428 10.3271 0.806303 10.3559 0.855937 10.3813C0.939514 10.424 0.945581 10.4721 0.879823 10.5703C0.81323 10.6698 0.818604 10.7573 0.894991 10.8167C1.0181 10.9125 1.19237 10.8598 1.28364 10.6992Z"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.92523 5.99865C4.70988 6.06439 4.50054 6.29124 4.43574 6.5291C4.39621 6.67421 4.41864 6.92875 4.47785 7.00736C4.57351 7.13433 4.66602 7.16778 4.91651 7.16603C5.40693 7.16263 5.83327 6.95358 5.88284 6.69224C5.92347 6.47801 5.73622 6.18112 5.4783 6.05078C5.34521 5.98355 5.06217 5.95688 4.92523 5.99865ZM5.49853 6.44422C5.57416 6.33741 5.54107 6.22198 5.41245 6.14391C5.1675 5.99525 4.79708 6.11827 4.79708 6.34826C4.79708 6.46274 4.99025 6.58765 5.16731 6.58765C5.28516 6.58765 5.44644 6.5178 5.49853 6.44422Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.8 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.15217 1.55141C3.96412 1.52242 3.95619 1.51902 4.04468 1.5055C4.21427 1.47958 4.61472 1.51491 4.89067 1.58012C5.53489 1.73232 6.12109 2.12221 6.74683 2.81466L6.91307 2.99862L7.15088 2.96062C8.15274 2.8006 9.17194 2.92778 10.0244 3.31918C10.2589 3.42686 10.6287 3.64121 10.6749 3.69629C10.6896 3.71384 10.7166 3.82684 10.7349 3.94742C10.7982 4.36458 10.7665 4.68434 10.6382 4.92317C10.5683 5.05313 10.5644 5.09432 10.6114 5.20554C10.6489 5.2943 10.7534 5.35999 10.8569 5.35985C11.0687 5.35956 11.2968 5.0192 11.4024 4.54561L11.4444 4.3575L11.5275 4.45109C11.9835 4.96459 12.3417 5.66488 12.4032 6.16335L12.4192 6.29332L12.3426 6.17517C12.2107 5.97186 12.0781 5.83346 11.9084 5.72183C11.6024 5.52062 11.2789 5.45215 10.4222 5.40727C9.64839 5.36675 9.21045 5.30106 8.77621 5.16032C8.03738 4.9209 7.66493 4.60204 6.78729 3.4576C6.39748 2.94928 6.15654 2.66804 5.91687 2.44155C5.37228 1.92691 4.83716 1.65701 4.15217 1.55141Z" fill="white"/>
|
||||
<path d="M10.8494 2.68637C10.8689 2.34575 10.9153 2.12108 11.0088 1.9159C11.0458 1.83469 11.0804 1.76822 11.0858 1.76822C11.0911 1.76822 11.075 1.82816 11.05 1.90142C10.9821 2.10054 10.9709 2.3729 11.0177 2.68978C11.0771 3.09184 11.1109 3.14985 11.5385 3.58416C11.739 3.78788 11.9723 4.0448 12.0568 4.15511L12.2106 4.35568L12.0568 4.21234C11.8688 4.03705 11.4364 3.6952 11.3409 3.64633C11.2768 3.61356 11.2673 3.61413 11.2278 3.65321C11.1914 3.68922 11.1837 3.74333 11.1787 3.99915C11.1708 4.39786 11.1161 4.65377 10.9842 4.90965C10.9128 5.04805 10.9015 5.01851 10.9661 4.8623C11.0143 4.74566 11.0192 4.69439 11.0189 4.30842C11.0181 3.53291 10.9255 3.34647 10.3823 3.02709C10.2447 2.94618 10.0179 2.8295 9.87839 2.76778C9.73887 2.70606 9.62805 2.6523 9.63208 2.64828C9.64746 2.63307 10.1772 2.78675 10.3905 2.86828C10.7077 2.98954 10.76 3.00526 10.7985 2.99063C10.8244 2.98082 10.8369 2.90608 10.8494 2.68637Z" fill="white"/>
|
||||
<path d="M4.51745 4.01304C4.13569 3.49066 3.89948 2.68973 3.95062 2.091L3.96643 1.90572L4.05333 1.92148C4.21652 1.95106 4.49789 2.05515 4.62964 2.13469C4.9912 2.35293 5.14773 2.64027 5.30697 3.37811C5.35362 3.59423 5.41482 3.8388 5.44298 3.9216C5.48831 4.05487 5.65962 4.36617 5.7989 4.56834C5.89922 4.71395 5.83258 4.78295 5.61082 4.76305C5.27215 4.73267 4.8134 4.41799 4.51745 4.01304Z" fill="white"/>
|
||||
<path d="M10.3863 7.90088C8.60224 7.18693 7.97389 6.56721 7.97389 5.52157C7.97389 5.36769 7.97922 5.24179 7.98571 5.24179C7.99221 5.24179 8.06124 5.29257 8.1391 5.35465C8.50088 5.64305 8.906 5.76623 10.0275 5.92885C10.6875 6.02455 11.0589 6.10185 11.4015 6.21477C12.4904 6.57371 13.1641 7.30212 13.3248 8.29426C13.3715 8.58255 13.3441 9.12317 13.2684 9.4081C13.2087 9.63315 13.0263 10.0388 12.9779 10.0544C12.9645 10.0587 12.9514 10.0076 12.9479 9.93809C12.9296 9.56554 12.7402 9.20285 12.4221 8.93116C12.0604 8.62227 11.5745 8.37633 10.3863 7.90088Z" fill="white"/>
|
||||
<path d="M9.13385 8.19748C9.11149 8.06527 9.07272 7.89643 9.04769 7.82228L9.00217 7.68748L9.08672 7.7818C9.20374 7.91233 9.2962 8.07937 9.37457 8.30185C9.43438 8.47165 9.44111 8.52215 9.44066 8.79807C9.4402 9.06896 9.43273 9.12575 9.3775 9.27858C9.29042 9.51959 9.18233 9.69048 9.00097 9.87391C8.67507 10.2036 8.25607 10.3861 7.65143 10.4618C7.54633 10.4749 7.24 10.4971 6.97069 10.511C6.292 10.5461 5.84531 10.6186 5.44393 10.7587C5.38623 10.7788 5.3347 10.7911 5.32947 10.7859C5.31323 10.7698 5.58651 10.6079 5.81223 10.4998C6.1305 10.3474 6.44733 10.2643 7.15719 10.1468C7.50785 10.0887 7.86998 10.0183 7.96194 9.99029C8.83033 9.72566 9.27671 9.04276 9.13385 8.19748Z" fill="white"/>
|
||||
<path d="M9.95169 9.64109C9.71465 9.13463 9.66022 8.64564 9.79009 8.18961C9.80399 8.14088 9.82632 8.101 9.83976 8.101C9.85319 8.101 9.90913 8.13105 9.96404 8.16777C10.0733 8.24086 10.2924 8.36395 10.876 8.68023C11.6043 9.0749 12.0196 9.3805 12.302 9.72965C12.5493 10.0354 12.7023 10.3837 12.776 10.8084C12.8177 11.0489 12.7932 11.6277 12.7311 11.8699C12.5353 12.6337 12.0802 13.2336 11.4311 13.5837C11.336 13.635 11.2506 13.6771 11.2414 13.6773C11.2321 13.6775 11.2668 13.5899 11.3184 13.4827C11.5367 13.029 11.5616 12.5877 11.3965 12.0965C11.2954 11.7957 11.0893 11.4287 10.6732 10.8084C10.1893 10.0873 10.0707 9.89539 9.95169 9.64109Z" fill="white"/>
|
||||
<path d="M3.25046 12.3737C3.91252 11.8181 4.73629 11.4234 5.48666 11.3022C5.81005 11.25 6.34877 11.2707 6.64823 11.3469C7.12824 11.469 7.55763 11.7425 7.78094 12.0683C7.99918 12.3867 8.09281 12.6642 8.19029 13.2816C8.22875 13.5252 8.27057 13.7697 8.28323 13.8251C8.35644 14.1451 8.4989 14.4008 8.67544 14.5293C8.95583 14.7333 9.43865 14.7459 9.91362 14.5618C9.99423 14.5305 10.0642 14.5089 10.0691 14.5138C10.0864 14.5308 9.84719 14.6899 9.67847 14.7737C9.45143 14.8864 9.2709 14.93 9.03102 14.93C8.59601 14.93 8.23486 14.7101 7.9335 14.2616C7.87419 14.1733 7.7409 13.909 7.63729 13.6741C7.3191 12.9528 7.16199 12.7331 6.79255 12.4926C6.47104 12.2834 6.05641 12.2459 5.74449 12.3979C5.33475 12.5976 5.22043 13.118 5.51389 13.4478C5.63053 13.5789 5.84803 13.6919 6.02588 13.7139C6.35861 13.7551 6.64455 13.5035 6.64455 13.1696C6.64455 12.9528 6.56071 12.8291 6.34966 12.7344C6.0614 12.6051 5.75156 12.7562 5.75304 13.0254C5.75368 13.1402 5.80396 13.2122 5.91971 13.2643C5.99397 13.2977 5.99569 13.3003 5.93514 13.2878C5.67066 13.2333 5.6087 12.9164 5.82135 12.706C6.07667 12.4535 6.60461 12.5649 6.78591 12.9097C6.86208 13.0545 6.87092 13.3429 6.80451 13.517C6.6559 13.9068 6.22256 14.1117 5.78297 14.0002C5.48368 13.9242 5.36181 13.842 5.00097 13.4726C4.37395 12.8306 4.13053 12.7062 3.22657 12.566L3.05335 12.5391L3.25046 12.3737Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.308383 0.883984C2.40235 3.40996 3.84457 4.45213 4.00484 4.67231C4.13717 4.85412 4.08737 5.01757 3.86067 5.14567C3.7346 5.21689 3.47541 5.28905 3.34564 5.28905C3.19887 5.28905 3.14847 5.23278 3.14847 5.23278C3.06337 5.15255 3.01544 5.16658 2.5784 4.39555C1.97166 3.45981 1.46389 2.68357 1.45004 2.67057C1.41801 2.64052 1.41856 2.64153 2.51654 4.59413C2.69394 5.0011 2.55182 5.15049 2.55182 5.20845C2.55182 5.32636 2.51946 5.38834 2.37311 5.55059C2.12914 5.8211 2.02008 6.12505 1.94135 6.7541C1.8531 7.45926 1.60492 7.95737 0.917156 8.80989C0.514562 9.30893 0.448686 9.4004 0.3471 9.60153C0.219144 9.85482 0.183961 9.99669 0.169701 10.3165C0.154629 10.6547 0.183983 10.8732 0.287934 11.1965C0.378939 11.4796 0.473932 11.6665 0.716778 12.0403C0.926351 12.3629 1.04702 12.6027 1.04702 12.6965C1.04702 12.7711 1.06136 12.7712 1.38611 12.6983C2.16328 12.5239 2.79434 12.2171 3.14925 11.8411C3.36891 11.6084 3.42048 11.4799 3.42215 11.1611C3.42325 10.9525 3.41587 10.9088 3.35914 10.7888C3.2668 10.5935 3.09869 10.4311 2.72817 10.1794C2.2427 9.84953 2.03534 9.58398 1.97807 9.21878C1.93108 8.91913 1.98559 8.70771 2.25416 8.14825C2.53214 7.56916 2.60103 7.32239 2.64763 6.73869C2.67773 6.36158 2.71941 6.21286 2.82842 6.09348C2.94212 5.969 3.04447 5.92684 3.32584 5.88863C3.78457 5.82635 4.07667 5.70839 4.31677 5.48849C4.52505 5.29772 4.61221 5.11391 4.62558 4.8372L4.63574 4.62747L4.51934 4.49259C4.09783 4.00411 0.0261003 0.5 0.000160437 0.5C-0.00538105 0.5 0.133325 0.672804 0.308383 0.883984ZM1.28364 10.6992C1.37894 10.5314 1.3283 10.3158 1.16889 10.2104C1.01827 10.1109 0.78428 10.1578 0.78428 10.2875C0.78428 10.3271 0.806303 10.3559 0.855937 10.3813C0.939514 10.424 0.945581 10.4721 0.879823 10.5703C0.81323 10.6698 0.818604 10.7573 0.894991 10.8167C1.0181 10.9125 1.19237 10.8598 1.28364 10.6992Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.92523 5.99865C4.70988 6.06439 4.50054 6.29124 4.43574 6.5291C4.39621 6.67421 4.41864 6.92875 4.47785 7.00736C4.57351 7.13433 4.66602 7.16778 4.91651 7.16603C5.40693 7.16263 5.83327 6.95358 5.88284 6.69224C5.92347 6.47801 5.73622 6.18112 5.4783 6.05078C5.34521 5.98355 5.06217 5.95688 4.92523 5.99865ZM5.49853 6.44422C5.57416 6.33741 5.54107 6.22198 5.41245 6.14391C5.1675 5.99525 4.79708 6.11827 4.79708 6.34826C4.79708 6.46274 4.99025 6.58765 5.16731 6.58765C5.28516 6.58765 5.44644 6.5178 5.49853 6.44422Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 7.9 KiB |
@@ -1,3 +1,4 @@
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { ReactNode, useCallback, useContext } from 'react'
|
||||
import styled, { ThemeContext } from 'styled-components/macro'
|
||||
|
||||
@@ -7,9 +7,10 @@ import Card from 'components/Card'
|
||||
import { AutoColumn } from 'components/Column'
|
||||
import { RowBetween } from 'components/Row'
|
||||
import { useFeeTierDistribution } from 'hooks/useFeeTierDistribution'
|
||||
import { PoolState, usePools } from 'hooks/usePools'
|
||||
import usePrevious from 'hooks/usePrevious'
|
||||
import { DynamicSection } from 'pages/AddLiquidity/styled'
|
||||
import React, { useCallback, useEffect, useRef, useState } from 'react'
|
||||
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react'
|
||||
import ReactGA from 'react-ga'
|
||||
import { Box } from 'rebass'
|
||||
import styled, { keyframes } from 'styled-components/macro'
|
||||
@@ -41,6 +42,7 @@ const ResponsiveText = styled(TYPE.label)`
|
||||
const FocusedOutlineCard = styled(Card)<{ pulsing: boolean }>`
|
||||
border: 1px solid ${({ theme }) => theme.bg2};
|
||||
animation: ${({ pulsing, theme }) => pulsing && pulse(theme.primary1)} 0.6s linear;
|
||||
align-self: center;
|
||||
`
|
||||
|
||||
const FeeAmountLabel = {
|
||||
@@ -58,11 +60,25 @@ const FeeAmountLabel = {
|
||||
},
|
||||
}
|
||||
|
||||
const FeeTierPercentageBadge = ({ percentage }: { percentage: number | undefined }) => {
|
||||
function FeeTierPercentageBadge({
|
||||
feeAmount,
|
||||
distributions,
|
||||
poolState,
|
||||
}: {
|
||||
feeAmount: FeeAmount
|
||||
distributions: ReturnType<typeof useFeeTierDistribution>['distributions']
|
||||
poolState: PoolState
|
||||
}) {
|
||||
return (
|
||||
<Badge>
|
||||
<TYPE.label fontSize={12}>
|
||||
{percentage !== undefined ? <Trans>{percentage?.toFixed(0)}% select</Trans> : <Trans>Not created</Trans>}
|
||||
{!distributions || poolState === PoolState.NOT_EXISTS || poolState === PoolState.INVALID ? (
|
||||
<Trans>Not created</Trans>
|
||||
) : distributions[feeAmount] !== undefined ? (
|
||||
<Trans>{distributions[feeAmount]?.toFixed(0)}% select</Trans>
|
||||
) : (
|
||||
<Trans>No data</Trans>
|
||||
)}
|
||||
</TYPE.label>
|
||||
</Badge>
|
||||
)
|
||||
@@ -83,6 +99,33 @@ export default function FeeSelector({
|
||||
}) {
|
||||
const { isLoading, isError, largestUsageFeeTier, distributions } = useFeeTierDistribution(currencyA, currencyB)
|
||||
|
||||
// get pool data on-chain for latest states
|
||||
const pools = usePools([
|
||||
[currencyA, currencyB, FeeAmount.LOW],
|
||||
[currencyA, currencyB, FeeAmount.MEDIUM],
|
||||
[currencyA, currencyB, FeeAmount.HIGH],
|
||||
])
|
||||
|
||||
const poolsByFeeTier = useMemo(
|
||||
() =>
|
||||
pools.reduce(
|
||||
(acc, [curPoolState, curPool]) => {
|
||||
acc = {
|
||||
...acc,
|
||||
...{ [curPool?.fee as FeeAmount]: curPoolState },
|
||||
}
|
||||
return acc
|
||||
},
|
||||
{
|
||||
// default all states to NOT_EXISTS
|
||||
[FeeAmount.LOW]: PoolState.NOT_EXISTS,
|
||||
[FeeAmount.MEDIUM]: PoolState.NOT_EXISTS,
|
||||
[FeeAmount.HIGH]: PoolState.NOT_EXISTS,
|
||||
}
|
||||
),
|
||||
[pools]
|
||||
)
|
||||
|
||||
const [showOptions, setShowOptions] = useState(false)
|
||||
const [pulsing, setPulsing] = useState(false)
|
||||
|
||||
@@ -153,7 +196,13 @@ export default function FeeSelector({
|
||||
<Trans>{FeeAmountLabel[feeAmount].label}% fee tier</Trans>
|
||||
</TYPE.label>
|
||||
<Box style={{ width: 'fit-content', marginTop: '8px' }} className="selected-fee-percentage">
|
||||
{distributions && feeAmount && <FeeTierPercentageBadge percentage={distributions[feeAmount]} />}
|
||||
{distributions && (
|
||||
<FeeTierPercentageBadge
|
||||
distributions={distributions}
|
||||
feeAmount={feeAmount}
|
||||
poolState={poolsByFeeTier[feeAmount]}
|
||||
/>
|
||||
)}
|
||||
</Box>
|
||||
</>
|
||||
)}
|
||||
@@ -182,7 +231,13 @@ export default function FeeSelector({
|
||||
</TYPE.main>
|
||||
</AutoColumn>
|
||||
|
||||
{distributions && <FeeTierPercentageBadge percentage={distributions[FeeAmount.LOW]} />}
|
||||
{distributions && (
|
||||
<FeeTierPercentageBadge
|
||||
distributions={distributions}
|
||||
feeAmount={FeeAmount.LOW}
|
||||
poolState={poolsByFeeTier[FeeAmount.LOW]}
|
||||
/>
|
||||
)}
|
||||
</AutoColumn>
|
||||
</ButtonRadioChecked>
|
||||
<ButtonRadioChecked
|
||||
@@ -200,7 +255,13 @@ export default function FeeSelector({
|
||||
</TYPE.main>
|
||||
</AutoColumn>
|
||||
|
||||
{distributions && <FeeTierPercentageBadge percentage={distributions[FeeAmount.MEDIUM]} />}
|
||||
{distributions && (
|
||||
<FeeTierPercentageBadge
|
||||
distributions={distributions}
|
||||
feeAmount={FeeAmount.MEDIUM}
|
||||
poolState={poolsByFeeTier[FeeAmount.MEDIUM]}
|
||||
/>
|
||||
)}
|
||||
</AutoColumn>
|
||||
</ButtonRadioChecked>
|
||||
<ButtonRadioChecked
|
||||
@@ -218,7 +279,13 @@ export default function FeeSelector({
|
||||
</TYPE.main>
|
||||
</AutoColumn>
|
||||
|
||||
{distributions && <FeeTierPercentageBadge percentage={distributions[FeeAmount.HIGH]} />}
|
||||
{distributions && (
|
||||
<FeeTierPercentageBadge
|
||||
distributions={distributions}
|
||||
feeAmount={FeeAmount.HIGH}
|
||||
poolState={poolsByFeeTier[FeeAmount.HIGH]}
|
||||
/>
|
||||
)}
|
||||
</AutoColumn>
|
||||
</ButtonRadioChecked>
|
||||
</RowBetween>
|
||||
|
||||
@@ -11,8 +11,8 @@ import { useOnClickOutside } from 'hooks/useOnClickOutside'
|
||||
import { useActiveWeb3React } from 'hooks/web3'
|
||||
import { useCallback, useRef } from 'react'
|
||||
import { ArrowDownCircle, ChevronDown } from 'react-feather'
|
||||
import { ApplicationModal } from 'state/application/actions'
|
||||
import { useModalOpen, useToggleModal } from 'state/application/hooks'
|
||||
import { ApplicationModal } from 'state/application/reducer'
|
||||
import { useAppSelector } from 'state/hooks'
|
||||
import styled from 'styled-components/macro'
|
||||
import { ExternalLink, MEDIA_WIDTHS } from 'theme'
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import useScrollPosition from '@react-hook/window-scroll'
|
||||
import { CHAIN_INFO, SupportedChainId } from 'constants/chains'
|
||||
import useTheme from 'hooks/useTheme'
|
||||
import { darken } from 'polished'
|
||||
import { useState } from 'react'
|
||||
import { NavLink } from 'react-router-dom'
|
||||
@@ -13,7 +14,6 @@ import { useETHBalances } from 'state/wallet/hooks'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
import { ReactComponent as Logo } from '../../assets/svg/logo.svg'
|
||||
import { ReactComponent as LogoDark } from '../../assets/svg/logo_white.svg'
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
import { ExternalLink, TYPE } from '../../theme'
|
||||
import ClaimModal from '../claim/ClaimModal'
|
||||
@@ -248,6 +248,7 @@ export default function Header() {
|
||||
|
||||
const userEthBalance = useETHBalances(account ? [account] : [])?.[account ?? '']
|
||||
const [darkMode] = useDarkModeManager()
|
||||
const { white, black } = useTheme()
|
||||
|
||||
const toggleClaimModal = useToggleSelfClaimModal()
|
||||
|
||||
@@ -269,11 +270,7 @@ export default function Header() {
|
||||
</Modal>
|
||||
<Title href=".">
|
||||
<UniIcon>
|
||||
{darkMode ? (
|
||||
<LogoDark width="24px" height="100%" title="logo" />
|
||||
) : (
|
||||
<Logo width="24px" height="100%" title="logo" />
|
||||
)}
|
||||
<Logo fill={darkMode ? white : black} width="24px" height="100%" title="logo" />
|
||||
</UniIcon>
|
||||
</Title>
|
||||
<HeaderLinks>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import Davatar from '@davatar/react'
|
||||
import Davatar, { Image } from '@davatar/react'
|
||||
import { useMemo } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
@@ -13,10 +14,19 @@ const StyledIdenticonContainer = styled.div`
|
||||
export default function Identicon() {
|
||||
const { account, library } = useActiveWeb3React()
|
||||
|
||||
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/30451
|
||||
// restrict usage of Davatar until it stops sending 3p requests
|
||||
// see https://github.com/metaphor-xyz/davatar-helpers/issues/18
|
||||
const supportsENS = useMemo(() => {
|
||||
return ([1, 3, 4, 5] as Array<number | undefined>).includes(library?.network?.chainId)
|
||||
}, [library])
|
||||
|
||||
return (
|
||||
<StyledIdenticonContainer>
|
||||
{account && library?.provider && <Davatar address={account} size={16} provider={library.provider} />}
|
||||
{account && supportsENS ? (
|
||||
<Davatar address={account} size={16} provider={library} />
|
||||
) : (
|
||||
<Image address={account} size={16} />
|
||||
)}
|
||||
</StyledIdenticonContainer>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,11 +1,24 @@
|
||||
import { t } from '@lingui/macro'
|
||||
import { Trans } from '@lingui/macro'
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { PrivacyPolicyModal } from 'components/PrivacyPolicy'
|
||||
import { CHAIN_INFO, L2_CHAIN_IDS, SupportedChainId } from 'constants/chains'
|
||||
import { LOCALE_LABEL, SUPPORTED_LOCALES, SupportedLocale } from 'constants/locales'
|
||||
import { useActiveLocale } from 'hooks/useActiveLocale'
|
||||
import { useLocationLinkProps } from 'hooks/useLocationLinkProps'
|
||||
import React, { useEffect, useRef, useState } from 'react'
|
||||
import { BookOpen, Check, ChevronLeft, Code, Globe, Info, MessageCircle, Moon, PieChart, Sun } from 'react-feather'
|
||||
import {
|
||||
BookOpen,
|
||||
Check,
|
||||
ChevronLeft,
|
||||
Code,
|
||||
FileText,
|
||||
Globe,
|
||||
Info,
|
||||
MessageCircle,
|
||||
Moon,
|
||||
PieChart,
|
||||
Sun,
|
||||
} from 'react-feather'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { useDarkModeManager } from 'state/user/hooks'
|
||||
import styled, { css } from 'styled-components/macro'
|
||||
@@ -13,8 +26,8 @@ import styled, { css } from 'styled-components/macro'
|
||||
import { ReactComponent as MenuIcon } from '../../assets/images/menu.svg'
|
||||
import { useOnClickOutside } from '../../hooks/useOnClickOutside'
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
import { ApplicationModal } from '../../state/application/actions'
|
||||
import { useModalOpen, useToggleModal } from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import { ExternalLink } from '../../theme'
|
||||
import { ButtonPrimary } from '../Button'
|
||||
|
||||
@@ -201,8 +214,9 @@ export default function Menu() {
|
||||
|
||||
const node = useRef<HTMLDivElement>()
|
||||
const open = useModalOpen(ApplicationModal.MENU)
|
||||
const toggle = useToggleModal(ApplicationModal.MENU)
|
||||
useOnClickOutside(node, open ? toggle : undefined)
|
||||
const toggleMenu = useToggleModal(ApplicationModal.MENU)
|
||||
useOnClickOutside(node, open ? toggleMenu : undefined)
|
||||
const togglePrivacyPolicy = useToggleModal(ApplicationModal.PRIVACY_POLICY)
|
||||
const openClaimModal = useToggleModal(ApplicationModal.ADDRESS_CLAIM)
|
||||
const showUNIClaimOption = Boolean(!!account && !!chainId && !L2_CHAIN_IDS.includes(chainId))
|
||||
const { infoLink } = CHAIN_INFO[chainId ? chainId : SupportedChainId.MAINNET]
|
||||
@@ -216,77 +230,86 @@ export default function Menu() {
|
||||
}, [open])
|
||||
|
||||
return (
|
||||
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/30451
|
||||
<StyledMenu ref={node as any}>
|
||||
<StyledMenuButton onClick={toggle} aria-label={t`Menu`}>
|
||||
<StyledMenuIcon />
|
||||
</StyledMenuButton>
|
||||
<>
|
||||
{/* // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/30451 */}
|
||||
<StyledMenu ref={node as any}>
|
||||
<StyledMenuButton onClick={toggleMenu} aria-label={t`Menu`}>
|
||||
<StyledMenuIcon />
|
||||
</StyledMenuButton>
|
||||
|
||||
{open &&
|
||||
(() => {
|
||||
switch (menu) {
|
||||
case 'lang':
|
||||
return <LanguageMenu close={() => setMenu('main')} />
|
||||
case 'main':
|
||||
default:
|
||||
return (
|
||||
<MenuFlyout>
|
||||
<MenuItem href="https://uniswap.org/">
|
||||
<div>
|
||||
<Trans>About</Trans>
|
||||
</div>
|
||||
<Info opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href="https://docs.uniswap.org/">
|
||||
<div>
|
||||
<Trans>Docs</Trans>
|
||||
</div>
|
||||
<BookOpen opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href={CODE_LINK}>
|
||||
<div>
|
||||
<Trans>Code</Trans>
|
||||
</div>
|
||||
<Code opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href="https://discord.gg/FCfyBSbCU5">
|
||||
<div>
|
||||
<Trans>Discord</Trans>
|
||||
</div>
|
||||
<MessageCircle opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href={infoLink}>
|
||||
<div>
|
||||
<Trans>Analytics</Trans>
|
||||
</div>
|
||||
<PieChart opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<ToggleMenuItem onClick={() => setMenu('lang')}>
|
||||
<div>
|
||||
<Trans>Language</Trans>
|
||||
</div>
|
||||
<Globe opacity={0.6} size={16} />
|
||||
</ToggleMenuItem>
|
||||
<ToggleMenuItem onClick={() => toggleDarkMode()}>
|
||||
<div>{darkMode ? <Trans>Light Theme</Trans> : <Trans>Dark Theme</Trans>}</div>
|
||||
{darkMode ? <Moon opacity={0.6} size={16} /> : <Sun opacity={0.6} size={16} />}
|
||||
</ToggleMenuItem>
|
||||
{showUNIClaimOption && (
|
||||
<UNIbutton
|
||||
onClick={openClaimModal}
|
||||
padding="8px 16px"
|
||||
width="100%"
|
||||
$borderRadius="12px"
|
||||
mt="0.5rem"
|
||||
>
|
||||
<Trans>Claim UNI</Trans>
|
||||
</UNIbutton>
|
||||
)}
|
||||
</MenuFlyout>
|
||||
)
|
||||
}
|
||||
})()}
|
||||
</StyledMenu>
|
||||
{open &&
|
||||
(() => {
|
||||
switch (menu) {
|
||||
case 'lang':
|
||||
return <LanguageMenu close={() => setMenu('main')} />
|
||||
case 'main':
|
||||
default:
|
||||
return (
|
||||
<MenuFlyout>
|
||||
<MenuItem href="https://uniswap.org/">
|
||||
<div>
|
||||
<Trans>About</Trans>
|
||||
</div>
|
||||
<Info opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href="https://docs.uniswap.org/">
|
||||
<div>
|
||||
<Trans>Docs</Trans>
|
||||
</div>
|
||||
<BookOpen opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href={CODE_LINK}>
|
||||
<div>
|
||||
<Trans>Code</Trans>
|
||||
</div>
|
||||
<Code opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href="https://discord.gg/FCfyBSbCU5">
|
||||
<div>
|
||||
<Trans>Discord</Trans>
|
||||
</div>
|
||||
<MessageCircle opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<MenuItem href={infoLink}>
|
||||
<div>
|
||||
<Trans>Analytics</Trans>
|
||||
</div>
|
||||
<PieChart opacity={0.6} size={16} />
|
||||
</MenuItem>
|
||||
<ToggleMenuItem onClick={() => setMenu('lang')}>
|
||||
<div>
|
||||
<Trans>Language</Trans>
|
||||
</div>
|
||||
<Globe opacity={0.6} size={16} />
|
||||
</ToggleMenuItem>
|
||||
<ToggleMenuItem onClick={() => toggleDarkMode()}>
|
||||
<div>{darkMode ? <Trans>Light Theme</Trans> : <Trans>Dark Theme</Trans>}</div>
|
||||
{darkMode ? <Moon opacity={0.6} size={16} /> : <Sun opacity={0.6} size={16} />}
|
||||
</ToggleMenuItem>
|
||||
<ToggleMenuItem onClick={() => togglePrivacyPolicy()}>
|
||||
<div>
|
||||
<Trans>Legal & Privacy</Trans>
|
||||
</div>
|
||||
<FileText opacity={0.6} size={16} />
|
||||
</ToggleMenuItem>
|
||||
{showUNIClaimOption && (
|
||||
<UNIbutton
|
||||
onClick={openClaimModal}
|
||||
padding="8px 16px"
|
||||
width="100%"
|
||||
$borderRadius="12px"
|
||||
mt="0.5rem"
|
||||
>
|
||||
<Trans>Claim UNI</Trans>
|
||||
</UNIbutton>
|
||||
)}
|
||||
</MenuFlyout>
|
||||
)
|
||||
}
|
||||
})()}
|
||||
</StyledMenu>
|
||||
<PrivacyPolicyModal />
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -8,13 +8,13 @@ import styled, { keyframes } from 'styled-components/macro'
|
||||
import tokenLogo from '../../assets/images/token-logo.png'
|
||||
import { ButtonPrimary } from '../../components/Button'
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
import { ApplicationModal } from '../../state/application/actions'
|
||||
import {
|
||||
useModalOpen,
|
||||
useShowClaimPopup,
|
||||
useToggleSelfClaimModal,
|
||||
useToggleShowClaimPopup,
|
||||
} from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import { useUserHasAvailableClaim, useUserUnclaimedAmount } from '../../state/claim/hooks'
|
||||
import { TYPE } from '../../theme'
|
||||
import { AutoColumn } from '../Column'
|
||||
|
||||
@@ -4,8 +4,8 @@ import { animated } from 'react-spring'
|
||||
import { useSpring } from 'react-spring/web'
|
||||
import styled, { ThemeContext } from 'styled-components/macro'
|
||||
|
||||
import { PopupContent } from '../../state/application/actions'
|
||||
import { useRemovePopup } from '../../state/application/hooks'
|
||||
import { PopupContent } from '../../state/application/reducer'
|
||||
import TransactionPopup from './TransactionPopup'
|
||||
|
||||
const StyledClose = styled(X)`
|
||||
|
||||
173
src/components/PrivacyPolicy/index.tsx
Normal file
173
src/components/PrivacyPolicy/index.tsx
Normal file
@@ -0,0 +1,173 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import Card, { DarkGreyCard } from 'components/Card'
|
||||
import Row, { AutoRow, RowBetween } from 'components/Row'
|
||||
import { useEffect, useRef } from 'react'
|
||||
import { ArrowDown, Info, X } from 'react-feather'
|
||||
import ReactGA from 'react-ga'
|
||||
import styled from 'styled-components/macro'
|
||||
import { ExternalLink, TYPE } from 'theme'
|
||||
import { isMobile } from 'utils/userAgent'
|
||||
|
||||
import { useModalOpen, useTogglePrivacyPolicy } from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import { AutoColumn } from '../Column'
|
||||
import Modal from '../Modal'
|
||||
|
||||
const Wrapper = styled.div`
|
||||
max-height: 70vh;
|
||||
overflow: auto;
|
||||
padding: 0 1rem;
|
||||
`
|
||||
|
||||
const StyledExternalCard = styled(Card)`
|
||||
background-color: ${({ theme }) => theme.primary5};
|
||||
padding: 0.5rem;
|
||||
width: 100%;
|
||||
|
||||
:hover,
|
||||
:focus,
|
||||
:active {
|
||||
background-color: ${({ theme }) => theme.primary4};
|
||||
}
|
||||
`
|
||||
|
||||
const HoverText = styled.div`
|
||||
text-decoration: none;
|
||||
color: ${({ theme }) => theme.text1};
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
`
|
||||
|
||||
const StyledLinkOut = styled(ArrowDown)`
|
||||
transform: rotate(230deg);
|
||||
`
|
||||
|
||||
const EXTERNAL_APIS = [
|
||||
{
|
||||
name: 'Auto Router',
|
||||
description: <Trans>The app fetches the optimal trade route from a Uniswap Labs server.</Trans>,
|
||||
},
|
||||
{
|
||||
name: 'Infura',
|
||||
description: <Trans>The app fetches on-chain data and constructs contract calls with an Infura API.</Trans>,
|
||||
},
|
||||
{
|
||||
name: 'TRM Labs',
|
||||
description: (
|
||||
<Trans>
|
||||
The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons.
|
||||
</Trans>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: 'Google Analytics',
|
||||
description: <Trans>The app logs anonymized usage statistics in order to improve over time.</Trans>,
|
||||
},
|
||||
{
|
||||
name: 'The Graph',
|
||||
description: <Trans>The app fetches blockchain data from The Graph’s hosted service.</Trans>,
|
||||
},
|
||||
]
|
||||
|
||||
export function PrivacyPolicyModal() {
|
||||
const node = useRef<HTMLDivElement>()
|
||||
const open = useModalOpen(ApplicationModal.PRIVACY_POLICY)
|
||||
const toggle = useTogglePrivacyPolicy()
|
||||
|
||||
useEffect(() => {
|
||||
if (!open) return
|
||||
|
||||
ReactGA.event({
|
||||
category: 'Modal',
|
||||
action: 'Show Legal',
|
||||
})
|
||||
}, [open])
|
||||
|
||||
return (
|
||||
<Modal isOpen={open} onDismiss={() => toggle()}>
|
||||
<AutoColumn gap="12px" ref={node as any}>
|
||||
<RowBetween padding="1rem 1rem 0.5rem 1rem">
|
||||
<TYPE.mediumHeader>
|
||||
<Trans>Legal & Privacy</Trans>
|
||||
</TYPE.mediumHeader>
|
||||
<HoverText onClick={() => toggle()}>
|
||||
<X size={24} />
|
||||
</HoverText>
|
||||
</RowBetween>
|
||||
<PrivacyPolicy />
|
||||
</AutoColumn>
|
||||
</Modal>
|
||||
)
|
||||
}
|
||||
|
||||
export function PrivacyPolicy() {
|
||||
return (
|
||||
<Wrapper
|
||||
draggable="true"
|
||||
onTouchMove={(e) => {
|
||||
// prevent modal gesture handler from dismissing modal when content is scrolling
|
||||
if (isMobile) {
|
||||
e.stopPropagation()
|
||||
}
|
||||
}}
|
||||
>
|
||||
<AutoColumn gap="16px">
|
||||
<AutoColumn gap="8px" style={{ width: '100%' }}>
|
||||
<StyledExternalCard>
|
||||
<ExternalLink href={'https://uniswap.org/terms-of-service'}>
|
||||
<RowBetween>
|
||||
<AutoRow gap="4px">
|
||||
<Info size={20} />
|
||||
<TYPE.main fontSize={14} color={'primaryText1'}>
|
||||
<Trans>Uniswap Labs' Terms of Service</Trans>
|
||||
</TYPE.main>
|
||||
</AutoRow>
|
||||
<StyledLinkOut size={20} />
|
||||
</RowBetween>
|
||||
</ExternalLink>
|
||||
</StyledExternalCard>
|
||||
<StyledExternalCard>
|
||||
<ExternalLink href={'https://uniswap.org/disclaimer/'}>
|
||||
<RowBetween>
|
||||
<AutoRow gap="4px">
|
||||
<Info size={20} />
|
||||
<TYPE.main fontSize={14} color={'primaryText1'}>
|
||||
<Trans>Protocol Disclaimer</Trans>
|
||||
</TYPE.main>
|
||||
</AutoRow>
|
||||
<StyledLinkOut size={20} />
|
||||
</RowBetween>
|
||||
</ExternalLink>
|
||||
</StyledExternalCard>
|
||||
</AutoColumn>
|
||||
<TYPE.main fontSize={14}>
|
||||
<Trans>This app uses the following third-party APIs:</Trans>
|
||||
</TYPE.main>
|
||||
<AutoColumn gap="12px">
|
||||
{EXTERNAL_APIS.map(({ name, description }, i) => (
|
||||
<DarkGreyCard key={i}>
|
||||
<AutoColumn gap="8px">
|
||||
<AutoRow gap="4px">
|
||||
<Info size={18} />
|
||||
<TYPE.main fontSize={14} color={'text1'}>
|
||||
{name}
|
||||
</TYPE.main>
|
||||
</AutoRow>
|
||||
<TYPE.main fontSize={14}>{description}</TYPE.main>
|
||||
</AutoColumn>
|
||||
</DarkGreyCard>
|
||||
))}
|
||||
<Row justify="center" marginBottom="1rem">
|
||||
<ExternalLink href="https://help.uniswap.org/en/articles/5675203-terms-of-service-faq">
|
||||
<Trans>Learn more</Trans>
|
||||
</ExternalLink>
|
||||
</Row>
|
||||
</AutoColumn>
|
||||
</AutoColumn>
|
||||
</Wrapper>
|
||||
)
|
||||
}
|
||||
@@ -9,6 +9,8 @@ import { Box } from 'rebass'
|
||||
import styled from 'styled-components/macro'
|
||||
import { TYPE } from 'theme'
|
||||
|
||||
import { ReactComponent as DotLine } from '../../assets/svg/dot_line.svg'
|
||||
|
||||
export interface RoutingDiagramEntry {
|
||||
percent: Percent
|
||||
path: [Currency, Currency, FeeAmount][]
|
||||
@@ -40,13 +42,18 @@ const PoolBadge = styled(Badge)`
|
||||
`
|
||||
|
||||
const DottedLine = styled.div`
|
||||
border-color: ${({ theme }) => theme.bg4};
|
||||
border-top-style: dotted;
|
||||
border-width: 4px;
|
||||
height: 0px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: absolute;
|
||||
width: calc(100%);
|
||||
z-index: 1;
|
||||
opacity: 0.5;
|
||||
`
|
||||
|
||||
const DotColor = styled(DotLine)`
|
||||
path {
|
||||
stroke: ${({ theme }) => theme.bg4};
|
||||
}
|
||||
`
|
||||
|
||||
const OpaqueBadge = styled(Badge)`
|
||||
@@ -82,7 +89,9 @@ export default function RoutingDiagram({
|
||||
function Route({ percent, path }: { percent: RoutingDiagramEntry['percent']; path: RoutingDiagramEntry['path'] }) {
|
||||
return (
|
||||
<RouteRow>
|
||||
<DottedLine />
|
||||
<DottedLine>
|
||||
<DotColor />
|
||||
</DottedLine>
|
||||
<OpaqueBadge>
|
||||
<TYPE.small fontSize={12} style={{ wordBreak: 'normal' }}>
|
||||
{percent.toSignificant(2)}%
|
||||
|
||||
@@ -13,10 +13,16 @@ exports[`renders multi route 1`] = `
|
||||
class="sc-bdnxRM Row-sc-nrd8cx-0 RoutingDiagram__RouteRow-sc-o1ook0-2 lmTMKd itvFNV fzMiot"
|
||||
>
|
||||
<div
|
||||
class="RoutingDiagram__DottedLine-sc-o1ook0-4 gwivhA"
|
||||
/>
|
||||
class="RoutingDiagram__DottedLine-sc-o1ook0-4 kkXINS"
|
||||
>
|
||||
<svg
|
||||
class="RoutingDiagram__DotColor-sc-o1ook0-5 kgYqrO"
|
||||
>
|
||||
dot_line.svg
|
||||
</svg>
|
||||
</div>
|
||||
<div
|
||||
class="Badge-sc-1mhw5si-0 RoutingDiagram__OpaqueBadge-sc-o1ook0-5 gayll cvyxdH"
|
||||
class="Badge-sc-1mhw5si-0 RoutingDiagram__OpaqueBadge-sc-o1ook0-6 gayll khxosM"
|
||||
>
|
||||
<div
|
||||
class="theme__TextWrapper-sc-18nh1jk-0 cWOfab css-15li2d9"
|
||||
@@ -56,10 +62,16 @@ exports[`renders multi route 1`] = `
|
||||
class="sc-bdnxRM Row-sc-nrd8cx-0 RoutingDiagram__RouteRow-sc-o1ook0-2 lmTMKd itvFNV fzMiot"
|
||||
>
|
||||
<div
|
||||
class="RoutingDiagram__DottedLine-sc-o1ook0-4 gwivhA"
|
||||
/>
|
||||
class="RoutingDiagram__DottedLine-sc-o1ook0-4 kkXINS"
|
||||
>
|
||||
<svg
|
||||
class="RoutingDiagram__DotColor-sc-o1ook0-5 kgYqrO"
|
||||
>
|
||||
dot_line.svg
|
||||
</svg>
|
||||
</div>
|
||||
<div
|
||||
class="Badge-sc-1mhw5si-0 RoutingDiagram__OpaqueBadge-sc-o1ook0-5 gayll cvyxdH"
|
||||
class="Badge-sc-1mhw5si-0 RoutingDiagram__OpaqueBadge-sc-o1ook0-6 gayll khxosM"
|
||||
>
|
||||
<div
|
||||
class="theme__TextWrapper-sc-18nh1jk-0 cWOfab css-15li2d9"
|
||||
@@ -122,10 +134,16 @@ exports[`renders single route 1`] = `
|
||||
class="sc-bdnxRM Row-sc-nrd8cx-0 RoutingDiagram__RouteRow-sc-o1ook0-2 lmTMKd itvFNV fzMiot"
|
||||
>
|
||||
<div
|
||||
class="RoutingDiagram__DottedLine-sc-o1ook0-4 gwivhA"
|
||||
/>
|
||||
class="RoutingDiagram__DottedLine-sc-o1ook0-4 kkXINS"
|
||||
>
|
||||
<svg
|
||||
class="RoutingDiagram__DotColor-sc-o1ook0-5 kgYqrO"
|
||||
>
|
||||
dot_line.svg
|
||||
</svg>
|
||||
</div>
|
||||
<div
|
||||
class="Badge-sc-1mhw5si-0 RoutingDiagram__OpaqueBadge-sc-o1ook0-5 gayll cvyxdH"
|
||||
class="Badge-sc-1mhw5si-0 RoutingDiagram__OpaqueBadge-sc-o1ook0-6 gayll khxosM"
|
||||
>
|
||||
<div
|
||||
class="theme__TextWrapper-sc-18nh1jk-0 cWOfab css-15li2d9"
|
||||
|
||||
71
src/components/SearchModal/BlockedToken.tsx
Normal file
71
src/components/SearchModal/BlockedToken.tsx
Normal file
@@ -0,0 +1,71 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Token } from '@uniswap/sdk-core'
|
||||
import { ButtonPrimary } from 'components/Button'
|
||||
import { AlertCircle, ArrowLeft } from 'react-feather'
|
||||
import styled from 'styled-components/macro'
|
||||
import { CloseIcon, TYPE } from 'theme'
|
||||
|
||||
import TokenImportCard from './TokenImportCard'
|
||||
|
||||
const Wrapper = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1 1 auto;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
`
|
||||
const Button = styled(ButtonPrimary)`
|
||||
margin-top: 1em;
|
||||
padding: 10px 1em;
|
||||
`
|
||||
const Content = styled.div`
|
||||
padding: 1em;
|
||||
`
|
||||
const Copy = styled(TYPE.body)`
|
||||
text-align: center;
|
||||
margin: 0 2em 1em !important;
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
`
|
||||
const Header = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
gap: 14px;
|
||||
justify-content: space-between;
|
||||
padding: 20px;
|
||||
width: 100%;
|
||||
`
|
||||
const Icon = styled(AlertCircle)`
|
||||
stroke: ${({ theme }) => theme.text2};
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
`
|
||||
interface BlockedTokenProps {
|
||||
onBack: (() => void) | undefined
|
||||
onDismiss: (() => void) | undefined
|
||||
blockedTokens: Token[]
|
||||
}
|
||||
|
||||
const BlockedToken = ({ onBack, onDismiss, blockedTokens }: BlockedTokenProps) => (
|
||||
<Wrapper>
|
||||
<Header>
|
||||
{onBack ? <ArrowLeft style={{ cursor: 'pointer' }} onClick={onBack} /> : <div />}
|
||||
<TYPE.mediumHeader>
|
||||
<Trans>Token not supported</Trans>
|
||||
</TYPE.mediumHeader>
|
||||
{onDismiss ? <CloseIcon onClick={onDismiss} /> : <div />}
|
||||
</Header>
|
||||
<Icon />
|
||||
<Content>
|
||||
<Copy>
|
||||
<Trans>This token is not supported in the Uniswap Labs app</Trans>
|
||||
</Copy>
|
||||
<TokenImportCard token={blockedTokens[0]} />
|
||||
<Button disabled>
|
||||
<Trans>Import</Trans>
|
||||
</Button>
|
||||
</Content>
|
||||
</Wrapper>
|
||||
)
|
||||
export default BlockedToken
|
||||
@@ -5,6 +5,7 @@ import CurrencyLogo from 'components/CurrencyLogo'
|
||||
import QuestionHelper from 'components/QuestionHelper'
|
||||
import { AutoRow } from 'components/Row'
|
||||
import { COMMON_BASES } from 'constants/routing'
|
||||
import { useTokenInfoFromActiveList } from 'hooks/useTokenInfoFromActiveList'
|
||||
import { Text } from 'rebass'
|
||||
import styled from 'styled-components/macro'
|
||||
import { currencyId } from 'utils/currencyId'
|
||||
@@ -60,7 +61,7 @@ export default function CommonBases({
|
||||
disable={isSelected}
|
||||
key={currencyId(currency)}
|
||||
>
|
||||
<CurrencyLogo currency={currency} style={{ marginRight: 8 }} />
|
||||
<CurrencyLogoFromList currency={currency} />
|
||||
<Text fontWeight={500} fontSize={16}>
|
||||
{currency.symbol}
|
||||
</Text>
|
||||
@@ -71,3 +72,10 @@ export default function CommonBases({
|
||||
</MobileWrapper>
|
||||
) : null
|
||||
}
|
||||
|
||||
/** helper component to retrieve a base currency from the active token lists */
|
||||
function CurrencyLogoFromList({ currency }: { currency: Currency }) {
|
||||
const token = useTokenInfoFromActiveList(currency)
|
||||
|
||||
return <CurrencyLogo currency={token} style={{ marginRight: 8 }} />
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Currency, Token } from '@uniswap/sdk-core'
|
||||
import useDebounce from 'hooks/useDebounce'
|
||||
|
||||
@@ -66,12 +66,19 @@ export default function CurrencySearchModal({
|
||||
const [importList, setImportList] = useState<TokenList | undefined>()
|
||||
const [listURL, setListUrl] = useState<string | undefined>()
|
||||
|
||||
const showImportView = useCallback(() => setModalView(CurrencyModalView.importToken), [setModalView])
|
||||
const showManageView = useCallback(() => setModalView(CurrencyModalView.manage), [setModalView])
|
||||
const handleBackImport = useCallback(
|
||||
() => setModalView(prevView && prevView !== CurrencyModalView.importToken ? prevView : CurrencyModalView.search),
|
||||
[setModalView, prevView]
|
||||
)
|
||||
|
||||
// change min height if not searching
|
||||
const minHeight = modalView === CurrencyModalView.importToken || modalView === CurrencyModalView.importList ? 40 : 80
|
||||
|
||||
return (
|
||||
<Modal isOpen={isOpen} onDismiss={onDismiss} maxHeight={80} minHeight={minHeight}>
|
||||
{modalView === CurrencyModalView.search ? (
|
||||
let content = null
|
||||
switch (modalView) {
|
||||
case CurrencyModalView.search:
|
||||
content = (
|
||||
<CurrencySearch
|
||||
isOpen={isOpen}
|
||||
onDismiss={onDismiss}
|
||||
@@ -81,23 +88,32 @@ export default function CurrencySearchModal({
|
||||
showCommonBases={showCommonBases}
|
||||
showCurrencyAmount={showCurrencyAmount}
|
||||
disableNonToken={disableNonToken}
|
||||
showImportView={() => setModalView(CurrencyModalView.importToken)}
|
||||
showImportView={showImportView}
|
||||
setImportToken={setImportToken}
|
||||
showManageView={() => setModalView(CurrencyModalView.manage)}
|
||||
showManageView={showManageView}
|
||||
/>
|
||||
) : modalView === CurrencyModalView.importToken && importToken ? (
|
||||
<ImportToken
|
||||
tokens={[importToken]}
|
||||
onDismiss={onDismiss}
|
||||
list={importToken instanceof WrappedTokenInfo ? importToken.list : undefined}
|
||||
onBack={() =>
|
||||
setModalView(prevView && prevView !== CurrencyModalView.importToken ? prevView : CurrencyModalView.search)
|
||||
}
|
||||
handleCurrencySelect={handleCurrencySelect}
|
||||
/>
|
||||
) : modalView === CurrencyModalView.importList && importList && listURL ? (
|
||||
<ImportList list={importList} listURL={listURL} onDismiss={onDismiss} setModalView={setModalView} />
|
||||
) : modalView === CurrencyModalView.manage ? (
|
||||
)
|
||||
break
|
||||
case CurrencyModalView.importToken:
|
||||
if (importToken) {
|
||||
content = (
|
||||
<ImportToken
|
||||
tokens={[importToken]}
|
||||
onDismiss={onDismiss}
|
||||
list={importToken instanceof WrappedTokenInfo ? importToken.list : undefined}
|
||||
onBack={handleBackImport}
|
||||
handleCurrencySelect={handleCurrencySelect}
|
||||
/>
|
||||
)
|
||||
}
|
||||
break
|
||||
case CurrencyModalView.importList:
|
||||
if (importList && listURL) {
|
||||
content = <ImportList list={importList} listURL={listURL} onDismiss={onDismiss} setModalView={setModalView} />
|
||||
}
|
||||
break
|
||||
case CurrencyModalView.manage:
|
||||
content = (
|
||||
<Manage
|
||||
onDismiss={onDismiss}
|
||||
setModalView={setModalView}
|
||||
@@ -105,9 +121,12 @@ export default function CurrencySearchModal({
|
||||
setImportList={setImportList}
|
||||
setListUrl={setListUrl}
|
||||
/>
|
||||
) : (
|
||||
''
|
||||
)}
|
||||
)
|
||||
break
|
||||
}
|
||||
return (
|
||||
<Modal isOpen={isOpen} onDismiss={onDismiss} maxHeight={80} minHeight={minHeight}>
|
||||
{content}
|
||||
</Modal>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -2,23 +2,19 @@ import { Plural, Trans } from '@lingui/macro'
|
||||
import { Currency, Token } from '@uniswap/sdk-core'
|
||||
import { TokenList } from '@uniswap/token-lists'
|
||||
import { ButtonPrimary } from 'components/Button'
|
||||
import Card from 'components/Card'
|
||||
import { AutoColumn } from 'components/Column'
|
||||
import CurrencyLogo from 'components/CurrencyLogo'
|
||||
import ListLogo from 'components/ListLogo'
|
||||
import { RowBetween, RowFixed } from 'components/Row'
|
||||
import { RowBetween } from 'components/Row'
|
||||
import { SectionBreak } from 'components/swap/styleds'
|
||||
import { useUnsupportedTokens } from 'hooks/Tokens'
|
||||
import useTheme from 'hooks/useTheme'
|
||||
import { useActiveWeb3React } from 'hooks/web3'
|
||||
import { transparentize } from 'polished'
|
||||
import { AlertCircle, ArrowLeft } from 'react-feather'
|
||||
import { useAddUserToken } from 'state/user/hooks'
|
||||
import styled from 'styled-components/macro'
|
||||
import { CloseIcon, TYPE } from 'theme'
|
||||
|
||||
import { ExternalLink } from '../../theme/components'
|
||||
import { ExplorerDataType, getExplorerLink } from '../../utils/getExplorerLink'
|
||||
import BlockedToken from './BlockedToken'
|
||||
import { PaddedColumn } from './styleds'
|
||||
import TokenImportCard from './TokenImportCard'
|
||||
|
||||
const Wrapper = styled.div`
|
||||
position: relative;
|
||||
@@ -26,21 +22,6 @@ const Wrapper = styled.div`
|
||||
overflow: auto;
|
||||
`
|
||||
|
||||
const WarningWrapper = styled(Card)<{ highWarning: boolean }>`
|
||||
background-color: ${({ theme, highWarning }) =>
|
||||
highWarning ? transparentize(0.8, theme.red1) : transparentize(0.8, theme.yellow2)};
|
||||
width: fit-content;
|
||||
`
|
||||
|
||||
const AddressText = styled(TYPE.blue)`
|
||||
font-size: 12px;
|
||||
word-break: break-all;
|
||||
|
||||
${({ theme }) => theme.mediaWidth.upToSmall`
|
||||
font-size: 10px;
|
||||
`}
|
||||
`
|
||||
|
||||
interface ImportProps {
|
||||
tokens: Token[]
|
||||
list?: TokenList
|
||||
@@ -49,13 +30,18 @@ interface ImportProps {
|
||||
handleCurrencySelect?: (currency: Currency) => void
|
||||
}
|
||||
|
||||
export function ImportToken({ tokens, list, onBack, onDismiss, handleCurrencySelect }: ImportProps) {
|
||||
export function ImportToken(props: ImportProps) {
|
||||
const { tokens, list, onBack, onDismiss, handleCurrencySelect } = props
|
||||
const theme = useTheme()
|
||||
|
||||
const { chainId } = useActiveWeb3React()
|
||||
|
||||
const addToken = useAddUserToken()
|
||||
|
||||
const unsupportedTokens = useUnsupportedTokens()
|
||||
const unsupportedSet = new Set(Object.keys(unsupportedTokens))
|
||||
const intersection = new Set(tokens.filter((token) => unsupportedSet.has(token.address)))
|
||||
if (intersection.size > 0) {
|
||||
return <BlockedToken onBack={onBack} onDismiss={onDismiss} blockedTokens={Array.from(intersection)} />
|
||||
}
|
||||
return (
|
||||
<Wrapper>
|
||||
<PaddedColumn gap="14px" style={{ width: '100%', flex: '1 1' }}>
|
||||
@@ -78,52 +64,9 @@ export function ImportToken({ tokens, list, onBack, onDismiss, handleCurrencySel
|
||||
</Trans>
|
||||
</TYPE.body>
|
||||
</AutoColumn>
|
||||
{tokens.map((token) => {
|
||||
return (
|
||||
<Card
|
||||
backgroundColor={theme.bg2}
|
||||
key={'import' + token.address}
|
||||
className=".token-warning-container"
|
||||
padding="2rem"
|
||||
>
|
||||
<AutoColumn gap="10px" justify="center">
|
||||
<CurrencyLogo currency={token} size={'32px'} />
|
||||
|
||||
<AutoColumn gap="4px" justify="center">
|
||||
<TYPE.body ml="8px" mr="8px" fontWeight={500} fontSize={20}>
|
||||
{token.symbol}
|
||||
</TYPE.body>
|
||||
<TYPE.darkGray fontWeight={400} fontSize={14}>
|
||||
{token.name}
|
||||
</TYPE.darkGray>
|
||||
</AutoColumn>
|
||||
{chainId && (
|
||||
<ExternalLink href={getExplorerLink(chainId, token.address, ExplorerDataType.ADDRESS)}>
|
||||
<AddressText fontSize={12}>{token.address}</AddressText>
|
||||
</ExternalLink>
|
||||
)}
|
||||
{list !== undefined ? (
|
||||
<RowFixed>
|
||||
{list.logoURI && <ListLogo logoURI={list.logoURI} size="16px" />}
|
||||
<TYPE.small ml="6px" fontSize={14} color={theme.text3}>
|
||||
<Trans>via {list.name} token list</Trans>
|
||||
</TYPE.small>
|
||||
</RowFixed>
|
||||
) : (
|
||||
<WarningWrapper $borderRadius="4px" padding="4px" highWarning={true}>
|
||||
<RowFixed>
|
||||
<AlertCircle stroke={theme.red1} size="10px" />
|
||||
<TYPE.body color={theme.red1} ml="4px" fontSize="10px" fontWeight={500}>
|
||||
<Trans>Unknown Source</Trans>
|
||||
</TYPE.body>
|
||||
</RowFixed>
|
||||
</WarningWrapper>
|
||||
)}
|
||||
</AutoColumn>
|
||||
</Card>
|
||||
)
|
||||
})}
|
||||
|
||||
{tokens.map((token) => (
|
||||
<TokenImportCard token={token} list={list} key={'import' + token.address} />
|
||||
))}
|
||||
<ButtonPrimary
|
||||
altDisabledStyle={true}
|
||||
$borderRadius="20px"
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { TokenList } from '@uniswap/token-lists'
|
||||
import Card from 'components/Card'
|
||||
|
||||
76
src/components/SearchModal/TokenImportCard.tsx
Normal file
76
src/components/SearchModal/TokenImportCard.tsx
Normal file
@@ -0,0 +1,76 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Token } from '@uniswap/sdk-core'
|
||||
import { TokenList } from '@uniswap/token-lists'
|
||||
import Card from 'components/Card'
|
||||
import { AutoColumn } from 'components/Column'
|
||||
import CurrencyLogo from 'components/CurrencyLogo'
|
||||
import ListLogo from 'components/ListLogo'
|
||||
import { RowFixed } from 'components/Row'
|
||||
import { useActiveWeb3React } from 'hooks/web3'
|
||||
import { transparentize } from 'polished'
|
||||
import { AlertCircle } from 'react-feather'
|
||||
import styled, { useTheme } from 'styled-components/macro'
|
||||
import { ExternalLink, TYPE } from 'theme'
|
||||
import { ExplorerDataType, getExplorerLink } from 'utils/getExplorerLink'
|
||||
|
||||
const WarningWrapper = styled(Card)<{ highWarning: boolean }>`
|
||||
background-color: ${({ theme, highWarning }) =>
|
||||
highWarning ? transparentize(0.8, theme.red1) : transparentize(0.8, theme.yellow2)};
|
||||
width: fit-content;
|
||||
`
|
||||
|
||||
const AddressText = styled(TYPE.blue)`
|
||||
font-size: 12px;
|
||||
word-break: break-all;
|
||||
|
||||
${({ theme }) => theme.mediaWidth.upToSmall`
|
||||
font-size: 10px;
|
||||
`}
|
||||
`
|
||||
interface TokenImportCardProps {
|
||||
list?: TokenList
|
||||
token: Token
|
||||
}
|
||||
const TokenImportCard = ({ list, token }: TokenImportCardProps) => {
|
||||
const theme = useTheme()
|
||||
const { chainId } = useActiveWeb3React()
|
||||
return (
|
||||
<Card backgroundColor={theme.bg2} padding="2rem">
|
||||
<AutoColumn gap="10px" justify="center">
|
||||
<CurrencyLogo currency={token} size={'32px'} />
|
||||
<AutoColumn gap="4px" justify="center">
|
||||
<TYPE.body ml="8px" mr="8px" fontWeight={500} fontSize={20}>
|
||||
{token.symbol}
|
||||
</TYPE.body>
|
||||
<TYPE.darkGray fontWeight={400} fontSize={14}>
|
||||
{token.name}
|
||||
</TYPE.darkGray>
|
||||
</AutoColumn>
|
||||
{chainId && (
|
||||
<ExternalLink href={getExplorerLink(chainId, token.address, ExplorerDataType.ADDRESS)}>
|
||||
<AddressText fontSize={12}>{token.address}</AddressText>
|
||||
</ExternalLink>
|
||||
)}
|
||||
{list !== undefined ? (
|
||||
<RowFixed>
|
||||
{list.logoURI && <ListLogo logoURI={list.logoURI} size="16px" />}
|
||||
<TYPE.small ml="6px" fontSize={14} color={theme.text3}>
|
||||
<Trans>via {list.name} token list</Trans>
|
||||
</TYPE.small>
|
||||
</RowFixed>
|
||||
) : (
|
||||
<WarningWrapper $borderRadius="4px" padding="4px" highWarning={true}>
|
||||
<RowFixed>
|
||||
<AlertCircle stroke={theme.red1} size="10px" />
|
||||
<TYPE.body color={theme.red1} ml="4px" fontSize="10px" fontWeight={500}>
|
||||
<Trans>Unknown Source</Trans>
|
||||
</TYPE.body>
|
||||
</RowFixed>
|
||||
</WarningWrapper>
|
||||
)}
|
||||
</AutoColumn>
|
||||
</Card>
|
||||
)
|
||||
}
|
||||
|
||||
export default TokenImportCard
|
||||
@@ -1,3 +1,4 @@
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Percent } from '@uniswap/sdk-core'
|
||||
import { SupportedChainId } from 'constants/chains'
|
||||
@@ -9,8 +10,8 @@ import { Text } from 'rebass'
|
||||
import styled, { ThemeContext } from 'styled-components/macro'
|
||||
|
||||
import { useOnClickOutside } from '../../hooks/useOnClickOutside'
|
||||
import { ApplicationModal } from '../../state/application/actions'
|
||||
import { useModalOpen, useToggleSettingsMenu } from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import { useClientSideRouter, useExpertModeManager } from '../../state/user/hooks'
|
||||
import { TYPE } from '../../theme'
|
||||
import { ButtonError } from '../Button'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Percent } from '@uniswap/sdk-core'
|
||||
import { L2_CHAIN_IDS } from 'constants/chains'
|
||||
import { DEFAULT_DEADLINE_FROM_NOW } from 'constants/misc'
|
||||
@@ -233,7 +233,7 @@ export default function TransactionSettings({ placeholderSlippage }: Transaction
|
||||
<Trans>Transaction deadline</Trans>
|
||||
</TYPE.black>
|
||||
<QuestionHelper
|
||||
text={t`Your transaction will revert if it is pending for more than this period of time.`}
|
||||
text={<Trans>Your transaction will revert if it is pending for more than this period of time.</Trans>}
|
||||
/>
|
||||
</RowFixed>
|
||||
<RowFixed>
|
||||
|
||||
@@ -2,8 +2,12 @@ import { Trans } from '@lingui/macro'
|
||||
import { AbstractConnector } from '@web3-react/abstract-connector'
|
||||
import { UnsupportedChainIdError, useWeb3React } from '@web3-react/core'
|
||||
import { WalletConnectConnector } from '@web3-react/walletconnect-connector'
|
||||
import { AutoRow } from 'components/Row'
|
||||
import { AutoColumn } from 'components/Column'
|
||||
import { PrivacyPolicy } from 'components/PrivacyPolicy'
|
||||
import Row, { AutoRow, RowBetween } from 'components/Row'
|
||||
import { useWalletConnectMonitoringEventCallback } from 'hooks/useMonitoringEventCallback'
|
||||
import { useEffect, useState } from 'react'
|
||||
import { ArrowLeft, ArrowRight, Info } from 'react-feather'
|
||||
import ReactGA from 'react-ga'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
@@ -13,12 +17,12 @@ import { fortmatic, injected, portis } from '../../connectors'
|
||||
import { OVERLAY_READY } from '../../connectors/Fortmatic'
|
||||
import { SUPPORTED_WALLETS } from '../../constants/wallet'
|
||||
import usePrevious from '../../hooks/usePrevious'
|
||||
import { ApplicationModal } from '../../state/application/actions'
|
||||
import { useModalOpen, useWalletModalToggle } from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import { ExternalLink, TYPE } from '../../theme'
|
||||
import { isMobile } from '../../utils/userAgent'
|
||||
import AccountDetails from '../AccountDetails'
|
||||
import { LightCard } from '../Card'
|
||||
import Card, { LightCard } from '../Card'
|
||||
import Modal from '../Modal'
|
||||
import Option from './Option'
|
||||
import PendingView from './PendingView'
|
||||
@@ -105,11 +109,22 @@ const HoverText = styled.div`
|
||||
}
|
||||
`
|
||||
|
||||
const LinkCard = styled(Card)`
|
||||
background-color: ${({ theme }) => theme.primary1};
|
||||
color: ${({ theme }) => theme.white};
|
||||
|
||||
:hover {
|
||||
cursor: pointer;
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
`
|
||||
|
||||
const WALLET_VIEWS = {
|
||||
OPTIONS: 'options',
|
||||
OPTIONS_SECONDARY: 'options_secondary',
|
||||
ACCOUNT: 'account',
|
||||
PENDING: 'pending',
|
||||
LEGAL: 'legal',
|
||||
}
|
||||
|
||||
export default function WalletModal({
|
||||
@@ -125,6 +140,7 @@ export default function WalletModal({
|
||||
const { active, account, connector, activate, error } = useWeb3React()
|
||||
|
||||
const [walletView, setWalletView] = useState(WALLET_VIEWS.ACCOUNT)
|
||||
const previousWalletView = usePrevious(walletView)
|
||||
|
||||
const [pendingWallet, setPendingWallet] = useState<AbstractConnector | undefined>()
|
||||
|
||||
@@ -135,6 +151,8 @@ export default function WalletModal({
|
||||
|
||||
const previousAccount = usePrevious(account)
|
||||
|
||||
const logMonitoringEvent = useWalletConnectMonitoringEventCallback()
|
||||
|
||||
// close on connection, when logged out before
|
||||
useEffect(() => {
|
||||
if (account && !previousAccount && walletModalOpen) {
|
||||
@@ -177,18 +195,23 @@ export default function WalletModal({
|
||||
setWalletView(WALLET_VIEWS.PENDING)
|
||||
|
||||
// if the connector is walletconnect and the user has already tried to connect, manually reset the connector
|
||||
if (connector instanceof WalletConnectConnector && connector.walletConnectProvider?.wc?.uri) {
|
||||
if (connector instanceof WalletConnectConnector) {
|
||||
connector.walletConnectProvider = undefined
|
||||
}
|
||||
|
||||
connector &&
|
||||
activate(connector, undefined, true).catch((error) => {
|
||||
if (error instanceof UnsupportedChainIdError) {
|
||||
activate(connector) // a little janky...can't use setError because the connector isn't set
|
||||
} else {
|
||||
setPendingError(true)
|
||||
}
|
||||
})
|
||||
activate(connector, undefined, true)
|
||||
.then(async () => {
|
||||
const walletAddress = await connector.getAccount()
|
||||
logMonitoringEvent({ walletAddress })
|
||||
})
|
||||
.catch((error) => {
|
||||
if (error instanceof UnsupportedChainIdError) {
|
||||
activate(connector) // a little janky...can't use setError because the connector isn't set
|
||||
} else {
|
||||
setPendingError(true)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// close wallet modal if fortmatic modal is active
|
||||
@@ -306,6 +329,30 @@ export default function WalletModal({
|
||||
</UpperSection>
|
||||
)
|
||||
}
|
||||
if (walletView === WALLET_VIEWS.LEGAL) {
|
||||
return (
|
||||
<UpperSection>
|
||||
<HeaderRow>
|
||||
<HoverText
|
||||
onClick={() => {
|
||||
setWalletView(
|
||||
(previousWalletView === WALLET_VIEWS.LEGAL ? WALLET_VIEWS.ACCOUNT : previousWalletView) ??
|
||||
WALLET_VIEWS.ACCOUNT
|
||||
)
|
||||
}}
|
||||
>
|
||||
<ArrowLeft />
|
||||
</HoverText>
|
||||
<Row justify="center">
|
||||
<TYPE.mediumHeader>
|
||||
<Trans>Legal & Privacy</Trans>
|
||||
</TYPE.mediumHeader>
|
||||
</Row>
|
||||
</HeaderRow>
|
||||
<PrivacyPolicy />
|
||||
</UpperSection>
|
||||
)
|
||||
}
|
||||
if (account && walletView === WALLET_VIEWS.ACCOUNT) {
|
||||
return (
|
||||
<AccountDetails
|
||||
@@ -330,40 +377,53 @@ export default function WalletModal({
|
||||
setWalletView(WALLET_VIEWS.ACCOUNT)
|
||||
}}
|
||||
>
|
||||
<Trans>Back</Trans>
|
||||
<ArrowLeft />
|
||||
</HoverText>
|
||||
</HeaderRow>
|
||||
) : (
|
||||
<HeaderRow>
|
||||
<HoverText>
|
||||
<Trans>Connect to a wallet</Trans>
|
||||
<Trans>Connect a wallet</Trans>
|
||||
</HoverText>
|
||||
</HeaderRow>
|
||||
)}
|
||||
|
||||
<ContentWrapper>
|
||||
<LightCard style={{ marginBottom: '16px' }}>
|
||||
<AutoRow style={{ flexWrap: 'nowrap' }}>
|
||||
<TYPE.main fontSize={14}>
|
||||
<Trans>
|
||||
By connecting a wallet, you agree to Uniswap Labs’{' '}
|
||||
<ExternalLink href="https://uniswap.org/terms-of-service/">Terms of Service</ExternalLink> and
|
||||
acknowledge that you have read and understand the{' '}
|
||||
<ExternalLink href="https://uniswap.org/disclaimer/">Uniswap protocol disclaimer</ExternalLink>.
|
||||
</Trans>
|
||||
</TYPE.main>
|
||||
</AutoRow>
|
||||
</LightCard>
|
||||
{walletView === WALLET_VIEWS.PENDING ? (
|
||||
<PendingView
|
||||
connector={pendingWallet}
|
||||
error={pendingError}
|
||||
setPendingError={setPendingError}
|
||||
tryActivation={tryActivation}
|
||||
/>
|
||||
) : (
|
||||
<OptionGrid>{getOptions()}</OptionGrid>
|
||||
)}
|
||||
<AutoColumn gap="16px">
|
||||
<LightCard>
|
||||
<AutoRow style={{ flexWrap: 'nowrap' }}>
|
||||
<TYPE.black fontSize={14}>
|
||||
<Trans>
|
||||
By connecting a wallet, you agree to Uniswap Labs’{' '}
|
||||
<ExternalLink href="https://uniswap.org/terms-of-service/">Terms of Service</ExternalLink> and
|
||||
acknowledge that you have read and understand the Uniswap{' '}
|
||||
<ExternalLink href="https://uniswap.org/disclaimer/">Protocol Disclaimer</ExternalLink>.
|
||||
</Trans>
|
||||
</TYPE.black>
|
||||
</AutoRow>
|
||||
</LightCard>
|
||||
<LinkCard padding=".5rem" $borderRadius=".75rem" onClick={() => setWalletView(WALLET_VIEWS.LEGAL)}>
|
||||
<RowBetween>
|
||||
<AutoRow gap="4px">
|
||||
<Info size={20} />
|
||||
<TYPE.white fontSize={14}>
|
||||
<Trans>How this app uses APIs</Trans>
|
||||
</TYPE.white>
|
||||
</AutoRow>
|
||||
<ArrowRight size={16} />
|
||||
</RowBetween>
|
||||
</LinkCard>
|
||||
{walletView === WALLET_VIEWS.PENDING ? (
|
||||
<PendingView
|
||||
connector={pendingWallet}
|
||||
error={pendingError}
|
||||
setPendingError={setPendingError}
|
||||
tryActivation={tryActivation}
|
||||
/>
|
||||
) : (
|
||||
<OptionGrid>{getOptions()}</OptionGrid>
|
||||
)}
|
||||
</AutoColumn>
|
||||
</ContentWrapper>
|
||||
</UpperSection>
|
||||
)
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { AbstractConnector } from '@web3-react/abstract-connector'
|
||||
import { UnsupportedChainIdError, useWeb3React } from '@web3-react/core'
|
||||
@@ -211,7 +212,7 @@ function Web3StatusInner() {
|
||||
return (
|
||||
<Web3StatusConnect id="connect-wallet" onClick={toggleWalletModal} faded={!account}>
|
||||
<Text>
|
||||
<Trans>Connect to a wallet</Trans>
|
||||
<Trans>Connect Wallet</Trans>
|
||||
</Text>
|
||||
</Web3StatusConnect>
|
||||
)
|
||||
|
||||
@@ -24,7 +24,8 @@ export default function GoogleAnalyticsReporter({ location: { pathname, search }
|
||||
|
||||
const { chainId } = useActiveWeb3React()
|
||||
useEffect(() => {
|
||||
ReactGA.set({ ['Chain ID']: chainId ?? 0 })
|
||||
// cd1 - custom dimension 1 - chainId
|
||||
ReactGA.set({ cd1: chainId ?? 0 })
|
||||
}, [chainId])
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
22
src/components/analytics/index.ts
Normal file
22
src/components/analytics/index.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import ReactGA from 'react-ga'
|
||||
import { isMobile } from 'utils/userAgent'
|
||||
|
||||
const GOOGLE_ANALYTICS_ID: string | undefined = process.env.REACT_APP_GOOGLE_ANALYTICS_ID
|
||||
if (typeof GOOGLE_ANALYTICS_ID === 'string') {
|
||||
ReactGA.initialize(GOOGLE_ANALYTICS_ID, {
|
||||
gaOptions: {
|
||||
storage: 'none',
|
||||
storeGac: false,
|
||||
},
|
||||
})
|
||||
ReactGA.set({
|
||||
anonymizeIp: true,
|
||||
customBrowserType: !isMobile
|
||||
? 'desktop'
|
||||
: 'web3' in window || 'ethereum' in window
|
||||
? 'mobileWeb3'
|
||||
: 'mobileRegular',
|
||||
})
|
||||
} else {
|
||||
ReactGA.initialize('test', { testMode: true, debug: true })
|
||||
}
|
||||
@@ -9,8 +9,8 @@ import styled from 'styled-components/macro'
|
||||
import Circle from '../../assets/images/blue-loader.svg'
|
||||
import tokenLogo from '../../assets/images/token-logo.png'
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
import { ApplicationModal } from '../../state/application/actions'
|
||||
import { useModalOpen, useToggleSelfClaimModal } from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import { useClaimCallback, useUserClaimData, useUserUnclaimedAmount } from '../../state/claim/hooks'
|
||||
import { useUserHasSubmittedClaim } from '../../state/transactions/hooks'
|
||||
import { CloseIcon, CustomLightSpinner, ExternalLink, TYPE, UniTokenAnimated } from '../../theme'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { useState } from 'react'
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { ReactNode, useState } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
import { useStakingContract } from '../../hooks/useContract'
|
||||
@@ -61,12 +61,12 @@ export default function ClaimRewardModal({ isOpen, onDismiss, stakingInfo }: Sta
|
||||
}
|
||||
}
|
||||
|
||||
let error: string | undefined
|
||||
let error: ReactNode | undefined
|
||||
if (!account) {
|
||||
error = t`Connect Wallet`
|
||||
error = <Trans>Connect Wallet</Trans>
|
||||
}
|
||||
if (!stakingInfo?.stakedAmount) {
|
||||
error = error ?? t`Enter an amount`
|
||||
error = error ?? <Trans>Enter an amount</Trans>
|
||||
}
|
||||
|
||||
return (
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { useState } from 'react'
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { ReactNode, useState } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
import { useStakingContract } from '../../hooks/useContract'
|
||||
@@ -63,12 +63,12 @@ export default function UnstakingModal({ isOpen, onDismiss, stakingInfo }: Staki
|
||||
}
|
||||
}
|
||||
|
||||
let error: string | undefined
|
||||
let error: ReactNode | undefined
|
||||
if (!account) {
|
||||
error = t`Connect a wallet`
|
||||
error = <Trans>Connect a wallet</Trans>
|
||||
}
|
||||
if (!stakingInfo?.stakedAmount) {
|
||||
error = error ?? t`Enter an amount`
|
||||
error = error ?? <Trans>Enter an amount</Trans>
|
||||
}
|
||||
|
||||
return (
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Currency, Price } from '@uniswap/sdk-core'
|
||||
import useUSDCPrice from 'hooks/useUSDCPrice'
|
||||
import { useCallback, useContext } from 'react'
|
||||
import { Text } from 'rebass'
|
||||
import styled, { ThemeContext } from 'styled-components/macro'
|
||||
import { TYPE } from 'theme'
|
||||
|
||||
interface TradePriceProps {
|
||||
price: Price<Currency, Currency>
|
||||
@@ -10,21 +13,23 @@ interface TradePriceProps {
|
||||
}
|
||||
|
||||
const StyledPriceContainer = styled.button`
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 0;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 400;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
height: 24px;
|
||||
cursor: pointer;
|
||||
display: grid;
|
||||
height: 24px;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
grid-template-columns: 1fr auto;
|
||||
grid-gap: 0.25rem;
|
||||
`
|
||||
|
||||
export default function TradePrice({ price, showInverted, setShowInverted }: TradePriceProps) {
|
||||
const theme = useContext(ThemeContext)
|
||||
|
||||
const usdcPrice = useUSDCPrice(showInverted ? price.baseCurrency : price.quoteCurrency)
|
||||
|
||||
let formattedPrice: string
|
||||
try {
|
||||
formattedPrice = showInverted ? price.toSignificant(4) : price.invert()?.toSignificant(4)
|
||||
@@ -40,11 +45,14 @@ export default function TradePrice({ price, showInverted, setShowInverted }: Tra
|
||||
|
||||
return (
|
||||
<StyledPriceContainer onClick={flipPrice} title={text}>
|
||||
<div style={{ alignItems: 'center', display: 'flex', width: 'fit-content' }}>
|
||||
<Text fontWeight={500} fontSize={14} color={theme.text1}>
|
||||
{text}
|
||||
</Text>
|
||||
</div>
|
||||
<Text fontWeight={500} fontSize={14} color={theme.text1}>
|
||||
{text}
|
||||
</Text>{' '}
|
||||
{usdcPrice && (
|
||||
<TYPE.darkGray>
|
||||
<Trans>(${usdcPrice.toSignificant(6, { groupSeparator: ',' })})</Trans>
|
||||
</TYPE.darkGray>
|
||||
)}
|
||||
</StyledPriceContainer>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Currency, Token } from '@uniswap/sdk-core'
|
||||
import { Currency } from '@uniswap/sdk-core'
|
||||
import { ButtonEmpty } from 'components/Button'
|
||||
import Card, { OutlineCard } from 'components/Card'
|
||||
import { AutoColumn } from 'components/Column'
|
||||
@@ -9,7 +9,7 @@ import { AutoRow, RowBetween } from 'components/Row'
|
||||
import { useActiveWeb3React } from 'hooks/web3'
|
||||
import { useState } from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
import { CloseIcon, ExternalLink, TYPE } from 'theme'
|
||||
import { CloseIcon, ExternalLink, TYPE, Z_INDEX } from 'theme'
|
||||
|
||||
import { useUnsupportedTokens } from '../../hooks/Tokens'
|
||||
import { ExplorerDataType, getExplorerLink } from '../../utils/getExplorerLink'
|
||||
@@ -17,6 +17,8 @@ import { ExplorerDataType, getExplorerLink } from '../../utils/getExplorerLink'
|
||||
const DetailsFooter = styled.div<{ show: boolean }>`
|
||||
padding-top: calc(16px + 2rem);
|
||||
padding-bottom: 20px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: -2rem;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
@@ -24,13 +26,17 @@ const DetailsFooter = styled.div<{ show: boolean }>`
|
||||
border-bottom-right-radius: 20px;
|
||||
color: ${({ theme }) => theme.text2};
|
||||
background-color: ${({ theme }) => theme.advancedBG};
|
||||
z-index: -1;
|
||||
z-index: ${Z_INDEX.deprecated_zero};
|
||||
|
||||
transform: ${({ show }) => (show ? 'translateY(0%)' : 'translateY(-100%)')};
|
||||
transition: transform 300ms ease-in-out;
|
||||
text-align: center;
|
||||
`
|
||||
|
||||
const StyledButtonEmpty = styled(ButtonEmpty)`
|
||||
text-decoration: none;
|
||||
`
|
||||
|
||||
const AddressText = styled(TYPE.blue)`
|
||||
font-size: 12px;
|
||||
|
||||
@@ -56,7 +62,7 @@ export default function UnsupportedCurrencyFooter({
|
||||
})
|
||||
: []
|
||||
|
||||
const unsupportedTokens: { [address: string]: Token } = useUnsupportedTokens()
|
||||
const unsupportedTokens = useUnsupportedTokens()
|
||||
|
||||
return (
|
||||
<DetailsFooter show={show}>
|
||||
@@ -101,11 +107,11 @@ export default function UnsupportedCurrencyFooter({
|
||||
</AutoColumn>
|
||||
</Card>
|
||||
</Modal>
|
||||
<ButtonEmpty padding={'0'} onClick={() => setShowDetails(true)}>
|
||||
<StyledButtonEmpty padding={'0'} onClick={() => setShowDetails(true)}>
|
||||
<TYPE.blue>
|
||||
<Trans>Read more about unsupported assets</Trans>
|
||||
</TYPE.blue>
|
||||
</ButtonEmpty>
|
||||
</StyledButtonEmpty>
|
||||
</DetailsFooter>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
const AAVE_LIST = 'tokenlist.aave.eth'
|
||||
const BA_LIST = 'https://raw.githubusercontent.com/The-Blockchain-Association/sec-notice-list/master/ba-sec-list.json'
|
||||
const CMC_ALL_LIST = 'defi.cmc.eth'
|
||||
const CMC_STABLECOIN = 'stablecoin.cmc.eth'
|
||||
const CMC_ALL_LIST = 'https://api.coinmarketcap.com/data-api/v3/uniswap/all.json'
|
||||
const COINGECKO_LIST = 'https://tokens.coingecko.com/uniswap/all.json'
|
||||
const COMPOUND_LIST = 'https://raw.githubusercontent.com/compound-finance/token-list/master/compound.tokenlist.json'
|
||||
const GEMINI_LIST = 'https://www.gemini.com/uniswap/manifest.json'
|
||||
@@ -20,15 +19,14 @@ const DEFAULT_LIST_OF_LISTS_TO_DISPLAY: string[] = [
|
||||
COMPOUND_LIST,
|
||||
AAVE_LIST,
|
||||
CMC_ALL_LIST,
|
||||
CMC_STABLECOIN,
|
||||
COINGECKO_LIST,
|
||||
KLEROS_LIST,
|
||||
GEMINI_LIST,
|
||||
WRAPPED_LIST,
|
||||
SET_LIST,
|
||||
ROLL_LIST,
|
||||
COINGECKO_LIST,
|
||||
KLEROS_LIST,
|
||||
ARBITRUM_LIST,
|
||||
OPTIMISM_LIST,
|
||||
GEMINI_LIST,
|
||||
]
|
||||
|
||||
export const DEFAULT_LIST_OF_LISTS: string[] = [
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
export const UNISWAP_GRANTS_START_BLOCK = 11473815
|
||||
export const BRAVO_START_BLOCK = 13059344
|
||||
export const ONE_BIP_START_BLOCK = 13551293
|
||||
|
||||
@@ -15,6 +15,8 @@ import {
|
||||
renBTC,
|
||||
TRIBE,
|
||||
USDC,
|
||||
USDC_ARBITRUM,
|
||||
USDC_OPTIMISM,
|
||||
USDT,
|
||||
USDT_ARBITRUM_ONE,
|
||||
USDT_OPTIMISM,
|
||||
@@ -94,6 +96,7 @@ export const COMMON_BASES: ChainCurrencyList = {
|
||||
[SupportedChainId.ARBITRUM_ONE]: [
|
||||
ExtendedEther.onChain(SupportedChainId.ARBITRUM_ONE),
|
||||
DAI_ARBITRUM_ONE,
|
||||
USDC_ARBITRUM,
|
||||
USDT_ARBITRUM_ONE,
|
||||
WBTC_ARBITRUM_ONE,
|
||||
WETH9_EXTENDED[SupportedChainId.ARBITRUM_ONE],
|
||||
@@ -105,14 +108,11 @@ export const COMMON_BASES: ChainCurrencyList = {
|
||||
[SupportedChainId.OPTIMISM]: [
|
||||
ExtendedEther.onChain(SupportedChainId.OPTIMISM),
|
||||
DAI_OPTIMISM,
|
||||
USDC_OPTIMISM,
|
||||
USDT_OPTIMISM,
|
||||
WBTC_OPTIMISM,
|
||||
WETH9_EXTENDED[SupportedChainId.OPTIMISM],
|
||||
],
|
||||
[SupportedChainId.OPTIMISTIC_KOVAN]: [
|
||||
ExtendedEther.onChain(SupportedChainId.OPTIMISTIC_KOVAN),
|
||||
WETH9_EXTENDED[SupportedChainId.OPTIMISTIC_KOVAN],
|
||||
],
|
||||
[SupportedChainId.OPTIMISTIC_KOVAN]: [ExtendedEther.onChain(SupportedChainId.OPTIMISTIC_KOVAN)],
|
||||
}
|
||||
|
||||
// used to construct the list of all pairs we consider by default in the frontend
|
||||
|
||||
@@ -1073,6 +1073,27 @@
|
||||
"name": "sLINK",
|
||||
"symbol": "Synth Link",
|
||||
"decimals": 18
|
||||
},
|
||||
{
|
||||
"chainId": 1,
|
||||
"address": "0x6B60eE11b73230045cF9095E6e43AE9Ea638e172",
|
||||
"name": "Shatner",
|
||||
"symbol": "SHAT",
|
||||
"decimals": 18
|
||||
},
|
||||
{
|
||||
"chainId": 1,
|
||||
"address": "0x7277a44D1325D81Ac58893002a1B40a41bea43fe",
|
||||
"name": "FAANG Index",
|
||||
"symbol": "FAANG",
|
||||
"decimals": 18
|
||||
},
|
||||
{
|
||||
"chainId": 1,
|
||||
"address": "0x76175599887730786bdA1545D0D7AcE8737fEBB1",
|
||||
"name": "ENS DAO",
|
||||
"symbol": "ENS",
|
||||
"decimals": 18
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -40,7 +40,14 @@ export const USDC = new Token(
|
||||
)
|
||||
export const USDC_ARBITRUM = new Token(
|
||||
SupportedChainId.ARBITRUM_ONE,
|
||||
'0xe865dF68133fcEd7c2285ff3896B406CAfAa2dB8',
|
||||
'0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8',
|
||||
6,
|
||||
'USDC',
|
||||
'USD//C'
|
||||
)
|
||||
export const USDC_OPTIMISM = new Token(
|
||||
SupportedChainId.OPTIMISM,
|
||||
'0x7F5c764cBc14f9669B88837ca1490cCa17c31607',
|
||||
6,
|
||||
'USDC',
|
||||
'USD//C'
|
||||
|
||||
@@ -2,15 +2,14 @@ import { Currency, Token } from '@uniswap/sdk-core'
|
||||
import { useMemo } from 'react'
|
||||
|
||||
import { ADDITIONAL_BASES, BASES_TO_CHECK_TRADES_AGAINST, CUSTOM_BASES } from '../constants/routing'
|
||||
import { useActiveWeb3React } from './web3'
|
||||
|
||||
export function useAllCurrencyCombinations(currencyA?: Currency, currencyB?: Currency): [Token, Token][] {
|
||||
const { chainId } = useActiveWeb3React()
|
||||
const chainId = currencyA?.chainId
|
||||
|
||||
const [tokenA, tokenB] = chainId ? [currencyA?.wrapped, currencyB?.wrapped] : [undefined, undefined]
|
||||
|
||||
const bases: Token[] = useMemo(() => {
|
||||
if (!chainId) return []
|
||||
if (!chainId || chainId !== tokenB?.chainId) return []
|
||||
|
||||
const common = BASES_TO_CHECK_TRADES_AGAINST[chainId] ?? []
|
||||
const additionalA = tokenA ? ADDITIONAL_BASES[chainId]?.[tokenA.address] ?? [] : []
|
||||
|
||||
@@ -26,12 +26,12 @@ export function useBestV3Trade(
|
||||
const routingAPIEnabled = useRoutingAPIEnabled()
|
||||
const isWindowVisible = useIsWindowVisible()
|
||||
|
||||
const debouncedAmount = useDebounce(amountSpecified, 100)
|
||||
const [debouncedAmount, debouncedOtherCurrency] = useDebounce([amountSpecified, otherCurrency], 200)
|
||||
|
||||
const routingAPITrade = useRoutingAPITrade(
|
||||
tradeType,
|
||||
routingAPIEnabled && isWindowVisible ? debouncedAmount : undefined,
|
||||
otherCurrency
|
||||
debouncedOtherCurrency
|
||||
)
|
||||
|
||||
const isLoading = amountSpecified !== undefined && debouncedAmount === undefined
|
||||
@@ -43,10 +43,10 @@ export function useBestV3Trade(
|
||||
(tradeType === TradeType.EXACT_INPUT
|
||||
? !routingAPITrade.trade.inputAmount.equalTo(amountSpecified) ||
|
||||
!amountSpecified.currency.equals(routingAPITrade.trade.inputAmount.currency) ||
|
||||
!otherCurrency?.equals(routingAPITrade.trade.outputAmount.currency)
|
||||
!debouncedOtherCurrency?.equals(routingAPITrade.trade.outputAmount.currency)
|
||||
: !routingAPITrade.trade.outputAmount.equalTo(amountSpecified) ||
|
||||
!amountSpecified.currency.equals(routingAPITrade.trade.outputAmount.currency) ||
|
||||
!otherCurrency?.equals(routingAPITrade.trade.inputAmount.currency))
|
||||
!debouncedOtherCurrency?.equals(routingAPITrade.trade.inputAmount.currency))
|
||||
|
||||
const useFallback = !routingAPIEnabled || (!debouncing && routingAPITrade.state === V3TradeState.NO_ROUTE_FOUND)
|
||||
|
||||
@@ -54,7 +54,7 @@ export function useBestV3Trade(
|
||||
const bestV3Trade = useClientSideV3Trade(
|
||||
tradeType,
|
||||
useFallback ? debouncedAmount : undefined,
|
||||
useFallback ? otherCurrency : undefined
|
||||
useFallback ? debouncedOtherCurrency : undefined
|
||||
)
|
||||
|
||||
return {
|
||||
|
||||
@@ -13,6 +13,8 @@ import { useActiveWeb3React } from './web3'
|
||||
const QUOTE_GAS_OVERRIDES: { [chainId: number]: number } = {
|
||||
[SupportedChainId.OPTIMISM]: 6_000_000,
|
||||
[SupportedChainId.OPTIMISTIC_KOVAN]: 6_000_000,
|
||||
[SupportedChainId.ARBITRUM_ONE]: 25_000_000,
|
||||
[SupportedChainId.ARBITRUM_RINKEBY]: 25_000_000,
|
||||
}
|
||||
|
||||
const DEFAULT_GAS_QUOTE = 2_000_000
|
||||
|
||||
@@ -1,46 +1,64 @@
|
||||
import { Token } from '@uniswap/sdk-core'
|
||||
import { SupportedChainId } from 'constants/chains'
|
||||
import Vibrant from 'node-vibrant/lib/bundle'
|
||||
import { shade } from 'polished'
|
||||
import { useLayoutEffect, useState } from 'react'
|
||||
import { WrappedTokenInfo } from 'state/lists/wrappedTokenInfo'
|
||||
import uriToHttp from 'utils/uriToHttp'
|
||||
import { hex } from 'wcag-contrast'
|
||||
|
||||
function URIForEthToken(address: string) {
|
||||
return `https://raw.githubusercontent.com/uniswap/assets/master/blockchains/ethereum/assets/${address}/logo.png`
|
||||
}
|
||||
|
||||
async function getColorFromToken(token: Token): Promise<string | null> {
|
||||
if (token.chainId !== 1) {
|
||||
return Promise.resolve('#FAAB14')
|
||||
if (!(token instanceof WrappedTokenInfo)) {
|
||||
return null
|
||||
}
|
||||
|
||||
const path = `https://raw.githubusercontent.com/uniswap/assets/master/blockchains/ethereum/assets/${token.address}/logo.png`
|
||||
|
||||
return Vibrant.from(path)
|
||||
.getPalette()
|
||||
.then((palette) => {
|
||||
if (palette?.Vibrant) {
|
||||
let detectedHex = palette.Vibrant.hex
|
||||
let AAscore = hex(detectedHex, '#FFF')
|
||||
while (AAscore < 3) {
|
||||
detectedHex = shade(0.005, detectedHex)
|
||||
AAscore = hex(detectedHex, '#FFF')
|
||||
}
|
||||
return detectedHex
|
||||
}
|
||||
const wrappedToken = token as WrappedTokenInfo
|
||||
const { address } = wrappedToken
|
||||
let { logoURI } = wrappedToken
|
||||
if (!logoURI) {
|
||||
if (token.chainId !== SupportedChainId.MAINNET) {
|
||||
return null
|
||||
})
|
||||
.catch(() => null)
|
||||
} else {
|
||||
logoURI = URIForEthToken(address)
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
return await getColorFromUriPath(logoURI)
|
||||
} catch (e) {
|
||||
if (logoURI === URIForEthToken(address)) {
|
||||
return null
|
||||
}
|
||||
|
||||
try {
|
||||
logoURI = URIForEthToken(address)
|
||||
return await getColorFromUriPath(logoURI)
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
async function getColorFromUriPath(uri: string): Promise<string | null> {
|
||||
const formattedPath = uriToHttp(uri)[0]
|
||||
|
||||
return Vibrant.from(formattedPath)
|
||||
.getPalette()
|
||||
.then((palette) => {
|
||||
if (palette?.Vibrant) {
|
||||
return palette.Vibrant.hex
|
||||
}
|
||||
return null
|
||||
})
|
||||
.catch(() => null)
|
||||
const palette = await Vibrant.from(formattedPath).getPalette()
|
||||
if (!palette?.Vibrant) {
|
||||
return null
|
||||
}
|
||||
|
||||
let detectedHex = palette.Vibrant.hex
|
||||
let AAscore = hex(detectedHex, '#FFF')
|
||||
while (AAscore < 3) {
|
||||
detectedHex = shade(0.005, detectedHex)
|
||||
AAscore = hex(detectedHex, '#FFF')
|
||||
}
|
||||
|
||||
return detectedHex
|
||||
}
|
||||
|
||||
export function useColor(token?: Token) {
|
||||
|
||||
@@ -144,31 +144,28 @@ function usePoolTVL(token0: Token | undefined, token1: Token | undefined) {
|
||||
const mean = (tvl0: number | undefined, sumTvl0: number, tvl1: number | undefined, sumTvl1: number) =>
|
||||
tvl0 === undefined && tvl1 === undefined ? undefined : ((tvl0 ?? 0) + (tvl1 ?? 0)) / (sumTvl0 + sumTvl1) || 0
|
||||
|
||||
const distributions = {
|
||||
[FeeAmount.LOW]: mean(tvlByFeeTier[FeeAmount.LOW][0], sumToken0Tvl, tvlByFeeTier[FeeAmount.LOW][1], sumToken1Tvl),
|
||||
[FeeAmount.MEDIUM]: mean(
|
||||
tvlByFeeTier[FeeAmount.MEDIUM][0],
|
||||
sumToken0Tvl,
|
||||
tvlByFeeTier[FeeAmount.MEDIUM][1],
|
||||
sumToken1Tvl
|
||||
),
|
||||
[FeeAmount.HIGH]: mean(
|
||||
tvlByFeeTier[FeeAmount.HIGH][0],
|
||||
sumToken0Tvl,
|
||||
tvlByFeeTier[FeeAmount.HIGH][1],
|
||||
sumToken1Tvl
|
||||
),
|
||||
}
|
||||
|
||||
return {
|
||||
isLoading,
|
||||
isFetching,
|
||||
isUninitialized,
|
||||
isError,
|
||||
distributions: {
|
||||
[FeeAmount.LOW]: mean(
|
||||
tvlByFeeTier[FeeAmount.LOW][0],
|
||||
sumToken0Tvl,
|
||||
tvlByFeeTier[FeeAmount.LOW][1],
|
||||
sumToken1Tvl
|
||||
),
|
||||
[FeeAmount.MEDIUM]: mean(
|
||||
tvlByFeeTier[FeeAmount.MEDIUM][0],
|
||||
sumToken0Tvl,
|
||||
tvlByFeeTier[FeeAmount.MEDIUM][1],
|
||||
sumToken1Tvl
|
||||
),
|
||||
[FeeAmount.HIGH]: mean(
|
||||
tvlByFeeTier[FeeAmount.HIGH][0],
|
||||
sumToken0Tvl,
|
||||
tvlByFeeTier[FeeAmount.HIGH][1],
|
||||
sumToken1Tvl
|
||||
),
|
||||
},
|
||||
distributions,
|
||||
}
|
||||
}, [_meta, asToken0, asToken1, isLoading, isError, isFetching, isUninitialized, latestBlock])
|
||||
}
|
||||
|
||||
99
src/hooks/useMonitoringEventCallback.ts
Normal file
99
src/hooks/useMonitoringEventCallback.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { initializeApp } from 'firebase/app'
|
||||
import { getDatabase, push, ref } from 'firebase/database'
|
||||
import { useCallback } from 'react'
|
||||
import { TransactionInfo, TransactionType } from 'state/transactions/actions'
|
||||
|
||||
import { useActiveWeb3React } from './web3'
|
||||
|
||||
type PartialTransactionResponse = Pick<TransactionResponse, 'hash' | 'v' | 'r' | 's'>
|
||||
|
||||
const SUPPORTED_TRANSACTION_TYPES = [
|
||||
TransactionType.ADD_LIQUIDITY_V2_POOL,
|
||||
TransactionType.ADD_LIQUIDITY_V3_POOL,
|
||||
TransactionType.CREATE_V3_POOL,
|
||||
TransactionType.REMOVE_LIQUIDITY_V3,
|
||||
TransactionType.SWAP,
|
||||
]
|
||||
|
||||
const FIREBASE_API_KEY = process.env.REACT_APP_FIREBASE_KEY
|
||||
const firebaseEnabled = typeof FIREBASE_API_KEY !== 'undefined'
|
||||
if (firebaseEnabled) initializeFirebase()
|
||||
|
||||
function useMonitoringEventCallback() {
|
||||
const { chainId } = useActiveWeb3React()
|
||||
|
||||
return useCallback(
|
||||
async function log(
|
||||
type: string,
|
||||
{
|
||||
transactionResponse,
|
||||
walletAddress,
|
||||
}: { transactionResponse: PartialTransactionResponse; walletAddress: string | undefined }
|
||||
) {
|
||||
if (!firebaseEnabled) return
|
||||
|
||||
const db = getDatabase()
|
||||
|
||||
if (!walletAddress) {
|
||||
console.debug('Wallet address required to log monitoring events.')
|
||||
return
|
||||
}
|
||||
try {
|
||||
push(ref(db, 'trm'), {
|
||||
chainId,
|
||||
origin: location.origin,
|
||||
timestamp: Date.now(),
|
||||
tx: transactionResponse,
|
||||
type,
|
||||
walletAddress,
|
||||
})
|
||||
} catch (e) {
|
||||
console.debug('Error adding document: ', e)
|
||||
}
|
||||
},
|
||||
[chainId]
|
||||
)
|
||||
}
|
||||
|
||||
export function useTransactionMonitoringEventCallback() {
|
||||
const { account } = useActiveWeb3React()
|
||||
const log = useMonitoringEventCallback()
|
||||
|
||||
return useCallback(
|
||||
(info: TransactionInfo, transactionResponse: TransactionResponse) => {
|
||||
if (SUPPORTED_TRANSACTION_TYPES.includes(info.type)) {
|
||||
log(TransactionType[info.type], {
|
||||
transactionResponse: (({ hash, v, r, s }: PartialTransactionResponse) => ({ hash, v, r, s }))(
|
||||
transactionResponse
|
||||
),
|
||||
walletAddress: account ?? undefined,
|
||||
})
|
||||
}
|
||||
},
|
||||
[account, log]
|
||||
)
|
||||
}
|
||||
|
||||
export function useWalletConnectMonitoringEventCallback() {
|
||||
const log = useMonitoringEventCallback()
|
||||
|
||||
return useCallback(
|
||||
(walletAddress) => {
|
||||
log('WALLET_CONNECTED', { transactionResponse: { hash: '', r: '', s: '', v: -1 }, walletAddress })
|
||||
},
|
||||
[log]
|
||||
)
|
||||
}
|
||||
|
||||
function initializeFirebase() {
|
||||
initializeApp({
|
||||
apiKey: process.env.REACT_APP_FIREBASE_KEY,
|
||||
authDomain: 'interface-monitoring.firebaseapp.com',
|
||||
databaseURL: 'https://interface-monitoring-default-rtdb.firebaseio.com',
|
||||
projectId: 'interface-monitoring',
|
||||
storageBucket: 'interface-monitoring.appspot.com',
|
||||
messagingSenderId: '968187720053',
|
||||
appId: '1:968187720053:web:acedf72dce629d470be33c',
|
||||
})
|
||||
}
|
||||
@@ -1,9 +1,10 @@
|
||||
import { BigNumber } from '@ethersproject/bignumber'
|
||||
import { t } from '@lingui/macro'
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Currency, Percent, TradeType } from '@uniswap/sdk-core'
|
||||
import { Router, Trade as V2Trade } from '@uniswap/v2-sdk'
|
||||
import { SwapRouter, Trade as V3Trade } from '@uniswap/v3-sdk'
|
||||
import { useMemo } from 'react'
|
||||
import { ReactNode, useMemo } from 'react'
|
||||
|
||||
import { SWAP_ROUTER_ADDRESSES } from '../constants/addresses'
|
||||
import { TransactionType } from '../state/transactions/actions'
|
||||
@@ -191,7 +192,7 @@ function useSwapCallArguments(
|
||||
* This object seems to be undocumented by ethers.
|
||||
* @param error an error from the ethers provider
|
||||
*/
|
||||
function swapErrorToUserReadableMessage(error: any): string {
|
||||
function swapErrorToUserReadableMessage(error: any): ReactNode {
|
||||
let reason: string | undefined
|
||||
while (Boolean(error)) {
|
||||
reason = error.reason ?? error.message ?? reason
|
||||
@@ -202,30 +203,64 @@ function swapErrorToUserReadableMessage(error: any): string {
|
||||
|
||||
switch (reason) {
|
||||
case 'UniswapV2Router: EXPIRED':
|
||||
return t`The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low.`
|
||||
return (
|
||||
<Trans>
|
||||
The transaction could not be sent because the deadline has passed. Please check that your transaction deadline
|
||||
is not too low.
|
||||
</Trans>
|
||||
)
|
||||
case 'UniswapV2Router: INSUFFICIENT_OUTPUT_AMOUNT':
|
||||
case 'UniswapV2Router: EXCESSIVE_INPUT_AMOUNT':
|
||||
return t`This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance.`
|
||||
return (
|
||||
<Trans>
|
||||
This transaction will not succeed either due to price movement or fee on transfer. Try increasing your
|
||||
slippage tolerance.
|
||||
</Trans>
|
||||
)
|
||||
case 'TransferHelper: TRANSFER_FROM_FAILED':
|
||||
return t`The input token cannot be transferred. There may be an issue with the input token.`
|
||||
return <Trans>The input token cannot be transferred. There may be an issue with the input token.</Trans>
|
||||
case 'UniswapV2: TRANSFER_FAILED':
|
||||
return t`The output token cannot be transferred. There may be an issue with the output token.`
|
||||
return <Trans>The output token cannot be transferred. There may be an issue with the output token.</Trans>
|
||||
case 'UniswapV2: K':
|
||||
return t`The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer.`
|
||||
return (
|
||||
<Trans>
|
||||
The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are
|
||||
swapping incorporates custom behavior on transfer.
|
||||
</Trans>
|
||||
)
|
||||
case 'Too little received':
|
||||
case 'Too much requested':
|
||||
case 'STF':
|
||||
return t`This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3.`
|
||||
return (
|
||||
<Trans>
|
||||
This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on
|
||||
transfer and rebase tokens are incompatible with Uniswap V3.
|
||||
</Trans>
|
||||
)
|
||||
case 'TF':
|
||||
return t`The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3.`
|
||||
return (
|
||||
<Trans>
|
||||
The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and
|
||||
rebase tokens are incompatible with Uniswap V3.
|
||||
</Trans>
|
||||
)
|
||||
default:
|
||||
if (reason?.indexOf('undefined is not an object') !== -1) {
|
||||
console.error(error, reason)
|
||||
return t`An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3.`
|
||||
return (
|
||||
<Trans>
|
||||
An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If
|
||||
that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer
|
||||
and rebase tokens are incompatible with Uniswap V3.
|
||||
</Trans>
|
||||
)
|
||||
}
|
||||
return t`Unknown error${
|
||||
reason ? `: "${reason}"` : ''
|
||||
}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3.`
|
||||
return (
|
||||
<Trans>
|
||||
Unknown error{reason ? `: "${reason}"` : ''}. Try increasing your slippage tolerance. Note: fee on transfer
|
||||
and rebase tokens are incompatible with Uniswap V3.
|
||||
</Trans>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -236,7 +271,7 @@ export function useSwapCallback(
|
||||
allowedSlippage: Percent, // in bips
|
||||
recipientAddressOrName: string | null, // the ENS name or address of the recipient of the trade, or null if swap should be returned to sender
|
||||
signatureData: SignatureData | undefined | null
|
||||
): { state: SwapCallbackState; callback: null | (() => Promise<string>); error: string | null } {
|
||||
): { state: SwapCallbackState; callback: null | (() => Promise<string>); error: ReactNode | null } {
|
||||
const { account, chainId, library } = useActiveWeb3React()
|
||||
|
||||
const swapCalls = useSwapCallArguments(trade, allowedSlippage, recipientAddressOrName, signatureData)
|
||||
@@ -248,11 +283,11 @@ export function useSwapCallback(
|
||||
|
||||
return useMemo(() => {
|
||||
if (!trade || !library || !account || !chainId) {
|
||||
return { state: SwapCallbackState.INVALID, callback: null, error: 'Missing dependencies' }
|
||||
return { state: SwapCallbackState.INVALID, callback: null, error: <Trans>Missing dependencies</Trans> }
|
||||
}
|
||||
if (!recipient) {
|
||||
if (recipientAddressOrName !== null) {
|
||||
return { state: SwapCallbackState.INVALID, callback: null, error: 'Invalid recipient' }
|
||||
return { state: SwapCallbackState.INVALID, callback: null, error: <Trans>Invalid recipient</Trans> }
|
||||
} else {
|
||||
return { state: SwapCallbackState.LOADING, callback: null, error: null }
|
||||
}
|
||||
@@ -290,11 +325,11 @@ export function useSwapCallback(
|
||||
.call(tx)
|
||||
.then((result) => {
|
||||
console.debug('Unexpected successful call after failed estimate gas', call, gasError, result)
|
||||
return { call, error: new Error('Unexpected issue with estimating the gas. Please try again.') }
|
||||
return { call, error: <Trans>Unexpected issue with estimating the gas. Please try again.</Trans> }
|
||||
})
|
||||
.catch((callError) => {
|
||||
console.debug('Call threw error', call, callError)
|
||||
return { call, error: new Error(swapErrorToUserReadableMessage(callError)) }
|
||||
return { call, error: swapErrorToUserReadableMessage(callError) }
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -313,7 +348,7 @@ export function useSwapCallback(
|
||||
const firstNoErrorCall = estimatedCalls.find<SwapCallEstimate>(
|
||||
(call): call is SwapCallEstimate => !('error' in call)
|
||||
)
|
||||
if (!firstNoErrorCall) throw new Error('Unexpected error. Could not estimate gas for the swap.')
|
||||
if (!firstNoErrorCall) throw new Error(t`Unexpected error. Could not estimate gas for the swap.`)
|
||||
bestCallOption = firstNoErrorCall
|
||||
}
|
||||
|
||||
@@ -362,12 +397,12 @@ export function useSwapCallback(
|
||||
.catch((error) => {
|
||||
// if the user rejected the tx, pass this along
|
||||
if (error?.code === 4001) {
|
||||
throw new Error('Transaction rejected.')
|
||||
throw new Error(t`Transaction rejected.`)
|
||||
} else {
|
||||
// otherwise, the error was unexpected and we need to convey that
|
||||
console.error(`Swap failed`, error, address, calldata, value)
|
||||
|
||||
throw new Error(`Swap failed: ${swapErrorToUserReadableMessage(error)}`)
|
||||
throw new Error(t`Swap failed: ${swapErrorToUserReadableMessage(error)}`)
|
||||
}
|
||||
})
|
||||
},
|
||||
@@ -1,11 +1,11 @@
|
||||
import 'inter-ui'
|
||||
import '@reach/dialog/styles.css'
|
||||
import 'inter-ui'
|
||||
import 'polyfills'
|
||||
import 'components/analytics'
|
||||
|
||||
import { createWeb3ReactRoot, Web3ReactProvider } from '@web3-react/core'
|
||||
import { StrictMode } from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import ReactGA from 'react-ga'
|
||||
import { Provider } from 'react-redux'
|
||||
import { HashRouter } from 'react-router-dom'
|
||||
|
||||
@@ -24,7 +24,6 @@ import UserUpdater from './state/user/updater'
|
||||
import ThemeProvider, { ThemedGlobalStyle } from './theme'
|
||||
import RadialGradientByChainUpdater from './theme/RadialGradientByChainUpdater'
|
||||
import getLibrary from './utils/getLibrary'
|
||||
import { isMobile } from './utils/userAgent'
|
||||
|
||||
const Web3ProviderNetwork = createWeb3ReactRoot(NetworkContextName)
|
||||
|
||||
@@ -32,26 +31,6 @@ if (!!window.ethereum) {
|
||||
window.ethereum.autoRefreshOnNetworkChange = false
|
||||
}
|
||||
|
||||
const GOOGLE_ANALYTICS_ID: string | undefined = process.env.REACT_APP_GOOGLE_ANALYTICS_ID
|
||||
if (typeof GOOGLE_ANALYTICS_ID === 'string') {
|
||||
ReactGA.initialize(GOOGLE_ANALYTICS_ID, {
|
||||
gaOptions: {
|
||||
storage: 'none',
|
||||
storeGac: false,
|
||||
},
|
||||
})
|
||||
ReactGA.set({
|
||||
anonymizeIp: true,
|
||||
customBrowserType: !isMobile
|
||||
? 'desktop'
|
||||
: 'web3' in window || 'ethereum' in window
|
||||
? 'mobileWeb3'
|
||||
: 'mobileRegular',
|
||||
})
|
||||
} else {
|
||||
ReactGA.initialize('test', { testMode: true, debug: true })
|
||||
}
|
||||
|
||||
function Updaters() {
|
||||
return (
|
||||
<>
|
||||
|
||||
7
src/lib/index.test.tsx
Normal file
7
src/lib/index.test.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import './'
|
||||
|
||||
describe('lib', () => {
|
||||
it('exists', () => {
|
||||
expect(true).toBeTruthy()
|
||||
})
|
||||
})
|
||||
1
src/lib/index.tsx
Normal file
1
src/lib/index.tsx
Normal file
@@ -0,0 +1 @@
|
||||
export {}
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: af_ZA\n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$ -"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Maksimum)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(wysig)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Verwyder stuur"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Verwyder ontvanger"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Toegelaatde gly"
|
||||
msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "'N Fout het voorgekom tydens die uitvoering van hierdie ruil. U moet dalk u glyverdraagsaamheid verhoog. As dit nie werk nie, kan daar 'n onversoenbaarheid wees met die teken wat u verhandel. Opmerking: fooi vir oordrag en herbasis-tokens is nie versoenbaar met Uniswap V3 nie."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Outo -router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Beskikbaar vir deposito: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Terug"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Deur hierdie lys by te voeg, vertrou u implisiet dat die data korrek is. Almal kan 'n lys opstel, insluitend die skep van vals weergawes van bestaande lyste en lyste wat beweer dat hulle projekte verteenwoordig wat nie een het nie."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Deur 'n beursie aan te sluit, stem u in tot die <0> diensvoorwaardes van Uniswap Labs</0> en erken dat u die <1> vrywaring van Uniswap-protokol gelees en verstaan het</1> ."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Deur 'n beursie te koppel, stem jy in tot Uniswap Labs se <0>Diensbepalings</0> en erken dat jy die Uniswap <1>Protokol Disclaimer</1>gelees en verstaan het."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Bevestig hierdie transaksie in u beursie"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Bevestig transaksie in beursie"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Verbind Wallet"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Verbind 'n beursie"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Koppel aan 'n beursie"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Koppel aan 'n beursie om swembaddens te vind"
|
||||
@@ -719,11 +716,11 @@ msgstr "Wysig"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Doeltreffendheidsvergelyking"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Voer 'n persentasie in"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Voer 'n ontvanger in"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Voer 'n adres in om 'n UNI-eis te aktiveer. As die adres 'n UNI kan eis,
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Voer 'n bedrag in"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Steek weg"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Hoë prysimpak"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Hoe hierdie toepassing API's gebruik"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "ek verstaan"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "As u 'n teken uit hierdie lys koop, kan u dit dalk nie terug verkoop nie."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Installeer Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Onvoldoende likiditeit vir hierdie handel."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Onvoldoende {0} balans"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Onvoldoende {0} balans"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Interface-instellings"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Ongeldige paar"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Ongeldige paar"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Ongeldige paar."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ongeldige prysinsette"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ongeldige prysinsette"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Ongeldige reeks gekies. Die minimum prys moet laer wees as die maksimum prys."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Ongeldige ontvanger"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Leer meer"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Kom meer te wete oor die voorsiening van likiditeit"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Leer meer"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Reg en privaatheid"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Ligte tema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum ontvang"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Ontbrekings ontbreek"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Geen V2-likiditeit gevind nie."
|
||||
msgid "No active pools"
|
||||
msgstr "Geen aktiewe poele nie"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Geen data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Geen beskrywing."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Voorgestelde aksie"
|
||||
msgid "Proposer"
|
||||
msgstr "Voorsteller"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokol vrywaring"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "In die ry staan"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Verwyder lys"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Verwyder {0} {1} en {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Verwyder {0} {1} en{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Kies 'n netwerk"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Kies 'n teken"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Voorsiening"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Verskaf {0} {1} en {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Gee {0} {1} en{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Ruil in elk geval"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Ruil presies <0/> vir <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Ruil misluk: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Ruil {0} {1} vir {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Dankie dat u deel is van die Uniswap-gemeenskap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Die persentasiegeld wat u verdien."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Die ruil-invariant x * y = k is nie bevredig deur die ruil nie. Dit beteken gewoonlik dat een van die tekens wat u omruil, persoonlike gedrag by oordrag bevat."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Die toepassing haal blokkettingdata van The Graph se gasheerdiens af."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Die toepassing haal data in die ketting en bou kontrakoproepe met 'n Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Die toepassing haal die optimale handelsroete vanaf 'n Uniswap Labs-bediener."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Die toepassing teken anonieme gebruikstatistieke aan om mettertyd te verbeter."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Die toepassing versamel jou beursie-adres veilig en deel dit met TRM Labs Inc. vir risiko- en voldoeningsredes."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Die invoer-teken kan nie oorgedra word nie. Die invoer-teken kan 'n probleem hê."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Die invoer-teken kan nie oorgedra word nie. Die invoer-teken kan 'n prob
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Die markprys is buite u gespesifiseerde prysklas. Slegs deposito vir enkelbates."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Die uitvoer-teken kan nie oorgedra word nie. Daar kan 'n probleem wees met die uitvoer-teken."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Die uitvoer-teken kan nie oorgedra word nie. Daar is 'n probleem met die uitvoer-teken. Opmerking: fooi vir oordrag en herbasis-tekens is nie versoenbaar met Uniswap V3 nie."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Die prys van hierdie poel is binne u gekose reeks. U posisie verdien tan
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Die verhouding tekens wat u byvoeg bepaal die prys van hierdie poel."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Die transaksie kon nie gestuur word nie omdat die sperdatum verstryk het. Kyk dat u sperdatum nie te laag is nie."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Daar is geen likiditeitsdata nie."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Hierdie tekens word gewoonlik gekoppel aan ander tekens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Hierdie toepassing gebruik die volgende derdeparty-API's:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Hierdie poel moet geïnisialiseer word voordat u likiditeit kan byvoeg. Kies 'n aanvangsprys vir die swembad om te initialiseer. Voer dan u likiditeitspryse en depositobedrag in. Gasfooie sal hoër wees as gewoonlik as gevolg van die initialiseringstransaksie."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Hierdie roete optimaliseer u prys deur middel van gesplete roetes, veelv
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Hierdie teken verskyn nie op die aktiewe tekenlys(te) nie. Maak seker dat dit die teken is wat u wil verhandel."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Hierdie teken word nie in die Uniswap Labs-toepassing ondersteun nie"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Hierdie instrument sal u {0} likiditeit veilig na V3 migreer. Die proses is heeltemal vertroulik danksy die"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Hierdie transaksie sal weens die prysbeweging nie slaag nie. Probeer u glyverdraagsaamheid verhoog. Opmerking: fooi vir oordrag en herbasis-tekens is nie versoenbaar met Uniswap V3 nie."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Hierdie transaksie sal ook nie slaag nie as gevolg van prysbeweging of fooi by oordrag. Probeer u glyverdraagsaamheid verhoog."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Aan (ten minste)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "{0}te begin verhandel, moet u eers u bates van L1 na L2 oorbrug. Behandel dit as 'n beta -weergawe en leer meer oor die risiko's voordat u {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token word nie ondersteun nie"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tekens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaksie voltooi in"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Transaksiesperdatum"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaksie verwerp."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Oordragtoken"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Onopgeëiste:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Onbepaald"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Onverwagte fout. Kon nie gas vir die ruil skat nie."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Onverwagte probleem met die skatting van die gas. Probeer asseblief weer."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Onttrek bestuur"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs se diensbepalings"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap beskikbaar in: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Onttrek migrasie kontrak↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Ontruil op {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Onbekende bron"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Onbekende fout{0}. Probeer u glyverdraagsaamheid verhoog. Opmerking: fooi vir oordrag en herbasis-tekens is nie versoenbaar met Uniswap V3 nie."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Die stemming het geeïnding {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Die stemming eindig ongeveer {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Stemming begin ongeveer {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Wag op bevestiging"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minute"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "via {0} tekenlys"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ar_SA\n"
|
||||
"Language-Team: Arabic\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(الحد الأقصى)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(تعديل)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- إزالة الإرسال"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- إزالة المستلم"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "الانزلاق السعري المسموح به"
|
||||
msgid "Amount"
|
||||
msgstr "المبلغ"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "حدث خطأ أثناء محاولة تنفيذ هذا التبادل. قد تحتاج إلى زيادة تحملك للانزلاق. إذا لم يفلح ذلك ، فقد يكون هناك عدم توافق مع الرمز الذي تتداوله. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "جهاز التوجيه التلقائي"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "متاح للإيداع: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "الرجوع"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "الرصيد:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "بإضافة هذه القائمة فإنك تثق ضمنًا بأن البيانات صحيحة. ويمكن لأي شخص أن ينشئ قائمة، بما في ذلك إنشاء صيغ مزيفة من القوائم القائمة والقوائم التي تزعم أنها تمثل مشاريع لا تملك قائمة."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "عند توصيل محفظة، فإنك توافق على <0>شروط خدمة</0> Uniswap Labs، وتقر بأنك قرأت وفهمت <1>إخلاء مسؤولية بروتوكول Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "من خلال ربط المحفظة ، فإنك توافق على شروط الخدمة</0> <0>وتقر بأنك قد قرأت وفهمت إخلاء مسؤولية بروتوكول <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "تأكيد هذه المعاملة في محفظتك"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "تأكيد المعاملة في المحفظة"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "توصيل المحفظة"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "توصيل محفظة"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "توصيل بالمحفظة"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "وصّل بمحفظة للعثور على المجموعات"
|
||||
@@ -719,11 +716,11 @@ msgstr "يحرر"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "مقارنة الكفاءة"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "أدخل نسبة مئوية"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "أدخل المستلم"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "أدخل عنوانًا لتشغيل مطالبة UNI. إذا كان ا
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "أدخل مبلغ"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "يخفي"
|
||||
msgid "High Price Impact"
|
||||
msgstr "تأثير ارتفاع السعر"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "كيف يستخدم هذا التطبيق واجهات برمجة التطبيقات"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "أنا أفهم"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "إذا قمت بشراء الرمز المميز من هذه القائمة، قد لا تتمكن من بيعه مرة أخرى."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "تثبيت Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "السيولة غير كافية لهذه التجارة."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "رصيد {0} غير كاف"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "رصيد {0} غير كاف"
|
||||
msgid "Interface Settings"
|
||||
msgstr "إعدادات الواجهة"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "زوج غير صالح"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "زوج غير صالح"
|
||||
msgid "Invalid pair."
|
||||
msgstr "زوج غير صالح."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "إدخال سعر غير صالح"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "إدخال سعر غير صالح"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "النطاق المحدد غير صالح. يجب أن يكون الحد الأدنى للسعر أقل من الحد الأقصى للسعر."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "مستلم غير صالح"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "يتعلم أكثر"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "تعرف على توفير السيولة"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "يتعلم أكثر"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "الشؤون القانونية والخصوصية"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "مظهر خفيف"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "دقيقة:"
|
||||
msgid "Minimum received"
|
||||
msgstr "تلقى الحد الأدنى"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "التبعيات المفقودة"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "المزيد"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "لم يتم العثور على سيولة V2."
|
||||
msgid "No active pools"
|
||||
msgstr "لا توجد محموعات نشطة"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "لايوجد بيانات"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "بدون وصف."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "الإجراء المقترح"
|
||||
msgid "Proposer"
|
||||
msgstr "المقترح"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "إخلاء مسؤولية البروتوكول"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "في قائمة الانتظار"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "إزالة القائمة"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "إزالة {0} {1} و {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "إزالة {0} {1} و{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "حدد شبكة"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "حدد الرمز"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "الإمداد"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "إمداد {0} {1} و {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "توريد {0} {1} و{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "مبادلة على أي حال"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "استبدل بالضبط <0 /> بـ <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "فشل المبادلة: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "مبادلة {0} {1} مقابل {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "نشكرك على كونك جزءًا من مجتمع Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "النسبة التي ستكسبها في الرسوم."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "الثابت Uniswap x*y=k لم يكن راضيًا عن المبادلة. يعني هذا عادةً أن أحد الرموز التي تقوم بتبادلها يتضمن سلوكًا مخصصًا عند النقل."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "يجلب التطبيق بيانات blockchain من خدمة The Graph المستضافة."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "يجلب التطبيق البيانات على السلسلة وينشئ مكالمات تعاقدية باستخدام واجهة برمجة تطبيقات Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "يجلب التطبيق المسار التجاري الأمثل من خادم Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "يسجل التطبيق إحصاءات الاستخدام مجهولة المصدر من أجل التحسين بمرور الوقت."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "يجمع التطبيق عنوان محفظتك بأمان ويشاركه مع TRM Labs Inc. لأسباب تتعلق بالمخاطر والامتثال."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "لا يمكن نقل رمز الإدخال. قد تكون هناك مشكلة في رمز الإدخال."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "لا يمكن نقل رمز الإدخال. قد تكون هناك مش
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "سعر السوق خارج نطاق السعر المحدد الخاص بك. إيداع أصل واحد فقط."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "لا يمكن نقل رمز الإخراج. قد تكون هناك مشكلة في رمز الإخراج."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "لا يمكن نقل رمز الإخراج. قد تكون هناك مشكلة في رمز الإخراج. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "سعر هذه المجموعة ضمن النطاق المحدد الخا
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "نسبة الرموز التي تضيفها سوف تحدد سعر هذه المجموعة."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "تعذر إرسال المعاملة لانتهاء الموعد المحدد. يرجى التحقق من أن الموعد النهائي لمعاملاتك ليس منخفضًا جدًا."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "لا توجد بيانات سيولة."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "هذه الرموز عادة ما تقترن مع رموز أخرى."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "يستخدم هذا التطبيق واجهات برمجة التطبيقات الخارجية التالية:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "يجب تهيئة هذا المستودع قبل أن تتمكن من إضافة السيولة. للتهيئة ، حدد سعر البداية للمجمع. ثم أدخل نطاق سعر السيولة ومبلغ الإيداع. ستكون رسوم الغاز أعلى من المعتاد بسبب معاملة التهيئة."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "يعمل هذا المسار على تحسين سعرك من خلال ا
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "لا يظهر هذا الرمز في قائمة (قوائم) الرموز النشطة. تأكد من أن هذا هو الرمز الذي تريد تداوله."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "هذا الرمز المميز غير مدعوم في تطبيق Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "هذه الأداة سوف تنقل سيولتك {0} إلى V3. العملية غير موثوق بها تمامًا بسبب"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "لن تنجح هذه الصفقة بسبب حركة السعر. حاول زيادة تحملك للانزلاق. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "لن تنجح هذه الصفقة إما بسبب حركة السعر أو بسبب رسوم التحويل. حاول زيادة تحملك للانزلاق."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "إلى (على الأقل)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "لبدء التداول على {0}، قم أولاً بتوصيل أصولك من L1 إلى L2. يرجى التعامل مع هذا كإصدار تجريبي والتعرف على المخاطر قبل استخدام {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "رمز غير مدعوم"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "الرموز"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "اكتملت المعاملة في"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "الموعد النهائي للمعاملة"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "الصفقة مرفوضة."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "رمز التحويل"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "غير المطالب به:"
|
||||
msgid "Undetermined"
|
||||
msgstr "غير محدد"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "خطأ غير متوقع. لا يمكن تقدير الغاز للمبادلة."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "مشكلة غير متوقعة في تقدير الغاز. حاول مرة اخرى."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "إدارة Uniswitp"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "شروط خدمة Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap متاح في: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "عقد ترحيل Uniswap ↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap على {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "مصدر مجهول"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "خطأ غير معروف{0}. حاول زيادة تحملك للانزلاق. ملاحظة: رسوم النقل وإعادة الرموز المميزة غير متوافقة مع Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "انتهى التصويت {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "التصويت ينتهي تقريبًا {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "يبدأ التصويت تقريبًا {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "في انتظار التأكيد"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "دقائق"
|
||||
msgid "via {0}"
|
||||
msgstr "عبر {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "عبر قائمة الرموز {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ca_ES\n"
|
||||
"Language-Team: Catalan\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Màxim)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(edita)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Elimina l'enviament"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Elimina el destinatari"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Lliscament permès"
|
||||
msgid "Amount"
|
||||
msgstr "Import"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "S'ha produït un error en intentar executar aquest intercanvi. És possible que hàgiu d'augmentar la tolerància a la relliscada. Si això no funciona, és possible que hi hagi una incompatibilitat amb el testimoni que esteu negociant. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Enrutador automàtic"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponible per ingressar: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Torna"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "En afegir aquesta llista, confieu implícitament que les dades són correctes. Qualsevol persona pot crear una llista, inclosa la creació de versions falses de llistes existents i llistes que afirmen representar projectes que no en tenen cap."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "En connectar una cartera, accepteu les Condicions del servei <0> d'Uniswap Labs</0> i reconegueu que heu llegit i entès la renúncia de responsabilitat del protocol <U> Uniswap</1> ."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "En connectar una cartera, acceptes les Condicions del servei <0></0> i reconeixes que has llegit i entén l'exempció <1>responsabilitat del protocol d'</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Confirmeu aquesta transacció a la vostra cartera"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Confirmeu la transacció a la cartera"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Connect Wallet"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Connecteu una cartera"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Connecteu-vos a una cartera"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Connecteu-vos a una cartera per trobar piscines"
|
||||
@@ -719,11 +716,11 @@ msgstr "Edita"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Comparació de l’eficiència"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Introduïu un percentatge"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Introduïu un destinatari"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Introduïu una adreça per activar una reclamació UNI. Si l'adreça té
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Introduïu un import"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Amaga"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Alt impacte en els preus"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Com aquesta aplicació utilitza les API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Entenc"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Si adquiriu un testimoni d’aquesta llista, és possible que no el pugueu tornar a vendre."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Instal·leu Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Liquiditat insuficient per a aquest comerç."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Saldo {0} insuficient"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Saldo {0} insuficient"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Configuració de la interfície"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Parella no vàlida"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Parella no vàlida"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Parella no vàlida."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Entrada de preu no vàlida"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Entrada de preu no vàlida"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "L'interval no és vàlid. El preu mínim ha de ser inferior al preu màxim."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Destinatari no vàlid"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Aprèn més"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Obteniu informació sobre com proporcionar liquiditat"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Aprèn més"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Legal i Privacitat"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema de la llum"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínim rebut"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Falten dependències"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Més"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "No s'ha trobat cap liquiditat V2."
|
||||
msgid "No active pools"
|
||||
msgstr "No hi ha cap grup actiu"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "No hi ha informació"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Sense descripció."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Acció proposada"
|
||||
msgid "Proposer"
|
||||
msgstr "Proponent"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Exempció de responsabilitat del protocol"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "En cua"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Elimina la llista"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Eliminació de {0} {1} i {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Eliminació de {0} {1} i{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Seleccioneu una xarxa"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Seleccioneu una fitxa"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Subministrament"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Subministrant {0} {1} i {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Subministrant {0} {1} i{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Intercanviar de totes maneres"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Canvieu exactament <0 /> per <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Ha fallat l'intercanvi: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Intercanvi de {0} {1} per {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Gràcies per formar part de la comunitat Uniswap <0 />"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "El% que obtindreu en honoraris."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "L'invariant Uniswap x * y = k no va quedar satisfet per l'intercanvi. Normalment, això significa que un de les fitxes que canvieu incorpora un comportament personalitzat en la transferència."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "L'aplicació obté dades de blockchain del servei allotjat de The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "L'aplicació obté dades en cadena i crea trucades de contracte amb una API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "L'aplicació obté la ruta comercial òptima des d'un servidor d'Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "L'aplicació registra estadístiques d'ús anònimes per tal de millorar amb el temps."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "L'aplicació recopila de manera segura l'adreça de la cartera i la comparteix amb TRM Labs Inc. per motius de risc i compliment."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "La fitxa d’entrada no es pot transferir. Pot haver-hi un problema amb la fitxa d’entrada."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "La fitxa d’entrada no es pot transferir. Pot haver-hi un problema amb
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "El preu de mercat està fora de l’interval de preus especificat. Només dipòsit d'un actiu únic."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "La fitxa de sortida no es pot transferir. Pot haver-hi un problema amb la fitxa de sortida."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "El testimoni de sortida no es pot transferir. Pot haver-hi un problema amb el testimoni de sortida. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "El preu d'aquest grup està dins de l'interval seleccionat. Actualment,
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "La proporció de fitxes que afegiu fixarà el preu d’aquest grup."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "No s'ha pogut enviar la transacció perquè s'ha acabat el termini. Comproveu que el termini de transacció no sigui massa baix."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "No hi ha dades de liquiditat."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Aquestes fitxes solen aparellar-se amb altres fitxes."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Aquesta aplicació utilitza les següents API de tercers:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Aquest grup s’ha d’inicialitzar abans d’afegir liquiditat. Per inicialitzar, seleccioneu un preu inicial per a la piscina. A continuació, introduïu l'interval de preus de liquiditat i l'import del dipòsit. Les comissions de gas seran superiors a l'habitual a causa de la transacció d'inicialització."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Aquesta ruta optimitza el vostre preu tenint en compte les rutes dividid
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Aquest testimoni no apareix a la llista de fitxes actives. Assegureu-vos que aquest sigui el testimoni que voleu canviar."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Aquest testimoni no és compatible amb l'aplicació Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Aquesta eina migrarà de manera segura la vostra {0} a V3. El procés és completament desconfiat gràcies a"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Aquesta transacció no tindrà èxit a causa del moviment dels preus. Proveu d'augmentar la tolerància al lliscament. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Aquesta transacció no tindrà èxit a causa del moviment de preus o de la comissió de transferència. Proveu d'augmentar la tolerància al lliscament."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "A (com a mínim)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Per començar a cotitzar a {0}, primer creeu els vostres actius de L1 a L2. Tracteu-ho com una versió beta i apreneu sobre els riscos abans d’utilitzar {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "El testimoni no és compatible"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Fitxes"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transacció finalitzada el"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Termini de transacció"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "S'ha rebutjat la transacció."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Transferir el testimoni"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "No reclamat:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Sense determinar"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Error inesperat. No s'ha pogut estimar el gas per a l'intercanvi."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problema inesperat en estimar el gas. Siusplau torna-ho a provar."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Governança Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Condicions del servei d'Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponible a: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Contracte de migració Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap a {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Font desconeguda"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Error desconegut{0}. Proveu d'augmentar la tolerància al lliscament. Nota: els tokens de transferència i rebase no són compatibles amb Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "La votació ha finalitzat {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "La votació finalitza aproximadament {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "La votació comença aproximadament a {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Esperant la confirmació"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuts"
|
||||
msgid "via {0}"
|
||||
msgstr "mitjançant {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "mitjançant la llista de tokens {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: cs_CZ\n"
|
||||
"Language-Team: Czech\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(upravit)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Odebrat odeslání"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Odebrat příjemce"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Povolený skluz"
|
||||
msgid "Amount"
|
||||
msgstr "Částka"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Při pokusu o provedení tohoto swapu došlo k chybě. Možná budete muset zvýšit toleranci skluzu. Pokud to nefunguje, může dojít k nekompatibilitě s tokenem, s nímž obchodujete. Poznámka: Poplatky za tokeny za převody a rebase nejsou kompatibilní s Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automatický router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "K dispozici k uložení: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Zpět"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Zůstatek:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Přidáním tohoto seznamu implicitně vyjadřujete důvěru v to, že data jsou správná. Seznam může vytvořit kdokoli, včetně vytváření falešných verzí existujících seznamů a seznamů, které prohlašují, že reprezentují projekty, které žádný seznam nemají."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Připojením peněženky souhlasíte s <0>Podmínkami služeb</0> společnosti Uniswap Labs a potvrzujete, že jste si přečetli <1>Odřeknutí odpovědnosti za protokol Uniswap</1> a porozuměli jste mu."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Připojením peněženky souhlasíte s <0>podmínkami služby</0> a potvrzujete, že jste si přečetli a rozumíte prohlášení o vyloučení odpovědnosti za protokol <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Potvrďte tuto transakci ve své peněžence"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Potvrďte transakci v peněžence"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Připojit peněženku"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Připojit peněženku"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Připojit k peněžence"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Chcete-li vyhledat fondy, připojte se k peněžence"
|
||||
@@ -719,11 +716,11 @@ msgstr "Upravit"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Porovnání efektivity"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Zadejte procento"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Zadejte příjemce"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Chcete-li spustit nárokování UNI, zadejte adresu. Jestliže bude mít
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Zadejte částku"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Skrýt"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Vysoký dopad na cenu"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Jak tato aplikace používá rozhraní API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Rozumím"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Jestliže zakoupíte žeton z tohoto seznamu, možná ho nebudete moci zase prodat."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Nainstalovat Metamasku"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Nedostatek likvidity pro tento obchod."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Nedostatečný zůstatek {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Nedostatečný zůstatek {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Nastavení rozhraní"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Neplatný pár"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Neplatný pár"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Neplatný pár."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Neplatné zadání ceny"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Neplatné zadání ceny"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Vybrán neplatný rozsah. Minimální cena musí být nižší než maximální cena."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Neplatný příjemce"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Další informace"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Zjistěte více o poskytování likvidity"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Zjistěte více"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Právní otázky a soukromí"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Lehké téma"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Minimum:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum přijato"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Chybějící závislosti"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Více"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Nebyla nalezena likvidita V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Žádné aktivní fondy"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Žádná data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Bez popisu."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Navrhovaná akce"
|
||||
msgid "Proposer"
|
||||
msgstr "Navrhovatel"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Zřeknutí se odpovědnosti za protokol"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Ve frontě"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Odstranit seznam"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Odstraňování {0} {1} a {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Odebírání {0} {1} a{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Vyberte síť"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Vyberte žeton"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Zásoba"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Dodávání {0} {1} a {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Zásobování {0} {1} a{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Přesto prohodit"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Vyměňte přesně <0/> za <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Výměna se nezdařila: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Výměna {0} {1} za {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Děkujeme, že jste součástí komunity Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Procento, které získáte na poplatcích."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Konstanta Uniswap x*y=k nebyla swapem splněna. To obvykle znamená, že jeden z žetonů, které prohazujete, zahrnuje vlastní chování při přenosu."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Aplikace načítá data blockchainu z hostované služby The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Aplikace načítá data v řetězci a vytváří smluvní volání pomocí Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Aplikace načte optimální obchodní cestu ze serveru Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Aplikace zaznamenává anonymizované statistiky používání, aby se postupem času zlepšovala."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Aplikace bezpečně shromažďuje adresu vaší peněženky a sdílí ji s TRM Labs Inc. z důvodu rizika a dodržování předpisů."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Vstupní žeton nelze přenést. Možná je se vstupním žetonem nějaký problém."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Vstupní žeton nelze přenést. Možná je se vstupním žetonem nějak
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Tržní cena je mimo Vámi stanovené cenové rozmezí. Pouze vklad na jedno aktivum."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Výstupní žeton nelze přenést. Možná je s výstupním žetonem nějaký problém."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Výstupní žeton nelze přenést. Může dojít k problému s výstupním žetonem. Poznámka: Poplatky za žetony za převody a rebase nejsou kompatibilní s Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Cena tohoto fondu je ve Vámi vybraném rozsahu. Vaše pozice nyní vyn
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Cenu tohoto fondu stanoví poměr žetonů, které přidáte."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Transakci nebylo možno odeslat, protože uplynula lhůta. Zkontrolujte, zda není Vaše lhůta pro transakce příliš krátká."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Neexistují žádné údaje o likviditě."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Tyto žetony bývají spárovány s jinými žetony."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Tato aplikace používá následující rozhraní API třetích stran:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Tento fond musí být inicializován, než budete moci přidat likviditu. Chcete-li inicializovat, vyberte počáteční cenu fondu. Poté zadejte rozsah cen likvidity a částku vkladu. Poplatky za plyn budou kvůli inicializační transakci vyšší než obvykle."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Tato trasa optimalizuje vaši cenu zvážením dělených tras, vícená
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Tento žeton není na seznamech aktivních žetonů. Ujistěte se, že toto je ten žeton, který chcete obchodovat."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Tento token není podporován v aplikaci Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Tento nástroj bezpečně migruje vaši {0} likviditu do V3. Proces je zcela bez důvěry, a to díky"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Tato transakce nebude úspěšná z důvodu cenového pohybu. Zkuste zvýšit toleranci skluzu. Poznámka: Poplatky za žetony za převody a rebase nejsou kompatibilní s Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Tato transakce nebude úspěšná buďto z důvodu pohybu ceny, nebo z důvodu poplatku za převod. Zkuste zvýšit svou toleranci skluzu."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Do (alespoň)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Chcete -li začít obchodovat na {0}, nejprve přemostěte svá aktiva z L1 na L2. Berte to prosím jako beta verzi a seznamte se s riziky před použitím {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token není podporován"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Žetony"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transakce dokončena v"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Lhůta pro transakce"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transakce zamítnuta."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Přenosový token"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Nenárokované:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Neurčeno"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Neočekávaná chyba. Plyn pro výměnu se nepodařilo odhadnout."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Neočekávaný problém s odhadem plynu. Prosím zkuste to znovu."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Správa Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Podmínky služby Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap k dispozici za: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Migrační kontrakt Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap na {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Neznámý zdroj"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Neznámá chyba{0}. Zkuste zvýšit toleranci skluzu. Poznámka: Poplatky za žetony za převody a rebase nejsou kompatibilní s Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Hlasování skončilo {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Hlasování končí přibližně v {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Hlasování začíná přibližně od {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Čeká se na potvrzení"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuty"
|
||||
msgid "via {0}"
|
||||
msgstr "přes {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "prostřednictvím seznamu žetonů {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: da_DK\n"
|
||||
"Language-Team: Danish\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Maks)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(rediger)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Fjern afsendelse"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Fjern modtager"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Tilladt glidning"
|
||||
msgid "Amount"
|
||||
msgstr "Beløb"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Der opstod en fejl under forsøg på at udføre denne swap. Det kan være nødvendigt at øge din glidningstolerance. Hvis det ikke virker, kan der være en uforenelighed med det token, du handler. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Auto router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Tilgængelig for depositum: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Tilbage"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Ved at tilføje denne liste har du implicit tillid til, at dataene er korrekte. Alle kan oprette en liste, herunder skabe falske versioner af eksisterende lister og lister, der hævder at repræsentere projekter, der ikke har en."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Ved at forbinde en tegnebog accepterer du Uniswap Labs’ <0>Servicevilkår </0> og anerkender, at du har læst og forstået <1>Uniswap protokolansvarsfraskrivelsen</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ved at tilslutte en tegnebog accepterer du Uniswap Labs' <0>Servicevilkår</0> og anerkender, at du har læst og forstået Uniswap <1>Protocol Disclaimer</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Bekræft denne transaktion i din tegnebog"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Bekræft transaktion i tegnebogen"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Forbind tegnebog"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Forbind en tegnebog"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Opret forbindelse til en tegnebog"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Opret forbindelse til en tegnebog for at finde puljer"
|
||||
@@ -719,11 +716,11 @@ msgstr "Redigere"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Effektivitetssammenligning"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Indtast en procent"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Indtast en modtager"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Indtast en adresse for at udløse et UNI-krav. Hvis adressen har nogen U
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Indtast et beløb"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Skjule"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Høj prispåvirkning"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Hvordan denne app bruger API'er"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Jeg har forstået"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Hvis du køber et token fra denne liste, kan du muligvis ikke sælge det tilbage."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Installer Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Utilstrækkelig likviditet til denne handel."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Utilstrækkelig {0} saldo"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Utilstrækkelig {0} saldo"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Grænsefladeindstillinger"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Ugyldigt par"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Ugyldigt par"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Ugyldigt par."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ugyldig prisinput"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ugyldig prisinput"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Ugyldigt interval valgt. Minimumspris skal være lavere end den maksimale pris."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Ugyldig modtager"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Lær mere"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Lær om levering af likviditet"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Lær mere"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Juridisk og privatliv"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Let tema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum modtaget"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Manglende afhængigheder"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mere"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Ingen V2-likviditet fundet."
|
||||
msgid "No active pools"
|
||||
msgstr "Ingen aktive puljer"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Ingen data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Ingen beskrivelse."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Foreslået handling"
|
||||
msgid "Proposer"
|
||||
msgstr "Forslagsstiller"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokol Ansvarsfraskrivelse"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "I kø"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Fjern liste"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Fjerner {0} {1} og {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Fjernelse af {0} {1} og{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Vælg et netværk"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Vælg et token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Forsyning"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Forsyning {0} {1} og {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Leverer {0} {1} og{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Ombyt alligevel"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Skift nøjagtigt <0/> for <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Skift mislykkedes: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Byt {0} {1} til {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Tak, fordi du er en del af Uniswap-gruppen <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Den%, du tjener i gebyrer."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap-invarianten x * y = k var ikke tilfreds med byttet. Dette betyder normalt, at et af de tokens, du bytter, indeholder brugerdefineret adfærd ved overførsel."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Appen henter blockchain-data fra The Graphs hostede tjeneste."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Appen henter on-chain data og konstruerer kontraktopkald med en Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Appen henter den optimale handelsrute fra en Uniswap Labs-server."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Appen logger anonymiseret brugsstatistik for at forbedre sig over tid."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Appen indsamler sikkert din tegnebogsadresse og deler den med TRM Labs Inc. af risiko- og overholdelsesårsager."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Input-token kan ikke overføres. Der kan være et problem med input-token."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Input-token kan ikke overføres. Der kan være et problem med input-toke
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Markedsprisen ligger uden for din angivne prisklasse. Kun enkeltindskud."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Output-token kan ikke overføres. Der kan være et problem med output-token."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Output-token kan ikke overføres. Der kan være et problem med output-token. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Prisen på denne pulje ligger inden for dit valgte interval. Din positio
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Forholdet mellem tokens du tilføjer, vil sætte prisen på denne pulje."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Transaktionen kunne ikke sendes, fordi fristen er udløbet. Kontroller, at din transaktionsfrist ikke er for lav."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Der er ingen likviditetsdata."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Disse tokens er almindeligt parret med andre tokens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Denne app bruger følgende tredjeparts API'er:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Denne pulje skal initialiseres, før du kan tilføje likviditet. For at initialisere skal du vælge en startpris for puljen. Indtast derefter dit likviditetsprisklasse og indbetalingsbeløb. Gasafgifter vil være højere end normalt på grund af initialiseringstransaktionen."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Denne rute optimerer din pris ved at overveje opdelte ruter, flere humle
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Dette token vises ikke på den/de aktive tokenlister. Sørg for, at dette er det token, du vil handle."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dette token understøttes ikke i Uniswap Labs-appen"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Dette værktøj vil sikkert overføre din {0}-likviditet til V3. Processen er helt troværdig takket være"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Denne transaktion lykkes ikke på grund af prisbevægelse. Prøv at øge din glidningstolerance. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Denne transaktion lykkes ikke på grund af prisbevægelse eller gebyr ved overførsel. Prøv at øge din glidningstolerance."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Til (mindst)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "For at starte handel med {0}skal du først bygge dine aktiver fra L1 til L2. Behandl dette som en betaversion, og lær om risiciene, før du bruger {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token understøttes ikke"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaktion gennemført i"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Frist for transaktion"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaktionen blev afvist."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Overførselstoken"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Der ikke er gjort krav på:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Ubestemt"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Uforventet fejl. Kunne ikke estimere gas til byttet."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Uventet problem med estimering af gassen. Prøv igen."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap Governance"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs' servicevilkår"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap tilgængelig i: <0>{0}</0>"
|
||||
@@ -1786,13 +1868,13 @@ msgstr "Uniswap migrationskontrakt↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap på {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Ukendt kilde"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ukendt fejl{0}. Prøv at øge din glidningstolerance. Bemærk: gebyr ved overførsel og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
msgstr "Ukendt fejl{0}. Prøv at øge din glidetolerance. Bemærk: gebyr ved overførsel og rebase -tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Afstemning sluttede {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Afstemning slutter ca. {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Afstemningen starter cirka {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Afventer bekræftelse"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minutter"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "via {0} token-liste"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: de_DE\n"
|
||||
"Language-Team: German\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(bearbeiten)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Senden entfernen"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Empfänger entfernen"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Zulässiges Rutschen"
|
||||
msgid "Amount"
|
||||
msgstr "Betrag"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Beim Versuch, diesen Swap auszuführen, ist ein Fehler aufgetreten. Möglicherweise müssen Sie Ihre Schlupftoleranz erhöhen. Wenn dies nicht funktioniert, liegt möglicherweise eine Inkompatibilität mit dem Token vor, den Sie handeln. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automatischer Router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Zur Einlage verfügbar: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Zurück"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Guthaben:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Durch das Hinzufügen dieser Liste vertrauen Sie implizit darauf, dass die Daten korrekt sind. Jeder kann eine Liste erstellen, einschließlich gefälschter Versionen bestehender Listen oder Listen die vorgeben Projekte zu repräsentieren, die keine Liste haben."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Durch das Verbinden mit einer Wallet erklären Sie sich mit den <0>Nutzungsbedingungen</0> von Uniswap Labs einverstanden und bestätigen, dass Sie den <1>Uniswap Protokoll Haftungsausschluss</1> gelesen und verstanden haben."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Durch das Verbinden einer Brieftasche stimmen Sie den <0>Nutzungsbedingungen von</0> und bestätigen, dass Sie den Haftungsausschluss für das Protokoll von <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Diese Transaktion in Ihrer Wallet bestätigen"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Transaktion in Wallet bestätigen"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Wallet verbinden"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Eine Wallet verbinden"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Mit einer Wallet verbinden"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Mit einer Wallet verbinden, um Pools zu finden"
|
||||
@@ -719,11 +716,11 @@ msgstr "Bearbeiten"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Effizienzvergleich"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Prozentsatz eingeben"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Empfänger eingeben"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Geben Sie eine Adresse ein, um UNI einzufordern. Wenn die Adresse Anspru
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Betrag eingeben"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Ausblenden"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Hoher Preiseinfluss"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Wie diese App APIs verwendet"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Einverstanden"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Wenn Sie Token aus dieser Liste kaufen, können Sie sie möglicherweise nicht zurückverkaufen."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Metamask installieren"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Unzureichende Liquidität für diesen Handel."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Unzureichendes {0} Guthaben"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Unzureichendes {0} Guthaben"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Einstellungen der Benutzeroberfläche"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Ungültiges Paar"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Ungültiges Paar"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Ungültiges Paar."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ungültige Preisangabe"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ungültige Preisangabe"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Ungültiger Bereich ausgewählt. Der Mindestpreis muss kleiner als der Maximalpreis sein."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Ungültiger Empfänger"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Erfahren Sie mehr"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Erfahren Sie mehr über die Bereitstellung von Liquidität"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Mehr erfahren"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Rechtliches & Datenschutz"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Helles Design"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min.:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum erhalten"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Fehlende Abhängigkeiten"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mehr"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Keine V2-Liquidität gefunden."
|
||||
msgid "No active pools"
|
||||
msgstr "Keine aktiven Pools"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Keine Daten"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Keine Beschreibung."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Vorgeschlagene Aktion"
|
||||
msgid "Proposer"
|
||||
msgstr "Antragsteller"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokoll-Haftungsausschluss"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "In Warteschlange"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Liste entfernen"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Entferne {0} {1} und {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Entfernen {0} {1} und{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Wählen Sie ein Netzwerk"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Token auswählen"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Bereitstellen"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Stelle {0} {1} und {2} {3} bereit"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Versorgung {0} {1} und{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Trotzdem tauschen"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Tausche genau <0/> gegen <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Tausch fehlgeschlagen: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Tausche {0} {1} gegen {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Danke, dass du Teil der Uniswap-Community bist <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Der Prozentsatz, den Sie an Gebühren verdienen."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Die Uniswap-Invariante x*y=k wurde durch den Tausch nicht erfüllt. Dies bedeutet normalerweise, dass einer der Token, die Sie austauschen, ein benutzerdefiniertes Verhalten bei der Übertragung enthält."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Die App ruft Blockchain-Daten vom gehosteten Dienst von The Graph ab."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Die App ruft On-Chain-Daten ab und erstellt Vertragsaufrufe mit einer Infura-API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Die App ruft die optimale Handelsroute von einem Uniswap Labs-Server ab."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Die App protokolliert anonymisierte Nutzungsstatistiken, um sie im Laufe der Zeit zu verbessern."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Die App sammelt sicher Ihre Wallet-Adresse und teilt sie aus Risiko- und Compliance-Gründen mit TRM Labs Inc."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Der eingegebene Token kann nicht übertragen werden. Möglicherweise liegt ein Problem mit dem Token vor."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Der eingegebene Token kann nicht übertragen werden. Möglicherweise lie
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Der Marktpreis liegt außerhalb der angegebenen Preisklasse. Nur einseitige Liquiditätsgabe möglich."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Der Ausgabe-Token kann nicht übertragen werden. Möglicherweise liegt ein Problem mit dem Token vor."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Das Ausgabetoken kann nicht übertragen werden. Möglicherweise liegt ein Problem mit dem Ausgabetoken vor. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Der Preis für diesen Pool liegt innerhalb des gewählten Bereichs. Ihre
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Das Verhältnis der von Ihnen hinzugefügten Token legt den Preis für diesen Pool fest."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Die Transaktion konnte nicht gesendet werden, da die Frist abgelaufen ist. Bitte überprüfen Sie, ob Ihre Transaktionsfrist nicht zu niedrig ist."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Keine Liquiditätsdaten vorhanden."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Diese Token werden üblicherweise mit anderen Token gepaart."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Diese App verwendet die folgenden Drittanbieter-APIs:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Dieser Pool muss initialisiert werden, bevor Sie Liquidität hinzufügen können. Wählen Sie zum Initialisieren einen Startpreis für den Pool aus. Geben Sie dann Ihre Liquiditätspreisspanne und den Einzahlungsbetrag ein. Die Gasgebühren werden aufgrund der Initialisierungstransaktion höher als üblich sein."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Diese Route optimiert Ihren Preis, indem geteilte Routen, mehrere Hops u
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Dieser Token erscheint nicht in der/den aktiven Token-Liste(n). Stellen Sie sicher, dass dies der Token ist, den Sie handeln möchten."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dieses Token wird in der Uniswap Labs-App nicht unterstützt"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Dieses Tool wird Ihre {0}-Liquidität sicher auf V3 migrieren. Der Prozess ist dank des"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Diese Transaktion wird aufgrund von Preisbewegungen nicht erfolgreich sein. Versuchen Sie, Ihre Schlupftoleranz zu erhöhen. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Diese Transaktion wird nicht erfolgreich sein, entweder aufgrund von Preisbewegungen oder aufgrund von Gebühr-bei-Transfer. Versuchen Sie, Ihre Schlupftoleranz zu erhöhen."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Nach (mindestens)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Um mit dem Handel bei {0}zu beginnen, überbrücken Sie zuerst Ihr Vermögen von L1 zu L2. Bitte behandeln Sie dies als Beta-Release und informieren Sie sich über die Risiken, bevor Sie {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token nicht unterstützt"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaktion abgeschlossen in"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Transaktionsfrist"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaktion abgelehnt."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token übertragen"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Noch nicht bezogen:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Unbestimmt"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Unerwarteter Fehler. Gas für den Tausch konnte nicht geschätzt werden."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Unerwartetes Problem bei der Schätzung des Gases. Bitte versuche es erneut."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap Governance"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Nutzungsbedingungen von Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap verfügbar in: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap Migrations-contract↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap auf {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Unbekannte Quelle"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Unbekannter Fehler{0}. Versuchen Sie, Ihre Schlupftoleranz zu erhöhen. Hinweis: Gebühren für Transfer- und Rebase-Token sind nicht mit Uniswap V3 kompatibel."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Abstimmung beendet {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Die Abstimmung endet ungefähr {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Die Abstimmung beginnt ungefähr {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Warte auf Bestätigung"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "Minuten"
|
||||
msgid "via {0}"
|
||||
msgstr "über {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "über {0} Token-Liste"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: el_GR\n"
|
||||
"Language-Team: Greek\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Μέγιστο)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(επεξεργασία)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Αφαίρεση αποστολής"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Αφαίρεση παραλήπτη"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Επιτρέπεται η ολίσθηση"
|
||||
msgid "Amount"
|
||||
msgstr "Ποσό"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια εκτέλεσης αυτής της ανταλλαγής. Ίσως χρειαστεί να αυξήσετε την ανοχή ολίσθησης. Εάν αυτό δεν λειτουργεί, μπορεί να υπάρχει ασυμβατότητα με το διακριτικό που διαπραγματεύεστε. Σημείωση: τα τέλη μεταφοράς και επαναφοράς δεν είναι συμβατά με το Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Αυτόματος δρομολογητής"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Διαθέσιμο για κατάθεση: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Πίσω"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Υπόλοιπο:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Προσθέτοντας αυτή τη λίστα, εμπιστεύεστε έμμεσα ότι τα δεδομένα είναι σωστά. Οποιοσδήποτε μπορεί να δημιουργήσει μια λίστα, συμπεριλαμβανομένης της δημιουργίας πλαστών εκδόσεων των υφιστάμενων καταλόγων και καταλόγων που ισχυρίζονται ότι αντιπροσωπεύουν έργα που δεν έχουν ένα."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Συνδέοντας ένα πορτοφόλι, συμφωνείτε με την Uniswap Labs’ <0>Όρους Παροχής Υπηρεσιών</0> και αναγνωρίζετε ότι έχετε διαβάσει και κατανοήσει τη <1>δήλωση αποποίηση ευθυνών του πρωτοκόλλου Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Συνδέοντας ένα πορτοφόλι, συμφωνείτε με τους Όρους Παροχής Υπηρεσιών <0></0> και αναγνωρίζετε ότι έχετε διαβάσει και κατανοήσει τη Δήλωση Αποποίησης ευθυνών Πρωτοκόλλου <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Επιβεβαιώστε αυτή τη συναλλαγή στο πορ
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Επιβεβαίωση συναλλαγής στο πορτοφόλι"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Σύνδεση Πορτοφολιού"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Συνδέστε ένα πορτοφόλι"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Σύνδεση σε πορτοφόλι"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Συνδεθείτε σε ένα πορτοφόλι για να βρείτε δεξαμενές"
|
||||
@@ -719,11 +716,11 @@ msgstr "Επεξεργασία"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Σύγκριση αποδοτικότητας"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Εισαγωγή ποσοστού"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Εισαγάγετε έναν παραλήπτη"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Εισάγετε μια διεύθυνση για να εκκινήσε
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Εισάγετε ένα ποσό"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Κρύβω"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Υψηλή Επίδραση Τιμών"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Πώς αυτή η εφαρμογή χρησιμοποιεί API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Κατανοώ"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Αν αγοράσετε μία μάρκα από αυτή τη λίστα, μπορεί να μην μπορείτε να την πουλήσετε πίσω."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Εγκατάσταση Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Ανεπαρκής ρευστότητα για αυτή τη διαπραγμάτευση."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Ανεπαρκές υπόλοιπο {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Ανεπαρκές υπόλοιπο {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Ρυθμίσεις Διεπαφής"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Μη έγκυρο ζεύγος"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Μη έγκυρο ζεύγος"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Μη έγκυρο ζεύγος."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Μη έγκυρη εισαγωγή τιμής"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Μη έγκυρη εισαγωγή τιμής"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Επιλέχθηκε μη έγκυρο εύρος. Η ελάχιστη τιμή πρέπει να είναι χαμηλότερη από τη μέγιστη τιμή."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Μη έγκυρος παραλήπτης"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Μάθε περισσότερα"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Μάθετε σχετικά με την παροχή ρευστότητας"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Μάθε περισσότερα"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Νομική και Απόρρητο"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Ελαφρύ θέμα"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Ελάχιστο:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Ελάχιστο λαμβανόμενο"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Λείπουν εξαρτήσεις"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Περισσότερα"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Δεν βρέθηκε ρευστότητα V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Δεν υπάρχει ενεργή δεξαμενή"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Χωρίς δεδομένα"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Χωρίς περιγραφή."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Προτεινόμενη δράση"
|
||||
msgid "Proposer"
|
||||
msgstr "Άτομο που κάνει προτάσεις"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Αποποίηση ευθυνών πρωτοκόλλου"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Σε ουρά"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Αφαίρεση λίστας"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Αφαίρεση των {0} {1} και {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Αφαίρεση {0} {1} και{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Επιλέξτε ένα δίκτυο"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Επιλέξτε μία μάρκα"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Παροχή"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Γίνεται παροχή {0} {1} και {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Παροχή {0} {1} και{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Ανταλλάξτε ούτως ή άλλως"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Αντικαταστήστε ακριβώς <0/> με <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Η ανταλλαγή απέτυχε: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Ανταλλαγή {0} {1} για {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Σας ευχαριστούμε που συμμετείχατε στην
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Το% που θα κερδίσετε σε προμήθειες."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Το αμετάβλητο Uniswap x * y = k δεν ικανοποιήθηκε από την ανταλλαγή. Αυτό συνήθως σημαίνει ότι μία από τις μάρκες που ανταλλάσσετε περιλαμβάνει προσαρμοσμένη συμπεριφορά κατά τη μεταφορά."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Η εφαρμογή ανακτά δεδομένα blockchain από την φιλοξενούμενη υπηρεσία του The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Η εφαρμογή ανακτά δεδομένα στην αλυσίδα και δημιουργεί κλήσεις συμβολαίου με ένα Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Η εφαρμογή ανακτά τη βέλτιστη εμπορική διαδρομή από έναν διακομιστή Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Η εφαρμογή καταγράφει ανώνυμα στατιστικά στοιχεία χρήσης για να βελτιώνεται με την πάροδο του χρόνου."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Η εφαρμογή συλλέγει με ασφάλεια τη διεύθυνση του πορτοφολιού σας και τη μοιράζεται με την TRM Labs Inc. για λόγους κινδύνου και συμμόρφωσης."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Δεν είναι δυνατή η μεταφορά της μάρκας εισαγωγής. Ενδέχεται να υπάρχει πρόβλημα με τη μάρκα εισαγωγής."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Δεν είναι δυνατή η μεταφορά της μάρκας
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Η αγοραία τιμή είναι εκτός του εύρους τιμών που καθορίσατε. Καταθέσεις ενός μόνου περιουσιακού στοιχείου μόνο."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Η μάρκα αποτελέσματος δεν μπορεί να μεταφερθεί. Ενδέχεται να υπάρχει ένα ζήτημα με τη μάρκα αποτελέσματος."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Δεν είναι δυνατή η μεταφορά της μάρκας αποτελέσματος. Ενδέχεται να υπάρχει πρόβλημα με τη μάρκα αποτελέσματος. Σημείωση: οι χρεώσεις μεταφοράς και οι μάρκες rebase δεν είναι συμβατές με το Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Η τιμή αυτής της δεξαμενής είναι εντός
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Η αναλογία των διακριτικών που προσθέτετε θα ορίσει την τιμή αυτής της δεξαμενής."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Δεν ήταν δυνατή η αποστολή της συναλλαγής επειδή έχει παρέλθει η προθεσμία. Βεβαιωθείτε ότι η προθεσμία συναλλαγής σας δεν είναι πολύ μικρή."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Δεν υπάρχουν δεδομένα ρευστότητας."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Αυτές οι μάρκες δεν συνδυάζονται συνήθως με αλλά μάρκες."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Αυτή η εφαρμογή χρησιμοποιεί τα ακόλουθα API τρίτων:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Αυτή η ομάδα πρέπει να προετοιμαστεί για να μπορέσετε να προσθέσετε ρευστότητα. Για να ξεκινήσετε, επιλέξτε μια τιμή εκκίνησης για την ομάδα. Στη συνέχεια, εισαγάγετε το εύρος τιμών ρευστότητας και το ποσό κατάθεσης. Τα τέλη φυσικού αερίου θα είναι υψηλότερα από το συνηθισμένο λόγω της αρχικής συναλλαγής."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Αυτή η διαδρομή βελτιστοποιεί την τιμή
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Αυτή η μάρκα δεν εμφανίζεται στην(ις) ενεργή (ές) λίστα(ες). Βεβαιωθείτε ότι αυτή είναι η μάρκα που θέλετε να διαπραγματευτείτε."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Αυτό το διακριτικό δεν υποστηρίζεται στην εφαρμογή Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Αυτό το εργαλείο θα μεταφέρει με ασφάλεια τη ρευστότητα {0} σας στο V3. Η διαδικασία αυτή διακρίνεται από έλλειψη εμπιστοσύνης μεταξύ των μερών χάρη στο"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Αυτή η συναλλαγή δεν θα πετύχει λόγω της μεταβολής των τιμών. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης. Σημείωση: οι χρεώσεις μεταφοράς και οι μάρκες rebase δεν είναι συμβατές με το Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Αυτή η συναλλαγή δεν θα πετύχει είτε λόγω της κίνησης των τιμών είτε της χρέωσης κατά τη μεταφορά. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Έως (από το ελάχιστο)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Για να ξεκινήσετε τις συναλλαγές με {0}, γεφυρώστε πρώτα τα περιουσιακά σας στοιχεία από το L1 στο L2. Αντιμετωπίστε το ως έκδοση beta και μάθετε για τους κινδύνους πριν χρησιμοποιήσετε το {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Το διακριτικό δεν υποστηρίζεται"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Μάρκες"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Η συναλλαγή ολοκληρώθηκε στις"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Προθεσμία συναλλαγής"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Η συναλλαγή απορρίφθηκε."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Μεταφορά κουπονιού"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Αζήτητα:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Αναποφάσιστος"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Απρόσμενο σφάλμα. Δεν ήταν δυνατή η εκτίμηση αερίου για την ανταλλαγή."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Μη αναμενόμενο πρόβλημα με την εκτίμηση του αερίου. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap Διακυβέρνηση"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Όροι Παροχής Υπηρεσιών της Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Το Uniswap διατίθεται σε: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Σύμβαση μετεγκατάστασης Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Απεμπλοκή στο {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Άγνωστη πηγή"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Άγνωστο σφάλμα{0}. Δοκιμάστε να αυξήσετε την ανοχή ολίσθησης Σημείωση: οι χρεώσεις μεταφοράς και οι rebase μάρκες δεν είναι συμβατές με το Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Η ψηφοφορία έληξε {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Η ψηφοφορία λήγει περίπου {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Η ψηφοφορία ξεκινά περίπου {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Αναμονή Επιβεβαίωσης"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "λεπτά"
|
||||
msgid "via {0}"
|
||||
msgstr "μέσω {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "μέσω {0} λίστας μάρκας"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: es_ES\n"
|
||||
"Language-Team: Spanish\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Máx)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(editar)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Eliminar envío"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Eliminar destinatario"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Deslizamiento permitido"
|
||||
msgid "Amount"
|
||||
msgstr "Cantidad"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Se produjo un error al intentar ejecutar este intercambio. Es posible que deba aumentar su tolerancia al deslizamiento. Si eso no funciona, puede haber una incompatibilidad con el token que está negociando. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Enrutador automático"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponible para depositar: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Atrás"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Al añadir esta lista está confiando implícitamente en que los datos son correctos. Cualquiera puede crear una lista; incluso se pueden crear versiones falsas de listas existentes y listas que afirman representar proyectos que no tienen una."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Al conectar una cartera, usted acepta los <0>Términos de servicio</0> de Uniswap Labs y reconoce que ha leído y comprendido la <1>Exención de responsabilidad del protocolo Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Al conectar una billetera, acepta los <0>Términos de servicio</0> Uniswap Labs y reconoce que ha leído y comprendido el Descargo <1>responsabilidad del protocolo</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Confirmar esta transacción en su cartera"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Confirmar transacción en billetera"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Conectar cartera"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Conectar una cartera"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Conectar a una cartera"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Conectarse a una cartera para encontrar fondos comunes"
|
||||
@@ -719,11 +716,11 @@ msgstr "Editar"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Comparación de eficiencia"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Introduzca un porcentaje"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Introduzca un destinatario"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Introduzca una dirección para activar una reclamación de UNI. Si la di
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Introduzca un monto"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Esconder"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Impacto de precio alto"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Cómo esta aplicación usa las API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Entiendo"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Si compra una ficha de esta lista, es posible que no pueda venderla de nuevo."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Instalar Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Liquidez insuficiente para esta operación."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Saldo {0} insuficiente"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Saldo {0} insuficiente"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Ajustes de la interfaz"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Par inválido"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Par inválido"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Pare inválido."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Entrada de precio no válida"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Entrada de precio no válida"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Rango seleccionado no válido. El precio mínimo debe ser inferior al precio máximo."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Receptor no válido"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Aprende más"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Más información sobre cómo proporcionar liquidez"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Aprende más"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Legal y Privacidad"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema de luz"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Mín:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínimo recibido"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependencias faltantes"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Más"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "No se encontró liquidez V2."
|
||||
msgid "No active pools"
|
||||
msgstr "No hay fondos comunes activos"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Sin datos"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Sin descripción."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Acción propuesta"
|
||||
msgid "Proposer"
|
||||
msgstr "Proponente"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Descargo de responsabilidad del protocolo"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Puesto en cola"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Eliminar lista"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Eliminando {0} {1} y {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Eliminando {0} {1} y{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Seleccione una red"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Seleccione un token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Suministro"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Suministrando {0} {1} y {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Suministrando {0} {1} y{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Intercambiar de todos modos"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Cambiar exactamente <0 /> por <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Error de intercambio: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Intercambiando {0} {1} por {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Gracias por ser parte de la comunidad Uniswap <0 />"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "El% que ganarás en comisiones."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "El invariante Uniswap x*y=k no estaba satisfecho con el intercambio. Esto generalmente significa que uno de los tokens que está intercambiando incorpora un comportamiento personalizado en la transferencia."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "La aplicación obtiene datos de blockchain del servicio alojado de The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "La aplicación obtiene datos en cadena y construye llamadas de contrato con una API de Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "La aplicación obtiene la ruta comercial óptima de un servidor de Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "La aplicación registra estadísticas de uso anónimas para mejorar con el tiempo."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "La aplicación recopila de forma segura la dirección de su billetera y la comparte con TRM Labs Inc. por razones de riesgo y cumplimiento."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "El token de entrada no se puede transferir. Puede haber un problema con el token de entrada."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "El token de entrada no se puede transferir. Puede haber un problema con
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "El precio de mercado está fuera del rango de precios especificado. Depósito de un solo activo."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "El token de salida no se puede transferir. Puede haber un problema con el token de salida."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "El token de salida no se puede transferir. Puede haber un problema con el token de salida. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "El precio de este fondo común está dentro de su rango seleccionado. Su
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "La proporción de tokens que añada establecerá el precio de este fondo común."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "No se pudo enviar la transacción porque la fecha límite ha pasado. Verifique que el plazo de su transacción no sea demasiado corto."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "No hay datos de liquidez."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Estos tokens son comúnmente emparejados con otros tokens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Esta aplicación utiliza las siguientes API de terceros:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Este grupo debe inicializarse antes de poder agregar liquidez. Para inicializar, seleccione un precio inicial para el grupo. Luego, ingrese su rango de precio de liquidez y el monto del depósito. Las tarifas del gas serán más altas de lo habitual debido a la transacción de inicialización."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Esta ruta optimiza su precio considerando rutas divididas, múltiples sa
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Este token no aparece en las listas de tokens activos. Asegúrese de que este sea el token que desea intercambiar."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Este token no es compatible con la aplicación Uniswap Labs."
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Esta herramienta migrará su liquidez {0} a V3. El proceso es totalmente infalible gracias a la"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Esta transacción no se realizará correctamente debido al movimiento de precios. Intente aumentar su tolerancia al deslizamiento. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Esta transacción no se realizará correctamente debido al movimiento del precio o al cargo por transferencia. Intente aumentar su tolerancia al deslizamiento."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "A (al menos)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Para comenzar a operar en {0}, primero establezca un puente entre sus activos de L1 a L2. Trate esto como una versión beta y conozca los riesgos antes de usar {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token no admitido"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transacción completada en"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Fecha límite de la transacción"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transacción rechazada."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token de transferencia"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Sin reclamar:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Indeterminado"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Error inesperado. No se pudo estimar el gas para el canje."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problema inesperado con la estimación del gas. Inténtalo de nuevo."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Gestión Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Condiciones de servicio de Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponible en: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Contrato de migración Uniswap"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap en {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Fuente desconocida"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Error desconocido{0}. Intente aumentar su tolerancia al deslizamiento. Nota: la tarifa de transferencia y los tokens de rebase son incompatibles con Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Voto finalizado {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "La votación termina aproximadamente {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "La votación comienza aproximadamente {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Esperando por confirmación"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minutos"
|
||||
msgid "via {0}"
|
||||
msgstr "vía {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "a través de la lista de fichas {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: fi_FI\n"
|
||||
"Language-Team: Finnish\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(edit)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Poista lähetys"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Poista vastaanottaja"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Sallittu liukuminen"
|
||||
msgid "Amount"
|
||||
msgstr "Määrä"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Tapahtui virhe yritettäessä suorittaa tämä vaihto. Saatat joutua lisäämään luistonsietokykyäsi. Jos se ei toimi, kaupankäynnin kohteena olevan tunnuksen kanssa saattaa olla ristiriita. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automaattinen reititin"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Talletettavissa: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Takaisin"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Lisäämällä tämän luettelon luotat ehdottomasti siihen, että tiedot ovat oikein. Kuka tahansa voi luoda luettelon ja luoda myös väärennettyjä versioita olemassa olevista luetteloista ja luetteloista, jotka väittävät edustavansa hankkeita, joilla ei sellaista ole."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Yhdistämällä lompakon hyväksyt Uniswap Labsin <0>käyttöehdot</0> ja vahvistat, että olet lukenut ja ymmärtänyt <1>Uniswap-protokollan vastuuvapauslausekkeen</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Yhdistämällä lompakon hyväksyt Uniswap Labsin <0>-palveluehdot</0> ja vahvistat lukeneesi ja ymmärtäväsi Uniswap <1>-protokollan vastuuvapauslausekkeen</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Vahvista lompakkosi tapahtuma"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Vahvista tapahtuma lompakossa"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Yhdistä lompakko"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Yhdistä lompakko"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Yhdistä lompakkoon"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Yhdistä lompakkoon löytääksesi pooleja"
|
||||
@@ -719,11 +716,11 @@ msgstr "Muokata"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Tehokkuuden vertailu"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Syötä prosenttiosuus"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Syötä vastaanottaja"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Syötä osoite, joka käynnistää UNI-lunastuksen. Jos osoitteella on l
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Syötä summa"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Piilottaa"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Korkea hintavaikutus"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Kuinka tämä sovellus käyttää sovellusliittymiä"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Ymmärrän"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Jos ostat rahakkeen tästä luettelosta, et ehkä pysty myymään sitä takaisin."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Asenna Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Ei riittävästi likviditeettiä tälle kaupalle."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Riittämätön {0} saldo"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Riittämätön {0} saldo"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Käyttöliittymän asetukset"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Virheellinen pari"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Virheellinen pari"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Virheellinen pari."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Virheellinen hintatieto"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Virheellinen hintatieto"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Virheellinen vaihteluväli valittu. Minimihinnan on oltava pienempi kuin maksimihinta."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Virheellinen vastaanottaja"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Lue lisää"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Lisätietoja likviditeetin tarjoamisesta"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Lue lisää"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Laki ja yksityisyys"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Kevyt teema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Minimi:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimi vastaanotettu"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Puuttuvat riippuvuudet"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Lisää"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "V2-likviditeettiä ei löytynyt."
|
||||
msgid "No active pools"
|
||||
msgstr "Ei aktiivisia pooleja"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Ei dataa"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Ei kuvausta."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Ehdotettu toimi"
|
||||
msgid "Proposer"
|
||||
msgstr "Ehdottaja"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokollan vastuuvapauslauseke"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Jonossa"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Poista luettelo"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Poistetaan {0} {1} ja {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Irrottaminen {0} {1} ja{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Valitse verkko"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Valitse rahake"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Tarjonta"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Toimitetaan {0} {1} ja {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Toimitetaan {0} {1} ja{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Vaihda silti"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Vaihda täsmälleen <0/> arvoon <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Vaihto epäonnistui: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Vaihdetaan {0} {1} kohteeseen {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Kiitos, että olet osa Uniswap-yhteisöä <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% Ansaitset palkkioita."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Vaihto ei tyydyttänyt Uniswap-invarianttia x*y=k. Tämä tarkoittaa yleensä sitä, että yksi vaihtamistasi rahakkeista käyttäytyy mukautetusti siirron yhteydessä."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Sovellus hakee lohkoketjutiedot The Graphin isännöidyltä palvelulta."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Sovellus hakee ketjun tietoja ja muodostaa sopimuskutsuja Infura API:lla."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Sovellus hakee optimaalisen kauppareitin Uniswap Labs -palvelimelta."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Sovellus kirjaa anonymisoituja käyttötilastoja parantaakseen ajan myötä."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Sovellus kerää turvallisesti lompakkosi osoitteesi ja jakaa sen TRM Labs Inc:n kanssa riskien ja vaatimustenmukaisuuden vuoksi."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Syöterahaketta ei voida siirtää. Syöterahakkeessa voi olla ongelma."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Syöterahaketta ei voida siirtää. Syöterahakkeessa voi olla ongelma."
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Markkinahinta on määritellyn hintaluokan ulkopuolella. Vain yksittäisen omaisuuserän talletus."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Tulosrahaketta ei voida siirtää. Tulosrahakkeessa voi olla ongelma."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Tulostunnusta ei voi siirtää. Tulostunnuksessa voi olla ongelma. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Tämän poolin hinta sopii vallittuun hintaluokkaan. Positiosi ansaitsee
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Lisäämiesi rahakkeiden suhde määrittää tämän poolin hinnan."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Tapahtumaa ei voitu lähettää, koska määräaika on ohi. Tarkista, että tapahtumasi määräaika ei ole liian lyhyt."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Likviditeettitietoja ei ole."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Näitä rahakkeita liitetään usein muihin rahakkeisiin."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Tämä sovellus käyttää seuraavia kolmannen osapuolen sovellusliittymiä:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Tämä pooli on alustettava, ennen kuin voit lisätä likviditeettiä. Alusta valitsemalla altaan aloitushinta. Syötä sitten likviditeetin hintaluokka ja talletussumma. Kaasumaksut ovat tavallista korkeampia alustustapahtuman takia."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Tämä reitti optimoi hintasi ottamalla huomioon jaetut reitit, useita h
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Tätä rahaketta ei näy aktiivisissa rahakeluetteloissa. Varmista, että tämä on rahake, jonka haluat vaihtaa."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Uniswap Labs -sovellus ei tue tätä tunnusta"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Tämä työkalu siirtää {0} likviditeettisi turvallisesti V3:lle. Prosessi on täysin luotettava kiitos"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Tämä kauppa ei onnistu hintaliikkeen vuoksi. Yritä lisätä liukastumistoleranssia. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Tämä tapahtuma ei onnistu joko hinnanmuutoksen tai siirtopalkkion vuoksi. Yritä nostaa luistonsietoprosenttia."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Mihin (ainakin)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Jos haluat aloittaa kaupankäynnin {0}, yhdistä ensin omaisuutesi L1: stä L2: een. Käsittele tätä beetaversiona ja tutustu riskeihin ennen käyttöä {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Tunnusta ei tueta"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Rahakkeet"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Kauppa suoritettu vuonna"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Tapahtuman määräaika"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Tapahtuma hylätty."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Siirtotunnus"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Lunastamaton:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Ei määritelty"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Odottamaton virhe. Vaihdon kaasua ei voitu arvioida."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Odottamaton ongelma kaasun arvioinnissa. Yritä uudelleen."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswapin hallinto"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labsin käyttöehdot"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap käytettävissä: <0>{0}</0>"
|
||||
@@ -1786,13 +1868,13 @@ msgstr "Uniswapin siirtosopimus ↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Peruuta {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Tuntematon lähde"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Tuntematon virhe{0}. Yritä lisätä liukastumistoleranssia. Huomautus: siirto- ja uudelleentase-tunnusten maksu ei ole yhteensopiva Uniswap V3: n kanssa."
|
||||
msgstr "Tuntematon virhe{0}. Yritä lisätä liukastumissietokykyäsi. Huomaa: siirto- ja uudelleenkorotusmaksut eivät ole yhteensopivia Uniswap V3: n kanssa."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Äänestys päättynyt {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Äänestys päättyy noin {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Äänestys alkaa noin {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Odotetaan vahvistusta"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuuttia"
|
||||
msgid "via {0}"
|
||||
msgstr "kohteen {0} kautta"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "rahakeluettelon {0} kautta"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: fr_FR\n"
|
||||
"Language-Team: French\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,7 +52,7 @@ msgid "(edit)"
|
||||
msgstr "(modifier)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Supprimer le destinataire"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Glissement autorisé"
|
||||
msgid "Amount"
|
||||
msgstr "Montant"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Une erreur s'est produite lors de la tentative d'exécution de cet échange. Vous devrez peut-être augmenter votre tolérance au slippage. Si cela ne fonctionne pas, il peut y avoir une incompatibilité avec le token que vous échangez. Remarque : les frais sur les token de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Routeur automatique"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponible pour déposer: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Précédent"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Solde :"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "En ajoutant cette liste, vous avez implicitement confiance dans le fait que les données sont correctes. N'importe qui peut créer une liste, y compris la création de fausses versions de listes et de listes existantes qui prétendent représenter des projets qui n'en ont pas."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "En vous connectant à un portefeuille, vous acceptez les <0>conditions de service</0> d’Uniswap et reconnaissez que vous avez lu et compris l’exclusion de responsabilité du <1>protocole Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "En connectant un portefeuille, vous acceptez les <0>Conditions d'utilisation d'</0> et reconnaissez avoir lu et compris la clause de non-responsabilité du protocole <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Validez cette transaction dans votre portefeuille"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Confirmer la transaction dans le portefeuille"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Connecter le portefeuille"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Connecter un portefeuille"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Se connecter à un portefeuille"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Connectez-vous à un portefeuille pour trouver des pools"
|
||||
@@ -719,11 +716,11 @@ msgstr "Éditer"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Comparaison d'efficacité"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Saisissez un pourcentage"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Saisissez un destinataire"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Saisissez une adresse pour déclencher une réclamation UNI. Si l'adress
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Saisissez un montant"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Cacher"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Impact sur les prix élevés"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Comment cette application utilise les API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Je comprends"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Si vous achetez un jeton de cette liste, il se peut que vous ne puissiez pas le réclamer."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Installer Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Pas assez de liquidités pour cette transaction."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Solde {0} insuffisant"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Solde {0} insuffisant"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Paramètres de l'interface"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Paire invalide"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Paire invalide"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Paire invalide."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Entrée de prix non valide"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Entrée de prix non valide"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Plage non valide sélectionnée. Le prix minimum doit être inférieur au prix maximum."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Destinataire invalide"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Apprendre encore plus"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "En savoir plus sur la fourniture de liquidités"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "En savoir plus"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Mentions légales et confidentialité"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Thème de la lumière"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min :"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum reçu"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dépendances manquantes"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "En savoir plus"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Aucune liquidité V2 trouvée."
|
||||
msgid "No active pools"
|
||||
msgstr "Aucun pool actif"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Pas de données"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Aucune description."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Action proposée"
|
||||
msgid "Proposer"
|
||||
msgstr "Proposer"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Avis de non-responsabilité du protocole"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "En attente"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Supprimer la liste"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Suppression de {0} {1} et {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Supprimer {0} {1} et{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Sélectionnez un réseau"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Sélectionnez un jeton"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Approvisionnement"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Approvisionnement {0} {1} et {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Alimentation {0} {1} et{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Échanger quand même"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Remplacez exactement <0/> par <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Échec de l'échange : {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Échange de {0} {1} contre {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Merci de faire partie de la communauté Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Le % que vous gagnerez en frais."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "L'invariant Uniswap x*y=k n'a pas été satisfait par l'échange. Cela signifie généralement que l'un des jetons que vous échangez incorpore un comportement personnalisé lors du transfert."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "L'application récupère les données de la blockchain à partir du service hébergé de The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "L'application récupère les données en chaîne et construit des appels de contrat avec une API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "L'application récupère la route commerciale optimale à partir d'un serveur Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "L'application enregistre des statistiques d'utilisation anonymisées afin de s'améliorer au fil du temps."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "L'application collecte en toute sécurité votre adresse de portefeuille et la partage avec TRM Labs Inc. pour des raisons de risque et de conformité."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Le jeton d'entrée ne peut pas être transféré. Il peut y avoir un problème avec le jeton d'entrée."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Le jeton d'entrée ne peut pas être transféré. Il peut y avoir un pro
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Le prix du marché est en dehors de votre fourchette de prix spécifiée. Dépôt d'actifs unique seulement."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Le jeton de sortie ne peut pas être transféré. Il peut y avoir un problème avec le jeton de sortie."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Le token de sortie ne peut pas être transféré. Il peut y avoir un problème avec le token de sortie. Remarque : les frais sur les jetons de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Le prix de ce pool est dans votre fourchette sélectionnée. Votre posit
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Le ratio de jetons que vous ajoutez fixera le prix de ce pool."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "La transaction n'a pas pu être envoyée car la date limite est passée. Veuillez vérifier que la date limite de votre transaction n'est pas trop basse."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Il n'y a pas de données de liquidité."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Ces jetons sont généralement jumelés avec d'autres jetons."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Cette application utilise les API tierces suivantes :"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Ce pool doit être initialisé avant de pouvoir ajouter des liquidités. Pour initialiser, sélectionnez un prix de départ pour le pool. Ensuite, entrez votre fourchette de prix de liquidité et le montant du dépôt. Les frais de gaz seront plus élevés que d'habitude en raison de la transaction d'initialisation."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Cet itinéraire optimise votre prix en tenant compte des itinéraires fr
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ce jeton n'apparaît pas sur la ou les listes de jetons actifs. Assurez-vous qu'il s'agit du jeton que vous souhaitez échanger."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ce jeton n'est pas pris en charge dans l'application Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Cet outil va migrer en toute sécurité vos liquidités {0} vers V3. Le processus est complètement sans confiance grâce à la"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Cette transaction ne réussira pas en raison du mouvement des prix. Essayez d'augmenter votre tolérance au slippage. Remarque : les frais sur les token de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Cette transaction ne réussira pas en raison du mouvement des prix ou des frais de transfert. Essayez d'augmenter votre tolérance au glissement."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Vers (au moins)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Pour commencer à trader à {0}, commencez par relier vos actifs de L1 à L2. Veuillez considérer ceci comme une version bêta et vous renseigner sur les risques avant d'utiliser {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Jeton non pris en charge"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Jetons"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaction réalisée en"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Date limite de la transaction"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaction rejetée."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token de transfert"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Non réclamé :"
|
||||
msgid "Undetermined"
|
||||
msgstr "Indéterminé"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Erreur inattendue. Impossible d'estimer le gaz pour l'échange."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problème inattendu avec l'estimation du gaz. Veuillez réessayer."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Gouvernance Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Conditions d'utilisation d'Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponible en : <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Contrat de migration Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap sur {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Source inconnue"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Erreur inconnue{0}. Essayez d'augmenter votre tolérance au glissement. Remarque : les frais sur les tokens de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Vote terminé {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Le vote se termine environ {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Le vote commence à environ {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "En attente de confirmation"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minutes"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "via {0} liste de jetons"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: he_IL\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(מקסימום)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(עריכה)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- הסר שליחה"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- הסר את הנמען"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "מותר החלקה"
|
||||
msgid "Amount"
|
||||
msgstr "כמות"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "אירעה שגיאה בניסיון לבצע החלפה זו. יתכן שתצטרך להגביר את סובלנות ההחלקה שלך. אם זה לא עובד, ייתכן שיש אי התאמה לאסימון שאתה סוחר בו. הערה: עמלה על אסימון העברה וריבוס אינם תואמים ל- Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "נתב אוטומטי"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "זמין להפקדה: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "חזרה"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "מאזן:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "על ידי הוספת רשימה זו אתה סומך באופן מרומז על כך שהנתונים נכונים. כל אחד יכול ליצור רשימה, כולל יצירת גרסאות מזויפות של רשימות קיימות ורשימות המתיימרות לייצג פרויקטים שאין להם."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "על ידי חיבור ארנק אתה מסכים <0>לתנאי השירות</0> של Uniswap Labs ומודה כי קראת והבנת את כתב הוויתור על פרוטוקול <1>Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "על ידי חיבור ארנק, אתה מסכים לתנאי השירות</0> <0>ומאשר שקראת והבנת את כתב ויתור פרוטוקול <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "אשר את העסקה בארנק שלך"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "אשר עסקה בארנק"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "חבר ארנק"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "חבר ארנק"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "התחבר לארנק"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "התחבר לארנק כדי למצוא בריכות"
|
||||
@@ -719,11 +716,11 @@ msgstr "לַעֲרוֹך"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "השוואת יעילות"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "הזן אחוז"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "הזן נמען"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "הזן כתובת להפעלת תביעה של UNI. אם לכתובת י
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "הזן סכום"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "להתחבא"
|
||||
msgid "High Price Impact"
|
||||
msgstr "השפעה על מחיר גבוה"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "כיצד האפליקציה הזו משתמשת בממשקי API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "אני מבין"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "אם אתה רוכש אסימון מרשימה זו, ייתכן שלא תוכל למכור אותו בחזרה."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "התקן את Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "לא מספיק נזילות למסחר זה."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "איזון {0} לא מספיק"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "איזון {0} לא מספיק"
|
||||
msgid "Interface Settings"
|
||||
msgstr "הגדרות ממשק"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "זוג לא חוקי"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "זוג לא חוקי"
|
||||
msgid "Invalid pair."
|
||||
msgstr "זוג לא חוקי."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "קלט מחירים לא חוקי"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "קלט מחירים לא חוקי"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "נבחר טווח לא חוקי. המחיר המינימלי חייב להיות נמוך מהמחיר המקסימלי."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "נמען לא חוקי"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "למד עוד"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "למד אודות מתן נזילות"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "למד עוד"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "משפטי ופרטיות"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "נושא קל"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "דקה:"
|
||||
msgid "Minimum received"
|
||||
msgstr "מינימום שהתקבל"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "חסרות תלות"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "יותר"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "לא נמצאה נזילות V2."
|
||||
msgid "No active pools"
|
||||
msgstr "אין בריכות פעילות"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "אין מידע"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "אין תיאור."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "הצעה לפעולה"
|
||||
msgid "Proposer"
|
||||
msgstr "מציע"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "כתב ויתור פרוטוקול"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "בתור"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "הסר את הרשימה"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "הסרת {0} {1} ו {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "הסרת {0} {1} ו-{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "בחר רשת"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "בחר אסימון"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "לְסַפֵּק"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "אספקת {0} {1} ו {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "מתן {0} {1} ו{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "החלף בכל מקרה"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "החלף בדיוק <0/> עבור <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "החלפה נכשלה: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "החלפת {0} {1} ב- {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "תודה שהיית חלק מקהילת Uniswap <0 />"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "האחוזים שתרוויחו בעמלות."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "המשתנה של Uniswap x * y = k לא הסתפק בהחלפה. זה בדרך כלל אומר שאחד מהאסימונים שאתה מחליף משלב התנהגות מותאמת אישית בהעברה."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "האפליקציה שואבת נתוני בלוקצ'יין מהשירות המתארח של The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "האפליקציה שואבת נתונים על השרשרת ובונה שיחות חוזה עם Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "האפליקציה שואבת את נתיב הסחר האופטימלי משרת Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "האפליקציה רושם סטטיסטיקות שימוש אנונימיות על מנת להשתפר עם הזמן."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "האפליקציה אוספת בצורה מאובטחת את כתובת הארנק שלך ומשתפת אותה עם TRM Labs Inc. מסיבות סיכון ותאימות."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "לא ניתן להעביר את אסימון הקלט. יכול להיות שיש בעיה באסימון הקלט."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "לא ניתן להעביר את אסימון הקלט. יכול להיו
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "מחיר השוק הוא מחוץ לטווח המחירים שצוין. הפקדת נכס יחיד בלבד."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "לא ניתן להעביר את אסימון הפלט. ייתכן שיש בעיה באסימון הפלט."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "לא ניתן להעביר את אסימון הפלט. ייתכן שיש בעיה באסימון הפלט. הערה: עמלה על אסימון העברה וריבוס אינם תואמים ל- Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "המחיר של המאגר הזה הוא בטווח שבחרתם. עמד
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "יחס האסימונים שתוסיף יקבע את מחיר הבריכה הזו."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "לא ניתן היה לשלוח את העסקה מכיוון שהמועד האחרון חלף. אנא בדוק שמועד העסקה האחרון שלך אינו קרוב מדי."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "אין נתוני נזילות."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "אסימונים אלה משויכים בדרך כלל לאסימונים אחרים."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "אפליקציה זו משתמשת בממשקי ה-API של צד שלישי הבאים:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "יש לאתחל את המאגר הזה לפני שתוכל להוסיף נזילות. כדי לאתחל, בחר מחיר התחלתי לבריכה. לאחר מכן, הזן את טווח מחירי הנזילות ואת סכום ההפקדה. דמי הגז יהיו גבוהים מהרגיל עקב עסקת האתחול."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "מסלול זה מייעל את המחיר שלך על ידי התחשב
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "אסימון זה אינו מופיע ברשימות האסימונים הפעילות. ודא שזה האסימון שאתה רוצה לסחור בו."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "אסימון זה אינו נתמך באפליקציית Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "כלי זה יעביר בבטחה את נזילות {0} שלך ל- V3. התהליך חסר אמון לחלוטין בזכות"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "עסקה זו לא תצליח בגלל תנועת מחירים. נסה להגביר את סובלנות ההחלקה שלך. הערה: עמלה על אסימון העברה ומיקום מחדש אינם תואמים ל- Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "עסקה זו לא תצליח גם בגלל תנועת מחירים או עמלה על העברה. נסה להגביר את סובלנות ההחלקה שלך."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "עבור (לפחות)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "כדי להתחיל לסחור ב {0}, תחילה גשר את הנכסים שלך מ- L1 ל- L2. אנא התייחס לזה כאל גרסת בטא ולמד על הסיכונים לפני השימוש {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "אסימון אינו נתמך"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "אסימונים"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "העסקה הושלמה בשנת"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "מועד אחרון לעסקה"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "העסקה נדחתה."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "העברת אסימון"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "ללא דרישה:"
|
||||
msgid "Undetermined"
|
||||
msgstr "לא נקבע"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "שגיאה לא צפויה. לא ניתן היה לאמוד גז להחלפה."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "בעיה בלתי צפויה בהערכת הגז. בבקשה נסה שוב."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "ממשל לא מוחלף"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "התנאים וההגבלות של Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap זמין ב: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "חוזה הגירה מביטול החלפה↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "ביטול החלפה ב- {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "מקור לא ידוע"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "שגיאה לא ידועה{0}. נסה להגביר את סובלנות ההחלקה שלך. הערה: עמלה על אסימון העברה ומיקום מחדש אינם תואמים ל- Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "ההצבעה הסתיימה ב {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "ההצבעה מסתיימת בכ- {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "ההצבעה מתחילה בערך {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "מחכה לאישור"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "דקות"
|
||||
msgid "via {0}"
|
||||
msgstr "דרך {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "דרך רשימת אסימונים {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: hu_HU\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$ -"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(szerkesztés)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Küldés eltávolítása"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Távolítsa el a címzettet"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Megengedett csúszás"
|
||||
msgid "Amount"
|
||||
msgstr "Összeg"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Hiba történt a csere végrehajtása során. Lehet, hogy növelnie kell a csúszási toleranciát. Ha ez nem működik, akkor összeférhetetlenség állhat fenn az Ön által forgalmazott tokennel. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automatikus útválasztó"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Letétbe helyezhető: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Vissza"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Egyenleg:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "A lista hozzáadásával hallgatólagosan megbízik az adatok helyességében. Bárki létrehozhat egy listát, beleértve a meglévő listák hamisított változatait is és olyan listákat is, amelyek azt állítják, hogy olyan projekteket képviselnek, amelyeknek nincs."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "A pénztárca csatlakoztatásával Ön elfogadja az Uniswap Labs <0>Szolgáltatási feltételeit</0> és elismeri, hogy elolvasta és megértette az <1>Uniswap protokoll lemondó nyilatkozatát</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "A pénztárca csatlakoztatásával Ön elfogadja az Uniswap Labs <0>szolgáltatási feltételeit</0> és elismeri, hogy elolvasta és megértette az Uniswap <1>Protokoll Jogi nyilatkozatát</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Tranzakció megerősítése a pénztárcájában"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "A tranzakció megerősítése a pénztárcában"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Pénztárca csatlakoztatása"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Egy pénztárca csatlakoztatása"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Csatlakozás egy pénztárcához"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Csatlakozzon egy pénztárcához a poolok megtalálásához"
|
||||
@@ -719,11 +716,11 @@ msgstr "Szerkesztés"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Hatékonyság-összehasonlítás"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Adjon meg egy százalékot"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Címzett megadása"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Adjon meg egy címet az UNI-követelés kiváltásához. Ha a címnek va
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Adjon meg egy összeget"
|
||||
|
||||
@@ -850,6 +847,10 @@ msgstr "Elrejt"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Magas árhatás"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Hogyan használja ez az alkalmazás az API-kat"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -859,6 +860,7 @@ msgstr "Értem"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Ha ebből a listából vásárol tokent, nem biztos, hogy vissza tudja adni."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -910,11 +912,11 @@ msgstr "Metamask telepítése"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Nincs elegendő likviditás ehhez a kereskedéshez."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Elégtelen {0} egyenleg"
|
||||
|
||||
@@ -922,8 +924,8 @@ msgstr "Elégtelen {0} egyenleg"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Interfész beállítások"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Érvénytelen pár"
|
||||
|
||||
@@ -931,7 +933,7 @@ msgstr "Érvénytelen pár"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Érvénytelen pár."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Érvénytelen ár input"
|
||||
|
||||
@@ -940,7 +942,8 @@ msgstr "Érvénytelen ár input"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Érvénytelen tartományt választott ki. A minimális árnak alacsonyabbnak kell lennie, mint a maximális ár."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Érvénytelen címzett"
|
||||
|
||||
@@ -960,6 +963,16 @@ msgstr "Tudj meg többet"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Tudjon meg többet a likviditás biztosításáról"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Tudj meg többet"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Jogi és adatvédelem"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Fény téma"
|
||||
@@ -1100,6 +1113,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum beérkezett"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Hiányzó függőségek"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Több"
|
||||
@@ -1121,6 +1138,10 @@ msgstr "V2 likviditás nem található."
|
||||
msgid "No active pools"
|
||||
msgstr "Nincs aktív pool"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Nincs adat"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Nincs leírás."
|
||||
@@ -1336,6 +1357,10 @@ msgstr "Javasolt cselekvés"
|
||||
msgid "Proposer"
|
||||
msgstr "Javaslattevő"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokoll Jogi nyilatkozat"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Sorban"
|
||||
@@ -1399,10 +1424,13 @@ msgid "Remove list"
|
||||
msgstr "Lista eltávolítása"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} és {2} {3} eltávolítása"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} és{2} {3}eltávolítása"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1425,7 +1453,7 @@ msgstr "Válasszon hálózatot"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Token választása"
|
||||
|
||||
@@ -1524,8 +1552,8 @@ msgid "Supply"
|
||||
msgstr "Kínálat"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} és {2} {3} kínálása"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} és{2} {3}ellátása"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1548,6 +1576,11 @@ msgstr "Swap mindenképp"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Pontosan cserélje ki a <0/> értéket a <1/> értékre"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "A csere nem sikerült: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "{0} {1} cseréje a következőre {2} {3}"
|
||||
@@ -1560,11 +1593,31 @@ msgstr "Köszönjük, hogy az Uniswap közösség tagja <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "A díjakban keresett%."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "A Uniswap invariáns x*y=k nem teljesült a swap során. Ez általában azt jelenti, hogy a cserélendő tokenek egyike egyéni viselkedést tartalmaz az átadáskor."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Az alkalmazás blokklánc-adatokat kér le a The Graph által tárolt szolgáltatásból."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Az alkalmazás lekéri a láncon belüli adatokat, és szerződéshívásokat hoz létre egy Infura API-val."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Az alkalmazás lekéri az optimális kereskedelmi útvonalat egy Uniswap Labs szerverről."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Az alkalmazás anonimizált használati statisztikákat naplóz, hogy idővel javítsa."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Az alkalmazás biztonságosan összegyűjti a pénztárca címét, és kockázati és megfelelőségi okokból megosztja a TRM Labs Inc.-vel."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Az input token nem transzferálható. Probléma lehet az input tokennel."
|
||||
|
||||
@@ -1572,11 +1625,11 @@ msgstr "Az input token nem transzferálható. Probléma lehet az input tokennel.
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "A piaci ár kívül esik a megadott ártartományon. Csak egy eszközzel történő befizetés."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Az output token nem transzferálható. Probléma lehet az output tokennel."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "A kimeneti token nem vihető át. Probléma lehet a kimeneti tokennel. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval."
|
||||
|
||||
@@ -1592,7 +1645,7 @@ msgstr "Ennek a poolnak az ára az Ön által kiválasztott tartományon belül
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Az Ön által hozzáadott tokenek aránya határozza meg ennek a poolnak az árát."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "A tranzakciót nem sikerült elküldeni, mert a határidő lejárt. Kérjük, ellenőrizze, hogy a tranzakció határideje nem túl alacsony-e."
|
||||
|
||||
@@ -1604,6 +1657,10 @@ msgstr "Nincs likviditási adat."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Ezeket a tokeneket általában más tokenekkel párosítják."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Ez az alkalmazás a következő harmadik féltől származó API-kat használja:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Ezt a készletet inicializálni kell a likviditás növelése előtt. Az inicializáláshoz válassza ki a készlet kikiáltási árát. Ezután adja meg likviditási ártartományát és betéti összegét. Az inicializálási tranzakció miatt a gázdíjak a szokásosnál magasabbak lesznek."
|
||||
@@ -1620,15 +1677,19 @@ msgstr "Ez az útvonal optimalizálja az árát, figyelembe véve a megosztott
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ez a token nem jelenik meg az aktív tokenek listájában. Győződjön meg arról, hogy ez az a token, amelyet kereskedni szeretne."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ezt a tokent nem támogatja az Uniswap Labs alkalmazás"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Ez az eszköz biztonságosan migrálja a {0} likviditását a V3-ba. A folyamat teljesen megbízhatatlan köszönhetően"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ez a tranzakció az ármozgás miatt nem fog sikerülni. Próbáld meg növelni a csúszástűrést. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Ez a tranzakció sem az ármozgás, sem az átutalási díj miatt nem lesz sikeres. Próbáld meg növelni a csúszástűrést."
|
||||
|
||||
@@ -1651,6 +1712,10 @@ msgstr "(Legalább)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "{0}-n történő kereskedés megkezdéséhez először kösse össze eszközeit L1 -ről L2 -re. Kérjük, kezelje ezt béta kiadásként, és ismerje meg a kockázatokat, mielőtt használná {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "A token nem támogatott"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokenek"
|
||||
@@ -1706,6 +1771,11 @@ msgstr "A tranzakció befejeződött"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Tranzakció határideje"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "A tranzakció elutasítva."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Transfer Token"
|
||||
@@ -1763,10 +1833,22 @@ msgstr "Nem igényelt:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Meghatározatlan"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Váratlan hiba. Nem sikerült megbecsülni a cseréhez szükséges gázt."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Váratlan probléma a gáz becslésével. Kérlek próbáld újra."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap irányítás"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Az Uniswap Labs szolgáltatási feltételei"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Az Uniswap itt érhető el: <0>{0}</0>"
|
||||
@@ -1787,13 +1869,13 @@ msgstr "Uniswap migrációs szerződés↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Lecserélés a {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Ismeretlen forrás"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ismeretlen hiba{0}. Próbáld meg növelni a csúszástűrést. Megjegyzés: az átviteli és újrabázis tokenek díja nem kompatibilis az Uniswap V3 verzióval."
|
||||
msgstr "Ismeretlen hiba{0}. Próbálja meg növelni a csúszástűrést. Megjegyzés: az átutalási és újbóli alapkivonási díjak nem kompatibilisek az Uniswap V3 -mal."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1960,6 +2042,10 @@ msgstr "A szavazás befejeződött {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "A szavazás befejeződik körülbelül {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "A szavazás {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Visszaigazolásra vár"
|
||||
@@ -2206,7 +2292,7 @@ msgstr "perc"
|
||||
msgid "via {0}"
|
||||
msgstr "{0}-on keresztül"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "{0} token listán keresztül"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: id_ID\n"
|
||||
"Language-Team: Indonesian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Maks)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(edit)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Hapus pengiriman"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Hapus penerima"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Slip yang Diizinkan"
|
||||
msgid "Amount"
|
||||
msgstr "Jumlah"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Terjadi kesalahan saat mengeksekusi swap ini. Anda mungkin memerlukan peningkatan toleransi slip Anda. Jika tidak berhasil, kemungkinan token yang anda perdagangkan tidak cocok. Catatan: biaya transfer token rebase tidak cocok dengan Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Router Otomatis"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Tersedia untuk disetor: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Kembali"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Dengan menambahkan daftar ini, Anda secara implisit mempercayai bahwa datanya benar. Siapa pun dapat membuat daftar, termasuk membuat versi palsu dari daftar yang sudah ada dan daftar yang mengklaim mewakili proyek yang tidak memiliki proyek apapun."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Dengan menghubungkan dompet, Anda menyetujui <0>Ketentuan Layanan</0> Uniswap Labs dan mengakui bahwa Anda telah membaca dan memahami <1>Penafian protokol Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Dengan menghubungkan dompet, Anda menyetujui Persyaratan Layanan</0> <0>dan mengakui bahwa Anda telah membaca dan memahami Penafian Protokol <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Konfirmasikan transaksi ini di dompet Anda"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Konfirmasi transaksi di dompet"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Hubungkan Dompet"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Hubungkan dompet"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Hubungkan ke dompet"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Hubungkan ke dompet untuk menemukan pool"
|
||||
@@ -719,11 +716,11 @@ msgstr "Ubah"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Perbandingan Efisiensi"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Masukkan persen"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Masukkan penerima"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Masukkan alamat untuk memicu klaim UNI. Jika alamat tersebut memiliki UN
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Masukkan jumlah"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Menyembunyikan"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Dampak Harga Tinggi"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Bagaimana aplikasi ini menggunakan API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Saya mengerti"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Jika Anda membeli token dari daftar ini, Anda mungkin tidak dapat menjualnya kembali."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Pasang Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Likuiditas tidak cukup untuk perdagangan ini."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Saldo {0} tidak cukup"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Saldo {0} tidak cukup"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Pengaturan Antarmuka"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Pasangan tidak valid"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Pasangan tidak valid"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Pasangan tidak valid."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Masukan harga tidak valid"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Masukan harga tidak valid"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Rentang yang tidak valid dipilih. Harga min harus lebih rendah dari harga maks."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Penerima tidak valid"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Belajarlah lagi"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Pelajari tentang menyediakan likuiditas"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Pelajari lebih lanjut"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Hukum & Privasi"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema Terang"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum diterima"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Ketergantungan yang hilang"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Lebih"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Tidak ditemukan Likuiditas V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Tidak ada pangkalan aktif"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Tidak ada data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Tidak ada deskripsi."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Tindakan yang Diusulkan"
|
||||
msgid "Proposer"
|
||||
msgstr "Pengusul"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Penafian Protokol"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Mengantri"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Hapus daftar"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Menghapus {0} {1} dan {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Menghapus {0} {1} dan{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Pilih jaringan"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Pilih token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Pasokan"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Memasok {0} {1} dan {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Menyediakan {0} {1} dan{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Tukar Saja"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Tukar persis <0/> untuk <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Tukar gagal: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Menukar {0} {1} untuk {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Terima kasih telah menjadi bagian dari komunitas Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% yang akan Anda peroleh dalam bentuk biaya."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Invarian Uniswap x*y=k tidak dipenuhi oleh penukaran. Ini biasanya berarti salah satu token yang Anda tukar menyertakan perilaku khusus saat transfer."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Aplikasi ini mengambil data blockchain dari layanan yang dihosting The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Aplikasi mengambil data on-chain dan membuat panggilan kontrak dengan API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Aplikasi mengambil rute perdagangan optimal dari server Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Aplikasi ini mencatat statistik penggunaan anonim untuk meningkatkan dari waktu ke waktu."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Aplikasi ini dengan aman mengumpulkan alamat dompet Anda dan membagikannya dengan TRM Labs Inc. untuk alasan risiko dan kepatuhan."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Token input tidak dapat ditransfer. Mungkin ada masalah dengan token input."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Token input tidak dapat ditransfer. Mungkin ada masalah dengan token inp
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Harga pasar di luar rentang harga yang Anda tentukan. Khusus setoran aset tunggal."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Token output tidak dapat ditransfer. Mungkin ada masalah dengan token output."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Output token tidak dapat ditransfer. Mungkin ada masalah dengan output token. Catatan: biaya transfer dan token rebase tidak sesuai dengan Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Harga pool ini berada dalam rentang yang Anda pilih. Posisi Anda saat in
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Rasio token yang Anda tambahkan akan menetapkan harga pool ini."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Transaksi tidak dapat dikirim karena tenggat waktu telah berlalu. Harap periksa bahwa tenggat waktu transaksi Anda tidak terlalu rendah."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Tidak ada data likuiditas."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Token ini biasanya dipasangkan dengan token lain."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Aplikasi ini menggunakan API pihak ketiga berikut:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Pool ini harus diinisialisasi sebelum Anda dapat menambahkan likuiditas. Untuk menginisialisasi, pilih harga awal untuk pool. Kemudian, masukkan kisaran harga likuiditas dan jumlah deposit Anda. Biaya gas akan lebih tinggi dari biasanya karena transaksi inisialisasi."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Rute ini mengoptimalkan harga Anda dengan mempertimbangkan rute terpisah
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Token ini tidak muncul di daftar token yang aktif. Pastikan ini adalah token yang ingin Anda perdagangkan."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Token ini tidak didukung di aplikasi Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Alat ini akan memigrasikan {0} likuiditas Anda ke V3 dengan aman. Prosesnya benar-benar tidak dapat dipercaya berkat"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Transaksi ini tidak akan berhasil karena pergerakan harga. Coba tingkatkan toleransi selip Anda. Catatan: biaya transfer dan token rebase tidak sesuai dengan Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Transaksi ini tidak akan berhasil baik karena pergerakan harga atau biaya transfer. Coba tingkatkan toleransi selip Anda."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Untuk (setidaknya)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Untuk memulai trading pada {0}, pertama-tama jembatani aset Anda dari L1 ke L2. Harap perlakukan ini sebagai rilis beta dan pelajari tentang risikonya sebelum menggunakan {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token tidak didukung"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaksi selesai pada"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Batas waktu transaksi"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaksi ditolak."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Transfer Token"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Tidak diklaim:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Tidak dapat ditentukan"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Kesalahan yang tidak diduga. Tidak dapat memperkirakan gas untuk swap."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Masalah tak terduga dengan memperkirakan gas. Silakan coba lagi."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Tata Kelola Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Persyaratan Layanan Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap tersedia dalam: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Kontrak migrasi Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap pada {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Sumber tidak diketahui"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Kesalahan tidak diketahui{0}. Coba tingkatkan toleransi selip Anda. Catatan: biaya transfer dan token rebase tidak sesuai dengan Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Voting berakhir {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Voting berakhir kira-kira {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Pemungutan suara dimulai sekitar {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Menunggu Konfirmasi"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "menit"
|
||||
msgid "via {0}"
|
||||
msgstr "melalui {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "melalui {0} daftar token"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: it_IT\n"
|
||||
"Language-Team: Italian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Massimo)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(modifica)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Rimuovi invio"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Rimuovi destinatario"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Slittamento consentito"
|
||||
msgid "Amount"
|
||||
msgstr "Importo"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Si è verificato un errore durante il tentativo di eseguire questo scambio. Potrebbe essere necessario aumentare la tolleranza allo slittamento. Se ciò non funziona, potrebbe esserci un'incompatibilità con il token che stai scambiando. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Router automatico"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponibile per il deposito: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Indietro"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Aggiungendo questa lista si suppone implicitamente che i dati siano corretti. Chiunque può creare una lista, tra cui la creazione di versioni false di liste esistenti ed elenchi che affermano di rappresentare progetti che non ne hanno uno."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Collegando un portafoglio, accetti i <0>Termini di servizio di Uniswap Labs</0> e riconosci di aver letto e compreso il <1>La dichiarazione di non responsabilità del protocollo Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Collegando un portafoglio, accetti <0>Termini di servizio</0> di Uniswap Labs e riconosci di aver letto e compreso l'Esonero di responsabilità del protocollo <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Conferma questa transazione nel tuo portafoglio"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Conferma transazione nel portafoglio"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Connetti Portafoglio"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Collega un portafoglio"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Connettiti a un portafoglio"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Connettiti a un portafoglio per trovare dei pool"
|
||||
@@ -719,11 +716,11 @@ msgstr "modificare"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Confronto di efficienza"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Inserisci una percentuale"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Inserisci un destinatario"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Inserisci un indirizzo per attivare un reclamo UNI. Se l'indirizzo ha un
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Inserisci un importo"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Nascondere"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Impatto Ad Alto Prezzo"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "In che modo questa app utilizza le API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Capisco"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Se acquisti un token da questa lista, potresti non essere in grado di venderlo."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Installa Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Liquidità insufficiente per questa operazione."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Saldo {0} insufficiente"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Saldo {0} insufficiente"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Impostazioni Interfaccia"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Coppia non valida"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Coppia non valida"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Coppia non valida."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Input di prezzo non valido"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Input di prezzo non valido"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Intervallo selezionato non valido. Il prezzo minimo deve essere inferiore al prezzo massimo."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Destinatario non valido"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Per saperne di più"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Scopri come fornire liquidità"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Scopri di più"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Legale e Privacy"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema chiaro"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimo ricevuto"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dipendenze mancanti"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Altro"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Nessuna liquidità V2 trovata."
|
||||
msgid "No active pools"
|
||||
msgstr "Nessun pool attivo"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Nessun dato"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Nessuna descrizione."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Azione proposta"
|
||||
msgid "Proposer"
|
||||
msgstr "Proponente"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Dichiarazione di non responsabilità del protocollo"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "In coda"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Rimuovi elenco"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Rimozione di {0} {1} e {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Rimozione {0} {1} e{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Seleziona una rete"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Seleziona un token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Fornitura"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Fornitura di {0} {1} e {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Fornitura {0} {1} e{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Scambia Comunque"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Scambia esattamente <0/> con <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Scambio fallito: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Scambio di {0} {1} per {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Grazie per far parte della community di Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "La % che guadagnerai in commissioni."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "L'invariante Uniswap x * y = k non è stata soddisfatta con lo scambio. Questo di solito significa che uno dei token che stai scambiando incorpora un comportamento personalizzato durante il trasferimento."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "L'app recupera i dati blockchain dal servizio ospitato di The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "L'app recupera i dati sulla catena e crea chiamate di contratto con un'API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "L'app recupera la rotta commerciale ottimale da un server Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "L'app registra statistiche di utilizzo anonime per migliorare nel tempo."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "L'app raccoglie in modo sicuro l'indirizzo del tuo portafoglio e lo condivide con TRM Labs Inc. per motivi di rischio e conformità."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Il token di input non può essere trasferito. Potrebbe esserci un problema con il token di input."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Il token di input non può essere trasferito. Potrebbe esserci un proble
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Il prezzo di mercato è al di fuori della tua fascia di prezzo specificata. Solo deposito singolo asset."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Il token di output non può essere trasferito. Potrebbe esserci un problema con il token di output."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Il token di output non può essere trasferito. Potrebbe esserci un problema con il token di output. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Il prezzo di questo pool è entro l'intervallo selezionato. La tua posiz
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Il rapporto tra i gettoni che aggiungi imposterà il prezzo di questo pool."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Impossibile inviare la transazione perché il termine è scaduto. Si prega di verificare che la scadenza della transazione non sia troppo bassa."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Non ci sono dati sulla liquidità."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Questi gettoni sono comunemente accoppiati con altri gettoni."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Questa app utilizza le seguenti API di terze parti:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Questo pool deve essere inizializzato prima di poter aggiungere liquidità. Per inizializzare, seleziona un prezzo di partenza per il pool. Quindi, inserisci la tua fascia di prezzo della liquidità e l'importo del deposito. Le tariffe del gas saranno più alte del solito a causa della transazione di inizializzazione."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Questo percorso ottimizza il tuo prezzo considerando percorsi divisi, pi
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Questo token non viene visualizzato negli elenchi di token attivi. Assicurati che questo sia il token che vuoi scambiare."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Questo token non è supportato nell'app Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Questo strumento eseguirà la migrazione in modo sicuro della tua liquidità {0} a V3. Il processo è completamente affidabile grazie alla"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Questa transazione non avrà esito positivo a causa del movimento dei prezzi. Prova ad aumentare la tua tolleranza allo slittamento. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Questa transazione non avrà esito positivo a causa del movimento del prezzo o della commissione sul trasferimento. Prova ad aumentare la tua tolleranza allo slittamento."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "A (almeno)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Per iniziare a fare trading su {0}, per prima cosa collega le tue risorse da L1 a L2. Si prega di considerare questa versione come una versione beta e di informarsi sui rischi prima di utilizzarla {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token non supportato"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transazione completata in"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Termine transazione"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transazione rifiutata."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token di trasferimento"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Non Richiesto:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Indeterminato"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Errore inaspettato. Impossibile stimare il gas per lo scambio."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problema imprevisto con la stima del gas. Per favore riprova."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap Governance"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Termini di servizio di Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponibile tra: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Contratto di migrazione Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap su {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Fonte sconosciuta"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Errore sconosciuto{0}. Prova ad aumentare la tua tolleranza allo slittamento. Nota: la commissione sui token di trasferimento e rebase non è compatibile con Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Votazione terminata {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "La votazione termina approssimativamente {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "La votazione inizia circa {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "In Attesa Di Conferma"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuti"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "tramite {0} elenco token"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ja_JP\n"
|
||||
"Language-Team: Japanese\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(最大)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(編集)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- 送信を削除"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "-受信者を削除します"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -152,7 +156,7 @@ msgstr "追加"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Add <0/> and <1/> to Uniswap V2"
|
||||
msgstr "<0 />と<1 />をUniswapV2に追加します"
|
||||
msgstr "<0/>と<1/>をユニスワップV2に追加"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Add Delegate +"
|
||||
@@ -223,7 +227,7 @@ msgstr "許可されたスリッページ"
|
||||
msgid "Amount"
|
||||
msgstr "数量"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "スワップ実行時にエラーが発生しました。スリッページの許容範囲を広げる必要がある可能性があります。それでも上手くいかない場合、取引しているトークンとの互換性がない可能性があります。注:転送時に手数料が発生するトークンおよびリベースするトークンは、UniswapV3と互換性がありません。"
|
||||
|
||||
@@ -266,11 +270,11 @@ msgstr "{0} を承認中"
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Arbiscan"
|
||||
msgstr "アルビスカン"
|
||||
msgstr "Arbiscan"
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Arbitrum Bridge"
|
||||
msgstr "アービトラムブリッジ"
|
||||
msgstr "Arbitrumブリッジ"
|
||||
|
||||
#: src/components/DowntimeWarning/index.tsx
|
||||
msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more.</0>"
|
||||
@@ -300,10 +304,6 @@ msgstr "自動ルーター"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "預け入れ可能: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "戻る"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "残高:"
|
||||
@@ -333,7 +333,7 @@ msgstr "ブロックされたアドレス"
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Bridge"
|
||||
msgstr "橋"
|
||||
msgstr "ブリッジ"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "By adding liquidity you'll earn 0.3% of all trades on this pair proportional to your share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity."
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "このリストを追加することで、データが正しいことを暗黙的に信頼することになります。 誰でもリストを作成することができます。そのため、既存リストの偽のバージョンや、実体のないプロジェクトを掲載するリストが作成されている可能性があります。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "ウォレットを接続することにより、Uniswap Labsの <0>サービス利用規約</0>に同意し、Uniswapプロトコルの<1>免責事項</1>を読み、理解したことに同意します。"
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "財布を接続することにより、あなたはUniswap Labsのに同意 <0>サービス規約</0> 、あなたが読んでUniswap理解していることを認める <1>プロトコル免責事項</1>。"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -361,7 +361,7 @@ msgstr "チャート"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "Check network status"
|
||||
msgstr "ネットワークステータスを確認する"
|
||||
msgstr "ネットワークの状態を確認"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Check out our v3 LP walkthrough and migration guides."
|
||||
@@ -375,7 +375,7 @@ msgstr "請求"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Claim <0/> for {0}"
|
||||
msgstr "以下のための請求<0 /> {0}"
|
||||
msgstr "{0} の <0/> を請求する"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/Menu/index.tsx
|
||||
@@ -391,7 +391,7 @@ msgstr "UNIトークンを請求する"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Claim UNI reward for {0}"
|
||||
msgstr "{0}UNI報酬を請求する"
|
||||
msgstr "{0} のUNI報酬を請求する"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Claim fees"
|
||||
@@ -412,7 +412,7 @@ msgstr "請求済みのUNI!"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "Claimed!"
|
||||
msgstr "主張!"
|
||||
msgstr "請求済み"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
@@ -465,7 +465,7 @@ msgstr "報酬を取得"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Collect {0}/{1} fees"
|
||||
msgstr "収集 {0}/{1} の手数料"
|
||||
msgstr "{0}/{1} の報酬を受け取る"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collected"
|
||||
@@ -516,30 +516,27 @@ msgstr "ウォレットで取引を確認する"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "ウォレットで取引を確認する"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "ウォレットに接続"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "ウォレットに接続"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "ウォレットに接続"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "プールを見つけるにはウォレットに接続してください"
|
||||
@@ -626,7 +623,7 @@ msgstr "投票を委任する"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Delegate voting power to {0}"
|
||||
msgstr "投票権を {0}"
|
||||
msgstr "{0} に投票権を委任する"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Delegated to:"
|
||||
@@ -649,7 +646,7 @@ msgstr "預け入れる数量"
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "Deposit Assets"
|
||||
msgstr "預金資産"
|
||||
msgstr "預け入れ資産"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Deposit UNI-V2 LP Tokens"
|
||||
@@ -719,11 +716,11 @@ msgstr "編集"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "効率性の比較"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "パーセントを入力してください"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "受取人を入力"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "UNIの請求を行うためのアドレスを入力してください。
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "数量を入力してください"
|
||||
|
||||
@@ -798,7 +795,7 @@ msgstr "Uniswap分析サイトで人気のあるプールを探しましょう
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Explorer"
|
||||
msgstr "冒険者"
|
||||
msgstr "エクスプローラー"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
msgid "Fee Tier"
|
||||
@@ -831,7 +828,7 @@ msgstr "全範囲"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Full range positions may earn less fees than concentrated positions. Learn more <0>here</0>."
|
||||
msgstr "フルレンジのポジションは、集中ポジションよりも少ない手数料を稼ぐことができます。詳細はこちら<0></0> 。"
|
||||
msgstr "全範囲のポジションは、集中型ポジションよりも手数料報酬が少ない場合があります。詳細は<0>こちら</0> 。"
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Get support on Discord"
|
||||
@@ -849,6 +846,10 @@ msgstr "非表示"
|
||||
msgid "High Price Impact"
|
||||
msgstr "大きな価格への影響"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "このアプリがAPIを使用する方法"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "理解しました"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "このリストからトークンを購入すると、トークンを売却できなくなる可能性があります。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "メタマスクのインストール"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "流動性が不足しているため、取引できません。"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "{0} の残高が足りません"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "{0} の残高が足りません"
|
||||
msgid "Interface Settings"
|
||||
msgstr "インターフェイスの設定"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "無効なペア"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "無効なペア"
|
||||
msgid "Invalid pair."
|
||||
msgstr "無効なペアです。"
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "無効な価格入力"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "無効な価格入力"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "設定した価格範囲が間違っています。最小価格は最大価格より低くしてください。"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "受け取りアドレスが無効です"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "もっと詳しく知る"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "流動性の提供について学ぶ"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "より詳しく"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "法律とプライバシー"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "ライトテーマ"
|
||||
@@ -1076,7 +1089,7 @@ msgstr "Uniswap V2からUniswap V3に流動性トークンを移行します。"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Migrate {0}/{1} liquidity to V3"
|
||||
msgstr "移行 {0}/{1} V3への流動性"
|
||||
msgstr "{0}/{1} の流動性をV3へ移行"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Migrating"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "最小:"
|
||||
msgid "Minimum received"
|
||||
msgstr "最小購入数"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "依存関係がありません"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "もっと見る"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "V2の流動性が見つかりません。"
|
||||
msgid "No active pools"
|
||||
msgstr "アクティブなプールがありません"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "データがありません"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "説明はありません。"
|
||||
@@ -1178,7 +1199,7 @@ msgstr "不明なエラーが発生しました。ページを更新するか、
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Optimism Gateway"
|
||||
msgstr "オプティミズムゲートウェイ"
|
||||
msgstr "Optimismゲートウェイ"
|
||||
|
||||
#: src/components/DowntimeWarning/index.tsx
|
||||
msgid "Optimistic Ethereum is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more.</0>"
|
||||
@@ -1335,6 +1356,10 @@ msgstr "提案するアクション"
|
||||
msgid "Proposer"
|
||||
msgstr "提案者"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "プロトコルの免責事項"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "処理待ち"
|
||||
@@ -1377,7 +1402,7 @@ msgstr "削除"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Remove <0/> and <1/>"
|
||||
msgstr "<0 />と<1 />を削除します"
|
||||
msgstr "<0/>と<1/>を削除"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Remove Amount"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "リストを削除"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} と {2} {3} を解除中"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} と {2} {3} を削除"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1418,13 +1446,13 @@ msgstr "ペアを選択"
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Select a network"
|
||||
msgstr "ネットワークを選択する"
|
||||
msgstr "ネットワークを選択"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "トークン選択"
|
||||
|
||||
@@ -1500,7 +1528,7 @@ msgstr "ステップ1. UNI-V2流動性トークンを入手"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Submit new proposal"
|
||||
msgstr "新しい提案を送信する"
|
||||
msgstr "新しい提案を出す"
|
||||
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
msgid "Submitting Proposal"
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "追加"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} と {2} {3} を追加中"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} と{2} {3} を提供"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1536,7 +1564,7 @@ msgstr "スワップ"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Swap <0/> for exactly <1/>"
|
||||
msgstr "<0 />を正確に<1 />に交換します"
|
||||
msgstr "<0/> を <1/>に正確にスワップする"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1545,7 +1573,12 @@ msgstr "問題発生の可能性があるが、スワップする"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "正確に<0 />を<1 />に交換します"
|
||||
msgstr "正確に<0/>を<1/>に交換します"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "スワップに失敗しました: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Uniswapコミュニティにご参加いただきありがとうござ
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "設定する手数料率"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap不変式 x * y = kはスワップで満たされませんでした。これは通常、スワップするトークンの1つが転送時のカスタム動作を組み込んでいることを意味します。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "アプリは、グラフのホストされたサービスからブロックチェーンデータをフェッチします。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "アプリはオンチェーンデータをフェッチし、InfuraAPIを使用してコントラクト呼び出しを構築します。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "アプリは、UniswapLabsサーバーから最適な取引ルートを取得します。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "アプリは、時間の経過とともに改善するために、匿名化された使用統計をログに記録します。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "アプリはウォレットアドレスを安全に収集し、リスクとコンプライアンスの理由からTRM LabsInc。と共有します。"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "売るトークンが転送できません。売るトークンに問題がある可能性があります。"
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "売るトークンが転送できません。売るトークンに問題
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "市場価格が設定した価格範囲から外れています。単一トークンのみ預け入れできます。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "購入するトークンを転送できません。購入するトークンに問題がある可能性があります。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "購入するトークンを転送できません。購入するトークンに問題がある可能性があります。注:転送時に手数料が発生するトークンおよびリベースするトークンは、UniswapV3と互換性がありません。"
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "現在の価格は設定した価格範囲に入っています。その
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "追加するトークンの比率によって、プールの価格が決まります。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "期限が過ぎたため、取引を送信できませんでした。期限が短すぎないかご確認ください。"
|
||||
|
||||
@@ -1603,13 +1656,17 @@ msgstr "流動性データはありません。"
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "これらのトークンは一般的に他のトークンとペアになっています。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "このアプリは、次のサードパーティAPIを使用します。"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "流動性を追加する前に、このプールを初期化する必要があります。初期化するには、プールの開始価格を選択します。次に、流動性の価格帯と預金額を入力します。初期化取引のため、ガス料金は通常より高くなります。"
|
||||
msgstr "流動性を追加する前に、このプールを初期化する必要があります。初期化するには、プールの開始価格を選択します。次に、流動性の価格帯と預け入れ数量を入力します。初期化取引のため、ガス料金は通常より高くなります。"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized on {0} before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount."
|
||||
msgstr "流動性を追加する前に {0} に初期化する必要があります。初期化するには、プールの開始価格を選択します。次に、流動性の価格帯と預金額を入力します。"
|
||||
msgstr "流動性を追加する前に {0} に初期化する必要があります。初期化するには、プールの開始価格を選択します。次に、流動性の価格帯と預け入れ数量を入力します。"
|
||||
|
||||
#: src/components/swap/SwapRoute.tsx
|
||||
msgid "This route optimizes your price by considering split routes, multiple hops, and gas costs."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "このルートは、分割ルート、複数のホップ、およびガ
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "このトークンはご利用中のトークンリストに存在しません。取引したいトークンであることを確認してください。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "このトークンは、UniswapLabsアプリではサポートされていません"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "本ツールで {0} の流動性をV3に安全に移行します。このプロセスは以下によって特定の第三者を信用する必要が一切ないものになっています。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "価格変動により、この取引は成功しません。スリッページの許容範囲を広げてみてください。注:転送時に手数料が発生するトークンおよびリベーストークンは、UniswapV3と互換性がありません。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "この取引は、価格変動または転送時に手数料が発生するため、成功しません。スリッページの許容範囲を広げてみてください。"
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "買うトークン(少なくとも)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "{0}で取引を開始するには、最初に資産をL1からL2にブリッジします。 {1}を使用する前に、これをベータリリースとして扱い、リスクについて学習してください。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "トークンはサポートされていません"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "トークン"
|
||||
@@ -1676,7 +1741,7 @@ msgstr "合計預入額"
|
||||
|
||||
#: src/components/swap/RouterLabel.tsx
|
||||
msgid "Trade Route"
|
||||
msgstr "交易路"
|
||||
msgstr "取引ルート"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Transaction Details"
|
||||
@@ -1699,12 +1764,17 @@ msgstr "取引が送信されました"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Transaction completed in"
|
||||
msgstr "で完了したトランザクション"
|
||||
msgstr "で完了した取引"
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Transaction deadline"
|
||||
msgstr "取引期限"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "取引が拒否されました"
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "トークンを転送する"
|
||||
@@ -1762,17 +1832,29 @@ msgstr "未請求:"
|
||||
msgid "Undetermined"
|
||||
msgstr "未定"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "予期しないエラー。スワップのガスを見積もることができませんでした。"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "ガスの見積もりに関する予期しない問題。もう一度やり直してください。"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswapのガバナンス"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "UniswapLabsの利用規約"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "利用可能言語: <0>{0}</0>"
|
||||
|
||||
#: src/components/vote/ProposalEmptyState.tsx
|
||||
msgid "Uniswap governance is only available on Layer 1. Switch your network to Ethereum Mainnet to view Proposals and Vote."
|
||||
msgstr "Uniswapガバナンスは、レイヤー1でのみ使用できます。ネットワークをEthereum Mainnetに切り替えて、提案と投票を表示します。"
|
||||
msgstr "Uniswapのガバナンスは、レイヤー1でのみ使用できます。提案と投票を表示するために、ネットワークをEthereumメインネットに切り替えて下さい。"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Uniswap liquidity mining"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap移行コントラクト↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "{0}ユニスワップ"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "不明なソース"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "不明なエラー{0}。スリッページの許容範囲を広げてみてください。注:転送時に手数料が発生するトークンおよびリベーストークンは、UniswapV3と互換性がありません。"
|
||||
|
||||
@@ -1919,11 +2001,11 @@ msgstr "提案 {proposalId} に反対票を入れる"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote against proposal {proposalKey}"
|
||||
msgstr "{proposalKey}反対票を投じる"
|
||||
msgstr "提案 {proposalKey} に反対票を入れる"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote against proposal {proposalKey} with reason \"{0}\""
|
||||
msgstr "理由「{0}」 {proposalKey} 反対票を投じる"
|
||||
msgstr "「{0} 」という理由で提案 {proposalKey} に反対票を投じる"
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
@@ -1932,24 +2014,24 @@ msgstr "提案 {proposalId} に賛成票を入れる"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote for proposal {proposalKey}"
|
||||
msgstr "{proposalKey}投票する"
|
||||
msgstr "提案{proposalKey} に賛成票を入れる"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote for proposal {proposalKey} with reason \"{0}\""
|
||||
msgstr "理由「{0}」で提案 {proposalKey}"
|
||||
msgstr "「{0} 」という理由で提案 {proposalKey} に賛成票を入れる"
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "Vote to abstain on proposal {proposalId}"
|
||||
msgstr "{proposalId}を棄権するために投票する"
|
||||
msgstr "提案{proposalId} を棄権する"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote to abstain on proposal {proposalKey}"
|
||||
msgstr "{proposalKey}を棄権するために投票する"
|
||||
msgstr "提案{proposalKey} を棄権する"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\""
|
||||
msgstr "理由「{0}」 {proposalKey} を棄権することに投票する"
|
||||
msgstr "「{0} 」という理由で提案 {proposalKey} で棄権する"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting ended {0}"
|
||||
@@ -1959,6 +2041,10 @@ msgstr "{0} に投票は終了しました"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "投票は {0} 頃に終了します"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "投票は約 {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "確認待ち"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "分"
|
||||
msgid "via {0}"
|
||||
msgstr "{0} から"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "{0} トークンリストから"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ko_KR\n"
|
||||
"Language-Team: Korean\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(최대)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(편집)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "-보내기 제거"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- 받는 사람 제거"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "허용된 미끄러짐"
|
||||
msgid "Amount"
|
||||
msgstr "금액"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "이 스왑을 실행하는 중에 오류가 발생했습니다. 미끄러짐 허용치를 높여야 할 수도 있습니다. 그래도 작동하지 않으면 거래중인 토큰과 호환되지 않을 수 있습니다. 참고 : 전송 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "자동 라우터"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "입금 가능 : {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "뒤로"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "잔액:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "이 목록을 추가하면 데이터가 정확하다는 것을 암시적으로 신뢰하게 됩니다. 기존 목록의 가짜 버전 및 목록이 없는 프로젝트를 나타낸다고 주장하는 목록을 만드는 등 누구나 목록을 만들 수 있습니다."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "지갑을 연결하면 Uniswap Labs의 <0> 서비스 약관</0>에 동의하고 <1>Uniswap 프로토콜 면책 조항</1>을 읽고 이해했음을 인정하는 것입니다."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "지갑을 연결하면 Uniswap Labs의 <0>서비스 약관</0> <1>프로토콜 면책 조항</1>읽고 이해했음을 인정합니다."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "지갑에서 이 거래를 확인하세요"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "지갑에서 거래 확인"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "지갑 연결"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "지갑 연결"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "지갑에 연결"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "지갑에 연결하여 풀 찾기"
|
||||
@@ -719,11 +716,11 @@ msgstr "편집하다"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "효율성 비교"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "퍼센트를 입력하세요."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "수령인을 입력하세요."
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "UNI 청구를 트리거할 주소를 입력하십시오. 주소에 청
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "금액을 입력하세요."
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "숨는 장소"
|
||||
msgid "High Price Impact"
|
||||
msgstr "높은 가격 영향"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "이 앱이 API를 사용하는 방법"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "알겠습니다"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "이 목록에서 토큰을 구매하면, 다시 판매하지 못할 수 있습니다."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "메타 마스크 설치"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "이 거래에 대한 유동성이 충분하지 않습니다."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "부족한 {0} 잔액"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "부족한 {0} 잔액"
|
||||
msgid "Interface Settings"
|
||||
msgstr "인터페이스 설정"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "잘못된 쌍"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "잘못된 쌍"
|
||||
msgid "Invalid pair."
|
||||
msgstr "잘못된 쌍"
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "잘못된 가격 입력"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "잘못된 가격 입력"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "잘못된 범위를 선택했습니다. 최소 가격은 최대 가격보다 낮아야합니다."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "잘못된 수령인"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "더 알아보기"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "유동성 제공에 대해 알아보기"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "더 알아보기"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "법률 및 개인 정보 보호"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "밝은 테마"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "최소 :"
|
||||
msgid "Minimum received"
|
||||
msgstr "최소 수령됨"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "누락된 종속성"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "추가"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "V2 유동성이 없습니다."
|
||||
msgid "No active pools"
|
||||
msgstr "활성 풀 없음"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "데이터 없음"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "설명이 없습니다."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "제안 된 조치"
|
||||
msgid "Proposer"
|
||||
msgstr "제안자"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "프로토콜 면책 조항"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "대기 중"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "목록 제거"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} 및 {2} {3} 제거 중"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} 및{2} {3}제거"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "네트워크 선택"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "토큰 선택"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "공급"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} 및 {2} {3} 공급 중"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} 및{2} {3}공급"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "어쨌든 스왑"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "<1/>에 대해 정확히 <0/> 스왑"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "스왑 실패: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "{0} {1} 을 {2} {3}(으)로 스왑"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Uniswap 커뮤니티에 참여해 주셔서 감사합니다. <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "수수료로받을 수있는 %입니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap 불변 x * y = k가 스왑에 의해 충족되지 않았습니다. 이는 일반적으로 스와핑하는 토큰 중 하나가 이체시 사용자 지정 동작을 통합함을 의미합니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "앱은 Graph의 호스팅 서비스에서 블록체인 데이터를 가져옵니다."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "앱은 온체인 데이터를 가져오고 Infura API를 사용하여 계약 호출을 구성합니다."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "앱은 Uniswap Labs 서버에서 최적의 무역 경로를 가져옵니다."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "앱은 시간이 지남에 따라 개선하기 위해 익명화된 사용 통계를 기록합니다."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "앱은 위험 및 규정 준수를 위해 지갑 주소를 안전하게 수집하고 TRM Labs Inc.와 공유합니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "입력 토큰을 이체할 수 없습니다. 입력 토큰에 문제가 있을 수 있습니다."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "입력 토큰을 이체할 수 없습니다. 입력 토큰에 문제가
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "시장 가격이 지정된 가격 범위를 벗어났습니다. 단일 자산 예금만."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "산출 토큰을 이체할 수 없습니다. 산출 토큰에 문제가 있을 수 있습니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "산출 토큰을 이체할 수 없습니다. 산출 토큰에 문제가 있을 수 있습니다. 참고: 이체 수수료 및 리베이스 토큰이 Uniswap V3와 호환되지 않습니다."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "이 풀의 가격은 선택한 범위 내에 있습니다. 귀하의 포
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "추가하는 토큰의 요율이 이 풀의 가격을 설정합니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "기한이 지났기 때문에 거래를 보낼 수 없습니다. 거래 기한이 너무 낮지 않은지 확인하십시오."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "유동성 데이터가 없습니다."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "이러한 토큰은 일반적으로 다른 토큰과 쌍을 이룹니다."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "이 앱은 다음 타사 API를 사용합니다."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "유동성을 추가하려면 이 풀을 초기화해야 합니다. 초기화하려면 풀의 시작 가격을 선택하십시오. 그런 다음 유동성 가격 범위와 예금 금액을 입력하십시오. 초기화 트랜잭션으로 인해 가스 요금이 평소보다 높아집니다."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "이 경로는 분할 경로, 다중 홉 및 가스 비용을 고려하
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "이 토큰은 활성 토큰 목록에 표시되지 않습니다. 이것이 거래하려는 토큰인지 확인하십시오."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "이 토큰은 Uniswap Labs 앱에서 지원되지 않습니다."
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "이 도구로 {0} 유동성을 V3로 안전하게 마이그레이션할 수 있습니다. 이 과정은 다음 덕분에 신뢰할 수 있습니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "이 거래는 가격 변동으로 인해 성공하지 못합니다. 슬리피지 허용치를 높이십시오. 참고: 이체 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "이 거래는 가격 변동이나 이체 수수료로 인해 성공하지 못합니다. 슬리피지 허용치를 높이십시오."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "스왑 후(최소)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "{0}에서 거래를 시작하려면 먼저 자산을 L1에서 L2로 연결하십시오. {1}을 사용하기 전에 위험에 대해 알아보십시오."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "지원되지 않는 토큰"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "토큰"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "거래 완료"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "거래 마감 시간"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "거래가 거부되었습니다."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "이전 토큰"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "미 청구:"
|
||||
msgid "Undetermined"
|
||||
msgstr "분명치 않은"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "예기치 않은 오류. 스왑을 위한 가스를 추정할 수 없습니다."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "가스 추정에 예상치 못한 문제가 있습니다. 다시 시도해 주세요."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap 거버넌스"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs 서비스 약관"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap 사용 가능 : <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap 마이그레이션 계약 ↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "{0}Uniswap"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "알 수 없는 출처"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "알 수 없는 오류 {0}. 슬리피지 허용치를 높이십시오. 참고: 이체 수수료 및 리베이스 토큰은 Uniswap V3와 호환되지 않습니다."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "투표 종료 {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "투표는 대략 {0}에 끝납니다"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "투표 시작 약 {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "확인을 기다리는 중"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "분"
|
||||
msgid "via {0}"
|
||||
msgstr "{0} 경유"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "{0} 토큰 목록을 통해"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Language-Team: Dutch\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(bewerken)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Verzenden verwijderen"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Ontvanger verwijderen"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Toegestane slip"
|
||||
msgid "Amount"
|
||||
msgstr "Bedrag"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Er is een fout opgetreden bij het uitvoeren van deze swap. Mogelijk moet u uw sliptolerantie verhogen. Als dat niet werkt, is er mogelijk een incompatibiliteit met het token dat u verhandelt. Let op: kosten voor overdracht en rebase tokens zijn niet compatibel met Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automatische router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Beschikbaar om te storten: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Terug"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Door deze lijst toe te voegen, vertrouwt u er impliciet op dat de gegevens juist zijn. Iedereen kan een lijst maken, inclusief het maken van nepversies van bestaande lijsten en lijsten die beweren projecten te vertegenwoordigen die er geen hebben."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Door een portemonnee te koppelen, gaat u akkoord met Uniswap Labs’ <0>Servicevoorwaarden</0> en erkent u dat u de <1>Uniswap protocoldisclaimer</1> heeft gelezen en begrepen."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Door een portemonnee te koppelen, gaat u akkoord met de <0>Servicevoorwaarden</0> van Uniswap Labs en bevestigt u dat u de Disclaimer</1><1>protocol hebt gelezen en begrepen."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Bevestig deze transactie in uw portemonnee"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Bevestig transactie in portemonnee"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Verbind Portemonnee"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Verbind een portemonnee"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Verbind met een portemonnee"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Maak verbinding met een portemonnee om pools te vinden"
|
||||
@@ -719,11 +716,11 @@ msgstr "Bewerk"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Efficiëntie vergelijking:"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Voer een percentage in"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Voer een ontvanger in"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Voer een adres in om een UNI-claim te activeren. Als het adres een claim
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Voer een bedrag in"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Zich verstoppen"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Hoge prijsimpact"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Hoe deze app API's gebruikt"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Ik begrijp het"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Als u een token van deze lijst koopt, kunt u deze mogelijk niet meer terugverkopen."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Metamask installeren"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Onvoldoende liquiditeit voor deze transactie."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Onvoldoende saldo {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Onvoldoende saldo {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Interface-instellingen"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Ongeldig paar"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Ongeldig paar"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Ongeldig paar."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ongeldige prijsinvoer"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ongeldige prijsinvoer"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Ongeldig bereik geselecteerd. De minimumprijs moet lager zijn dan de maximumprijs."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Ongeldige ontvanger"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Kom meer te weten"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Meer informatie over het verstrekken van liquiditeit"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Kom meer te weten"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Juridisch en privacy"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Licht thema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum ontvangen"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Ontbrekende afhankelijkheden"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Geen V2-liquiditeit gevonden."
|
||||
msgid "No active pools"
|
||||
msgstr "Geen actieve pools"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Geen informatie"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Geen beschrijving."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Voorgestelde actie"
|
||||
msgid "Proposer"
|
||||
msgstr "Indiener voorstel"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protocol Disclaimer"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "In de wachtrij"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Verwijder lijst"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Verwijderen van {0} {1} en {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Verwijderen {0} {1} en{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Selecteer een netwerk"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Selecteer een token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Levering"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} en {2} {3} aanbieden"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Leveren {0} {1} en{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Toch wisselen"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Wissel exact <0/> in voor <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Wissel mislukt: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "{0} {1} ruilen voor {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Bedankt dat u deel uitmaakt van de Uniswap-gemeenschap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Het % dat u aan vergoedingen verdient."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Aan de Uniswap-invariant x * y = k werd door de swap niet voldaan. Dit betekent meestal dat een van de tokens die u ruilt, aangepast gedrag bij overdracht bevat."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "De app haalt blockchain-gegevens op van de gehoste service van The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "De app haalt on-chain data op en bouwt contractaanroepen op met een Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "De app haalt de optimale handelsroute op van een Uniswap Labs-server."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "De app registreert geanonimiseerde gebruiksstatistieken om deze in de loop van de tijd te verbeteren."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "De app verzamelt veilig uw portemonnee-adres en deelt het met TRM Labs Inc. voor risico- en nalevingsredenen."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "De input-token kan niet worden overgedragen. Er is mogelijk een probleem met de input-token."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "De input-token kan niet worden overgedragen. Er is mogelijk een probleem
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "De marktprijs ligt buiten uw opgegeven prijsbereik. Alleen single-activa storten."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "De output-token kan niet worden overgedragen. Er is mogelijk een probleem met de output-token."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "De output token kan niet worden overgedragen. Er is mogelijk een probleem met de output token. Let op: kosten voor overdracht en rebase tokens zijn niet compatibel met Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "De prijs van deze pool valt binnen het door u geselecteerde bereik. Uw p
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "De verhouding van tokens die u toevoegt zal de prijs van deze pool bepalen."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "De transactie kan niet worden verzonden omdat de deadline is verstreken. Controleer of uw transactiedeadline niet te laag is."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Er zijn geen liquiditeitsgegevens."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Deze tokens worden meestal gekoppeld aan andere tokens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Deze app gebruikt de volgende API's van derden:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Deze pool moet worden geïnitialiseerd voordat u liquiditeit kunt toevoegen. Selecteer een startprijs voor het zwembad om te initialiseren. Voer vervolgens uw liquiditeitsprijsbereik en stortingsbedrag in. Vanwege de initialisatietransactie zullen de gaskosten hoger zijn dan normaal."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Deze route optimaliseert uw prijs door rekening te houden met gesplitste
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Deze token wordt niet weergegeven op de actieve tokenlijst(en). Zorg ervoor dat dit de token is die u wilt verhandelen."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dit token wordt niet ondersteund in de Uniswap Labs-app"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Deze tool zal uw {0} liquiditeit veilig migreren naar V3. Het proces is volledig betrouwbaar dankzij de"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Deze transactie zal niet slagen vanwege prijsbewegingen. Probeer uw slippage tolerantie te vergroten. Let op: kosten voor overdracht en rebasetokens zijn niet compatibel met Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Deze transactie zal niet slagen vanwege prijsbewegingen of kosten bij overdracht. Probeer uw slipping tolerantie te vergroten."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Naar (ten minste)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Om te beginnen met handelen op {0}, moet u eerst uw activa overbruggen van L1 naar L2. Beschouw dit als een bètaversie en leer over de risico's voordat u het gebruikt {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token niet ondersteund"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transactie voltooid in"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Transactiedeadline"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transactie afgewezen."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token overdragen"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Niet-opgeëist:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Onbepaald"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Onverwachte fout. Kon het gas voor de swap niet schatten."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Onverwacht probleem met het schatten van het gas. Probeer het opnieuw."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap-bestuur"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Servicevoorwaarden van Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap beschikbaar in: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap migratiecontract↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap op {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Onbekende bron"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Onbekende fout{0}. Probeer uw slippage tolerantie te vergroten. Let op: kosten voor overdracht en rebase tokens zijn niet compatibel met Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Stemmen beëindigd {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Stemmen eindigt ongeveer {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Stemmen begint ongeveer {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Wachten op bevestiging"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuten"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "via {0} tokenlijst"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: no_NO\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Maks)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(rediger)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Fjern sending"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Fjern mottaker"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Tillatt glidning"
|
||||
msgid "Amount"
|
||||
msgstr "Beløp"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Det oppstod en feil under forsøket på å utføre dette byttet. Det kan hende du må øke glidetoleransen. Hvis det ikke fungerer, kan det være en inkompatibilitet med symbolet du handler. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Auto ruter"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Tilgjengelig for innskudd: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Tilbake"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Ved å legge til denne listen stoler du implisitt på at dataene er riktige. Hvem som helst kan opprette en liste, inkludere å lage falske versjoner av eksisterende lister og lister som påstår å representere prosjekter som ikke har et."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Ved å koble til en lommebok, samtykker du til <0>Tjenestevilkår</0> og erkjenner at du har lest og forstått <1>Aviswaps protokollansvars</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ved å koble til en lommebok godtar du Uniswap Labs' <0>vilkår for bruk</0> og erkjenner at du har lest og forstått Uniswap <1>Protocol Ansvarsfraskrivelse</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Bekreft denne transaksjonen i lommeboken din"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Bekreft transaksjonen i lommeboken"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Koble til lommebok"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Koble til en lommebok"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Koble til en lommebok"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Koble til en lommebok for å finne potter"
|
||||
@@ -719,11 +716,11 @@ msgstr "Redigere"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Effektivitetssammenligning"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Oppgi en prosent"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Oppgi en mottaker"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Skriv inn en adresse for å aktivere en UNI-henting. Hvis adressen har n
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Oppgi et beløp"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Gjemme seg"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Høy pris konsekvens"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Hvordan denne appen bruker APIer"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Jeg forstår"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Hvis du kjøper en pollett fra denne listen, kan det hende du ikke kan selge den tilbake."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Installer metamaske"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Utilstrekkelig likviditet for denne handelen."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Utilstrekkelig {0} saldo"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Utilstrekkelig {0} saldo"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Grensesnittsinnstillinger"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Ugyldig par"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Ugyldig par"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Ugyldig par."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ugyldig prisinngang"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ugyldig prisinngang"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Ugyldig område valgt. Minsteprisen må være lavere enn maks prisen."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Ugyldig mottaker"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Lære mer"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Lær om å skaffe likviditet"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Lære mer"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Juridisk og personvern"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Lys tema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum mottatt"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Mangler avhengigheter"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Ingen V2-likviditet funnet."
|
||||
msgid "No active pools"
|
||||
msgstr "Ingen aktive potter"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Ingen data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Ingen beskrivelse."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Foreslått handling"
|
||||
msgid "Proposer"
|
||||
msgstr "Foreslå"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokoll Ansvarsfraskrivelse"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "I kø"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Fjern liste"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Fjerner {0} {1} og {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Fjerner {0} {1} og{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Velg et nettverk"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Velg en pollett"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Levering"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Leverer {0} {1} og {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Leverer {0} {1} og{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Bytt uansett"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Bytt nøyaktig <0/> for <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Bytting mislyktes: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Bytte {0} {1} mot {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Takk for at du er en del av Uniswap-fellesskapet <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% Du vil tjene i gebyrer."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap-invarianten x * y = k ble ikke tilfreds med byttet. Dette betyr vanligvis at en av pollettene du bytter inneholder tilpasset oppførsel ved overføring."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Appen henter blokkjededata fra The Graphs vertstjeneste."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Appen henter kjededata og konstruerer kontraktanrop med et Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Appen henter den optimale handelsruten fra en Uniswap Labs-server."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Appen logger anonymisert bruksstatistikk for å forbedre seg over tid."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Appen samler sikkert lommebokadressen din og deler den med TRM Labs Inc. av risiko- og samsvarsgrunner."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Inngangspolletten kan ikke overføres. Det kan være et problem med inndatapolletten."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Inngangspolletten kan ikke overføres. Det kan være et problem med innd
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Markedsprisen er kun utenfor ditt angitte prisintervall."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Utgangspolletten kan ikke overføres. Det kan være et problem med utgangspolletten."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Utgangstokenet kan ikke overføres. Det kan være et problem med utgangstokenet. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Prisen på denne potten er innenfor ditt valgte område. Din posisjon er
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Forholdet mellom symboler du legger til vil angi prisen på denne potten."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Transaksjonen kunne ikke sendes fordi fristen er passert. Kontroller at transaksjonsfristen ikke er for lav."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Det er ingen likviditetsdata."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Disse pollettene er ofte sammenkoblet med andre polletter."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Denne appen bruker følgende tredjeparts APIer:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Dette bassenget må initialiseres før du kan tilføre likviditet. For å initialisere, velg en startpris for bassenget. Deretter angir du likviditetsprisklasse og innskuddsbeløp. Bensinavgifter vil være høyere enn vanlig på grunn av initialiseringstransaksjonen."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Denne ruten optimaliserer prisen ved å vurdere delte ruter, flere hopp
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Denne polletten vises ikke på den / de aktive pollettlistene. Forsikre deg om at dette er polletten du vil handle."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Dette tokenet støttes ikke i Uniswap Labs-appen"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Dette verktøyet vil trygt migrere din {0} likviditeten til V3. Prosessen er fullstendig pålitelig takket være"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Denne transaksjonen vil ikke lykkes på grunn av prisbevegelse. Prøv å øke glidetoleransen. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Denne transaksjonen vil ikke lykkes på grunn av prisbevegelse eller gebyr ved overføring. Prøv å øke glidetoleransen."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Til (minst)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "For å begynne å handle på {0}, må du først bygge bro mellom eiendelene dine fra L1 til L2. Behandle dette som en betaversjon og lær om risikoen før du bruker {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token støttes ikke"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Polletter"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaksjonen fullført i"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Transaksjons frist"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaksjonen ble avvist."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Overfør token"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Ikke angitt:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Ubestemt"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Uventet feil. Kunne ikke estimere gass for byttet."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Uventet problem med estimering av gassen. Vær så snill, prøv på nytt."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap-styring"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs sine vilkår for bruk"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap er tilgjengelig om: <0>{0}</0>"
|
||||
@@ -1786,13 +1868,13 @@ msgstr "Uniswap-migrasjonskontrakt↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap på {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Ukjent kilde"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ukjent feil{0}. Prøv å øke glidetoleransen. Merk: gebyr ved overføring og rebase-tokens er inkompatibelt med Uniswap V3."
|
||||
msgstr "Ukjent feil{0}. Prøv å øke glattoleransen. Merk: gebyr ved overføring og rebase -tokens er inkompatibelt med Uniswap V3."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Stemmegivningen avsluttet {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Avstemming slutter om {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Avstemningen starter ca {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Venter på bekreftelse"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minutter"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "via {0} pollett-liste"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: pl_PL\n"
|
||||
"Language-Team: Polish\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(edytować)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Usuń wysłanie"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Usuń odbiorcę"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Dozwolony poślizg"
|
||||
msgid "Amount"
|
||||
msgstr "Kwota"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Wystąpił błąd podczas próby wykonania tej wymiany. Może być konieczne zwiększenie tolerancji na poślizg. Jeśli to nie zadziała, może występować niezgodność z tokenem, którym handlujesz. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automatyczny router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Dostępne do wpłaty: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Powrót"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Dodając tę listę domyślnie ufasz że dane są poprawne. Każdy może utworzyć listę, w tym tworzyć fałszywe wersje istniejących list i list, które twierdzą, że reprezentują projekty, które ich nie posiadają."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Łącząc portfel, akceptujesz <0>Warunki korzystania z Uniswap Labs’ </0> i potwierdzasz, że przeczytałeś i zrozumiałeś <1>Uniswap Protocol disclaimer</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Podłączając portfel, zgadzasz się na Warunki korzystania z usługi <0></0> i potwierdzasz, że przeczytałeś i zrozumiałeś Zastrzeżenie dotyczące protokołu <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Potwierdź tę transakcję w swoim portfelu"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Potwierdź transakcję w portfelu"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Połącz portfel"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Połącz portfel"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Połącz z portfelem"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Połącz się z portfelem, aby znaleźć pule"
|
||||
@@ -719,11 +716,11 @@ msgstr "Edytować"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Porównanie wydajności"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Wpisz procent"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Wprowadź odbiorcę"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Wprowadź adres do uruchomienia UNI. Jeśli adres ma jakiekolwiek roszcz
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Wprowadź kwotę"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Ukryć"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Wpływ Wysokiej Ceny"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Jak ta aplikacja korzysta z interfejsów API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Rozumiem"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Jeśli kupisz token z tej listy, możesz nie być w stanie go odsprzedać."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Zainstaluj Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Niewystarczająca płynność na tę transakcję."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Niewystarczające saldo {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Niewystarczające saldo {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Ustawienia interfejsu"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Nieprawidłowa para"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Nieprawidłowa para"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Nieprawidłowa para."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Nieprawidłowa cena wprowadzona"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Nieprawidłowa cena wprowadzona"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Wybrano nieprawidłowy zakres. Minimalna cena musi być niższa niż maksymalna cena."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Nieprawidłowy odbiorca"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Ucz się więcej"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Dowiedz się, jak zapewnić płynność"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Ucz się więcej"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Prawo i prywatność"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Jasny motyw"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Otrzymane minimum"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Brakujące zależności"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Więcej"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Nie znaleziono płynności V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Brak aktywnych pul"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Brak danych"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Bez opisu."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Proponowane działanie"
|
||||
msgid "Proposer"
|
||||
msgstr "Wniosek"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Zastrzeżenie dotyczące protokołu"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "W kolejce"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Usuń listę"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Usuwanie {0} {1} i {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Usuwanie {0} {1} i{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Wybierz sieć"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Wybierz token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Dostawa"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Zapewnianie {0} {1} i {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Dostarczanie {0} {1} i{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Zamień mimo to"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Zamień dokładnie <0/> na <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Zamiana nie powiodła się: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Zamiana {0} {1} na {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Dziękujemy za bycie częścią społeczności Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "%, który zarobisz na opłatach."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Niezmiennik Uniswap x * y = k nie został spełniony przez zamianę. Zwykle oznacza to, że jeden z wymienianych tokenów ma niestandardowe zachowanie podczas transferu."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Aplikacja pobiera dane łańcucha bloków z hostowanej usługi The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Aplikacja pobiera dane w łańcuchu i konstruuje wywołania kontraktów za pomocą interfejsu API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Aplikacja pobiera optymalną trasę handlową z serwera Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Aplikacja rejestruje anonimowe statystyki użytkowania, aby z czasem ulegać poprawie."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Aplikacja bezpiecznie gromadzi Twój adres portfela i udostępnia go TRM Labs Inc. ze względu na ryzyko i zgodność."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Nie można przenieść tokena wejściowego. Być może wystąpił problem z tokenem wejściowym."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Nie można przenieść tokena wejściowego. Być może wystąpił proble
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Cena rynkowa znajduje się poza Twoim zakresem cenowym. Tylko depozyt pojedynczego aktywa."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Nie można przenieść tokenu wyjściowego. Może wystąpić problem z tokenem wyjściowym."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Nie można przenieść tokena wyjściowego. Może występować problem z tokenem wyjściowym. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Cena tej puli mieści się w wybranym przez Ciebie zasięgu. Twoja pozyc
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Współczynnik dodanych tokenów ustawi cenę tej puli."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Nie można wysłać transakcji, ponieważ upłynął termin. Sprawdź, czy termin transakcji nie jest zbyt krótki."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Brak danych o płynności."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Te żetony są zwykle sparowane z innymi żetonami."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Ta aplikacja korzysta z następujących interfejsów API innych firm:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Ta pula musi zostać zainicjowana, zanim będzie można dodać płynność. Aby zainicjować, wybierz cenę wywoławczą dla puli. Następnie wprowadź zakres cen płynności i kwotę depozytu. Opłaty za gaz będą wyższe niż zwykle ze względu na transakcję inicjalizacji."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Ta trasa optymalizuje cenę, biorąc pod uwagę podzielone trasy, wiele
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ten token nie pojawia się na aktywnych listach tokenów. Upewnij się, że jest to token, którym chcesz handlować."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ten token nie jest obsługiwany w aplikacji Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "To narzędzie będzie bezpiecznie migrować Twoją płynność {0} do V3. Proces jest całkowicie pozbawiony zaufania dzięki"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ta transakcja nie powiedzie się z powodu ruchu cen. Spróbuj zwiększyć swoją tolerancję na poślizg. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Ta transakcja nie powiedzie się ze względu na ruch cen lub opłatę za transfer. Spróbuj zwiększyć tolerancję na poślizg."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Co najmniej do"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Aby rozpocząć handel na {0}, najpierw połącz swoje aktywa z L1 do L2. Potraktuj to jako wersję beta i dowiedz się o zagrożeniach przed użyciem {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token nie jest obsługiwany"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokeny"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transakcja zakończona w"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Termin transakcji"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transakcja odrzucona."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Transfer tokena"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Niezgłoszony:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Nieokreślony"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Niespodziewany błąd. Nie udało się oszacować gazu do wymiany."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Nieoczekiwany problem z szacowaniem gazu. Proszę spróbuj ponownie."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Zarządzanie uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Warunki korzystania z usługi Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap dostępny w: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Umowa o migracji Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap na {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Nieznane źródło"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Nieznany błąd{0}. Spróbuj zwiększyć swoją tolerancję na poślizg. Uwaga: opłata za transfer i rebase tokeny są niezgodne z Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Głosowanie zakończyło się {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Głosowanie kończy się około {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Głosowanie zaczyna się około {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Oczekiwanie na potwierdzenie"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuty"
|
||||
msgid "via {0}"
|
||||
msgstr "przez {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "przez {0} listy tokenów"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Máx)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(editar)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Remover o envio"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Remover destinatário"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Deslizamento permitido"
|
||||
msgid "Amount"
|
||||
msgstr "Valor"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ocorreu um erro ao tentar executar esta troca. Pode ser necessário aumentar sua tolerância ao deslizamento. Se isso não funcionar, pode haver uma incompatibilidade com o token que você está negociando. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Auto Router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponível para depósito: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Voltar"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Ao acrescentar esta lista, você está implicitamente confirmando que considera os dados corretos. Qualquer pessoa pode criar uma lista, incluindo versões falsas de listas existente e listas que alegam representar projetos que não existem."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Ao se conectar a uma carteira, você concorda com os <0>Termos de Serviço</0> do Uniswap Laboratório e declara ter lido e compreendido o <1>Termo de Isenção de Responsabilidade do Protocolo Unisawp</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ao conectar uma carteira, você concorda com os Termos de Serviço</0> <0>e reconhece que leu e entendeu a Isenção <1>Responsabilidade do Protocolo</1>do Uniswap 2."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Confirmar esta operação na sua carteira"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Confirme a transação na carteira"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Conectar-se à carteira"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Conectar-se a uma carteira"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Conectar-se a uma carteira"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Conectar-se a uma carteira para localizar lotes"
|
||||
@@ -719,11 +716,11 @@ msgstr "Editar"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Comparação de Eficiência"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Digite um percentual"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Digite um destinatário"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Digite um endereço para solicitar um resgate de UNI. Se o endereço tiv
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Digite um valor"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Esconder"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Impacto de preços altos"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Como este aplicativo usa APIs"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Entendi"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Se você comprar um token desta lista, pode não ser possível vendê-lo novamente."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Instalar o Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Liquidez insuficiente para esta negociação."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Saldo insuficiente {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Saldo insuficiente {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Configurações de Interface"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Par inválido"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Par inválido"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Par inválido."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Preço lançado inválido"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Preço lançado inválido"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Faixa selecionada inválida. O preço mín deve ser inferior ao preço máx."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Destinatário inválido"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Saber mais"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Aprenda sobre como fornecer liquidez"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Saber mais"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Legal e privacidade"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema claro"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Mín:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínimo recebido"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependências ausentes"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mais"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Nenhuma liquidez V2 encontrada."
|
||||
msgid "No active pools"
|
||||
msgstr "Nenhum lote ativo"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Sem dados"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Sem descrição."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Ação Proposta"
|
||||
msgid "Proposer"
|
||||
msgstr "Proponente"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Isenção de responsabilidade do protocolo"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Na fila"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Remover lista"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Removendo {0} {1} e {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Removendo {0} {1} e{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Selecione uma rede"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Selecione um token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Fornecimento"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Fornecendo {0} {1} e {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Fornecendo {0} {1} e{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Converter assim mesmo"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Troque exatamente <0 /> por <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "A troca falhou: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Convertendo {0} {1} para {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Obrigado por fazer parte da comunidade Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "A% que você receberá em taxas."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "A invariante x*y=k do Uniswap não foi observada na conversão. Isto geralmente significa que um dos tokens que você está convertendo tem um comportamento de transferência personalizado."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "O aplicativo busca dados de blockchain do serviço hospedado do Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "O aplicativo busca dados na cadeia e constrói chamadas de contrato com uma API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "O aplicativo busca a rota comercial ideal de um servidor Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "O aplicativo registra estatísticas de uso anônimas para melhorar ao longo do tempo."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "O aplicativo coleta com segurança o endereço da sua carteira e o compartilha com a TRM Labs Inc. por motivos de risco e conformidade."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "O token lançado não pode ser transferido. Pode haver um problema com o token lançado."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "O token lançado não pode ser transferido. Pode haver um problema com o
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "O preço de mercado está fora da faixa de preço especificada. Somente para depósito de um único ativo."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "O token resultante não pode ser transferido. Pode haver um problema com o token resultante."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "O token de saída não pode ser transferido. Pode haver um problema com o token de saída. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "O preço deste lote está dento da faixa selecionada. Sua posição atua
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "A proporção de tokens que você adicionar determina o preço deste lote."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "A operação não pode ser enviada após a data-limite. Confirme se a data-limite da operação não é cedo demais."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Não há dados de liquidez."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Esses tokens costumam ser pareados com outros tokens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Este aplicativo usa as seguintes APIs de terceiros:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Este pool deve ser inicializado antes que você possa adicionar liquidez. Para inicializar, selecione um preço inicial para o pool. Em seguida, insira sua faixa de preço de liquidez e o valor do depósito. As taxas de gás serão mais altas do que o normal devido à transação de inicialização."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Esta rota otimiza seu preço considerando rotas divididas, vários salto
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Este token não figura na(s) lista(s) de tokens ativos. Certifique-se de que este é o tokens que você pretende negociar."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Este token não é compatível com o aplicativo Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Esta ferramenta fará a migração da sua liquidez {0} em segurança para V3. O processo não é inteiramente confiável, devido ao"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Esta transação não terá sucesso devido ao movimento do preço. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Esta operação não será realizada, devido às alterações nos preços ou à taxa de transferência. Tente aumentar sua tolerância a discrepâncias."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Para (pelo menos)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Para começar a negociar em {0}, primeiro conecte seus ativos de L1 a L2. Trate isso como uma versão beta e aprenda sobre os riscos antes de usar {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token não suportado"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transação concluída em"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Data-limite da operação"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transação rejeitada."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token de transferência"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Não resgatadas:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Indeterminado"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Erro inesperado. Não foi possível estimar o gás para a troca."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problema inesperado com a estimativa do gás. Por favor, tente novamente."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Governança do Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Termos de serviço do Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponível em: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Contrato de migração no Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap em {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Fonte desconhecida"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Erro desconhecido{0}. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Votação encerrada {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "A votação se encerra aproximadamente às {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "A votação começa aproximadamente {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Aguardando a confirmação"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "Minutos"
|
||||
msgid "via {0}"
|
||||
msgstr "por meio de {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "por meio da lista de tokens {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Máximo)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(editar)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Remover o envio"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Remover destinatário"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Deslizamento permitido"
|
||||
msgid "Amount"
|
||||
msgstr "Quantia"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ocorreu um erro ao tentar executar esta troca. Pode ser necessário aumentar sua tolerância ao deslizamento. Se isso não funcionar, pode haver uma incompatibilidade com o token que você está negociando. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Auto Router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponível para depositar: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Ao adicionar esta lista, está a confiar implicitamente que os dados estão corretos. Qualquer pessoa pode criar uma lista, incluindo a criação de versões falsas de listas existentes e listas que afirmam representar projetos que não possuem uma."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Ao ligar uma carteira, concorda com os <0>Termos de Serviço</0> da Uniswap Labs e reconhece que leu e entendeu o <1>Aviso do Protocolo Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Ao conectar uma carteira, você concorda com os Termos de Serviço</0> <0>e reconhece que leu e entendeu a Isenção <1>Responsabilidade do Protocolo</1>do Uniswap 2."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Confirmar esta transação na sua carteira"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Confirme a transação na carteira"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Ligar Carteira"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Ligar uma carteira"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Ligar a uma carteira"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Ligar a uma carteira para encontrar pools"
|
||||
@@ -719,11 +716,11 @@ msgstr "Editar"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Comparação de Eficiência"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Insira uma percentagem"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Insira um destinatário"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Insira um endereço para acionar uma reivindicação UNI. Se o endereço
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Inserir um montante"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Esconder"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Impacto de preço elevado"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Como este aplicativo usa APIs"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Eu compreendo"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Se comprar um token desta lista, pode não conseguir vendê-lo de volta."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Instalar Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Liquidez insuficiente para esta troca."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Saldo {0} insuficiente"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Saldo {0} insuficiente"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Configurações de Interface"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Par inválido"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Par inválido"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Par inválido."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Entrada de preço inválida"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Entrada de preço inválida"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Intervalo selecionado inválido. O preço mínimo deve ser inferior ao preço máximo."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Destinatário inválido"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Saber mais"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Aprenda sobre como fornecer liquidez"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Saber mais"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Legal e privacidade"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema claro"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Mín:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Mínimo recebido"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependências ausentes"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mais"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Nenhuma liquidez V2 encontrada."
|
||||
msgid "No active pools"
|
||||
msgstr "Não existem pools ativas"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Sem dados"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Sem descrição."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Ação Proposta"
|
||||
msgid "Proposer"
|
||||
msgstr "Propositor"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Isenção de responsabilidade do protocolo"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Na fila"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Remover lista"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "A remover {0} {1} e {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Removendo {0} {1} e{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Selecione uma rede"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Selecione um token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Fornecer"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "A fornecer {0} {1} e {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Fornecendo {0} {1} e{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Trocar mesmo assim"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Troque exatamente <0 /> por <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "A troca falhou: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "A Trocar {0} {1} por {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Obrigado por fazer parte da comunidade Uniswap <0 />"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "A% que você receberá em taxas."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "O invariante Uniswap x * y = k não foi satisfeito pela troca. Isso geralmente significa que um dos tokens que está a trocar incorpora um comportamento personalizado aquando da transferência."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "O aplicativo busca dados de blockchain do serviço hospedado do Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "O aplicativo busca dados na cadeia e constrói chamadas de contrato com uma API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "O aplicativo busca a rota comercial ideal de um servidor Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "O aplicativo registra estatísticas de uso anônimas para melhorar ao longo do tempo."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "O aplicativo coleta com segurança o endereço da sua carteira e o compartilha com a TRM Labs Inc. por motivos de risco e conformidade."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "O token de entrada não pode ser transferido. Pode haver um problema com o token de entrada."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "O token de entrada não pode ser transferido. Pode haver um problema com
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "O preço de mercado está fora do seu intervalo de preços especificado. Apenas depósito de ativo único."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "O token de saída não pode ser transferido. Pode haver um problema com o token de saída."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "O token de saída não pode ser transferido. Pode haver um problema com o token de saída. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "O preço desta pool está dentro do seu intervalo selecionado. A sua pos
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "A proporção de tokens que adicionar irá definir o preço desta pool."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "A transação não pôde ser enviada porque o prazo expirou. Verifique se o prazo da transação não é muito reduzido."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Não há dados de liquidez."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Estes tokens são normalmente emparelhados com outros tokens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Este aplicativo usa as seguintes APIs de terceiros:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Este pool deve ser inicializado antes que você possa adicionar liquidez. Para inicializar, selecione um preço inicial para o pool. Em seguida, insira sua faixa de preço de liquidez e o valor do depósito. As taxas de gás serão mais altas do que o normal devido à transação de inicialização."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Esta rota otimiza seu preço considerando rotas divididas, vários salto
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Este token não aparece na(s) lista(s) de tokens ativos. Certifique-se que este é o token que deseja negociar."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Este token não é compatível com o aplicativo Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Esta ferramenta migrará com segurança a sua liquidez {0} para V3. O processo é completamente autónomo graças à"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Esta transação não terá sucesso devido ao movimento do preço. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Esta transação não terá sucesso devido ao movimento do preço ou à comissão sobre transferência. Tente aumentar a sua tolerância ao deslizamento."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Para (no mínimo)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Para começar a negociar em {0}, primeiro conecte seus ativos de L1 a L2. Trate isso como uma versão beta e aprenda sobre os riscos antes de usar {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token não suportado"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transação concluída em"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Prazo de transação"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transação rejeitada."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Token de transferência"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Não Reivindicado:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Indeterminado"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Erro inesperado. Não foi possível estimar o gás para a troca."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problema inesperado com a estimativa do gás. Por favor, tente novamente."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap Governança"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Termos de serviço do Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponível em: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap contrato de migração↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap em {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Fonte desconhecida"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Erro desconhecido{0}. Tente aumentar sua tolerância ao deslizamento. Nota: a taxa de transferência e tokens de rebase são incompatíveis com Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Votação terminada {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "A votação termina aproximadamente em {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "A votação começa aproximadamente {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "A aguardar confirmação"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minutos"
|
||||
msgid "via {0}"
|
||||
msgstr "através de {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "através de {0} lista de token"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ro_RO\n"
|
||||
"Language-Team: Romanian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(editează)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Elimină trimiterile"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Eliminați destinatarul"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Glisare permisă"
|
||||
msgid "Amount"
|
||||
msgstr "Sumă"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "A apărut o eroare la încercarea de a executa acest swap. Este posibil să fie nevoie să vă măriți toleranța la alunecare. Dacă acest lucru nu funcționează, poate exista o incompatibilitate cu jetonul pe care îl tranzacționați. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Router auto"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Disponibil pentru depunere: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Înapoi"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Sold:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Prin adăugarea acestei liste ești încrezător implicit că datele sunt corecte. Oricine poate crea o listă, inclusiv crearea de versiuni false ale listelor și liste existente care pretind că reprezintă proiecte care nu au unul."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Prin conectarea unui portofel, ești de acord cu <0>Termenii de Utilizare</0> ai Uniswap Lab și accepți că ai citit și înțeles <1>Protocolul de Renunțare al Uniswap </1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Prin conectarea unui portofel, sunteți de acord cu <0>Termenii și condițiile</0> și confirmați că ați citit și înțeles Declinarea răspunderii privind protocolul <1></1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Confirmă această tranzacție în portofelul tău"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Confirmați tranzacția în portofel"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Conectează Portofelul"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Conectează un portofel"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Conectează-te la un portofel"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Conectează-te la un portofel pentru a găsi rezerve"
|
||||
@@ -719,11 +716,11 @@ msgstr "Editați | ×"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Compararea eficienței"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Introdu un procent"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Introdu un destinatar"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Introdu o adresă pentru a declanșa o revendicare UNI. Dacă adresa are
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Introdu o sumă"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Ascunde"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Impact Preț Ridicat"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Cum folosește această aplicație API-urile"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Înţeleg"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Dacă cumperi un jeton din această listă, s-ar putea să nu îl poți vinde înapoi."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Instalează Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Lichiditate insuficientă pentru această tranzacție."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Sold {0} insuficient"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Sold {0} insuficient"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Setări Interfață"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Pereche nevalidă"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Pereche nevalidă"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Pereche nevalidă."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Introducere de preț nevalidă"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Introducere de preț nevalidă"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Interval invalid selectat. Prețul minim trebuie să fie mai mic decât prețul maxim."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Destinatar nevalid"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Aflați mai multe"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Aflați despre furnizarea de lichiditate"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Află mai multe"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Legal și confidențialitate"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Tema luminii"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Min:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum primit"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Dependențe lipsă"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mai mult"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Nu s-a găsit nicio Lichiditate V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Nu există grupuri active"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Nu există date"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Fără descriere."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Acțiunea propusă"
|
||||
msgid "Proposer"
|
||||
msgstr "Propunător"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Disclaimer privind protocolul"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "În așteptare"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Elimină lista"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Se elimină {0} {1} și {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Se elimină {0} {1} și{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Selectați o rețea"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Selectează un grup/jeton"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Furnizare"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Se furnizează {0} {1} și {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Furnizarea {0} {1} și{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Schimbă Oricum"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Schimbați exact <0 /> cu <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Schimbarea a eșuat: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Se schimbă {0} {1} cu {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Îți mulțumim că faci parte din comunitatea Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Procentul pe care îl veți câștiga în taxe."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Invariantul Uniswap x*y=k nu a fost satisfăcut de schimbare. Acest lucru înseamnă, de obicei, că unul dintre jetoanele pe care le schimbi încorporează un comportament personalizat la transfer."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Aplicația preia date blockchain de la serviciul găzduit The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Aplicația preia date în lanț și construiește apeluri contractuale cu un API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Aplicația preia ruta comercială optimă de pe un server Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Aplicația înregistrează statistici de utilizare anonimizate pentru a se îmbunătăți în timp."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Aplicația vă colectează în siguranță adresa portofelului și o partajează cu TRM Labs Inc. din motive de risc și de conformitate."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Jetonul de intrare nu poate fi transferat. Este posibil să existe o problemă cu jetonul de intrare."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Jetonul de intrare nu poate fi transferat. Este posibil să existe o pro
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Prețul de piață este în afara intervalului de preț specificat. Doar depozitul de active unice."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Jetonul de ieșire nu poate fi transferat. S-ar putea să existe o problemă cu simbolul de ieșire."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Jetonul de ieșire nu poate fi transferat. S-ar putea să existe o problemă cu simbolul de ieșire. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Prețul acestui pool se încadrează în intervalul selectat. Poziția d
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Raportul dintre jetoanele adăugate va stabili prețul acestui grup."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Tranzacția nu a putut fi trimisă deoarece termenul a trecut. Te rugăm să verifici dacă termenul limită al acestei tranzacției nu este prea mic."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Nu există date privind lichiditatea."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Aceste jetoane sunt de obicei asociate cu alte jetoane."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Această aplicație folosește următoarele API-uri terță parte:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Acest pool trebuie inițializat înainte de a putea adăuga lichidități. Pentru a inițializa, selectați un preț de pornire pentru piscină. Apoi, introduceți intervalul de preț al lichidității și suma depozitului. Taxele pe gaz vor fi mai mari decât de obicei datorită tranzacției de inițializare."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Această rută vă optimizează prețul luând în considerare traseele
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Acest jeton nu apare pe lista (listele) de jetoane active. Asigură-te că acesta este jetonul pe care vrei să îl tranzacționezi."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Acest simbol nu este acceptat în aplicația Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Acest instrument va migra în siguranță lichiditatea ta {0} în V3. Procesul este complet lipsit de încredere datorită"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Această tranzacție nu va reuși din cauza mișcării prețurilor. Încercați să vă măriți toleranța la alunecare. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Această tranzacție nu va reuși nici din cauza mișcării prețului, nici a comisioanelor la transfer. Încearcă să îți sporești toleranța la alunecare."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "La (cel puțin)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Pentru a începe tranzacționarea pe {0}, mai întâi conectați-vă activele de la L1 la L2. Vă rugăm să tratați acest lucru ca o versiune beta și să aflați despre riscuri înainte de a utiliza {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Tokenul nu este acceptat"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Jetoane"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Tranzacție finalizată în"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Termen limită tranzacție"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Tranzacția respinsă."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Jeton de transfer"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Nererevendicat:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Nedeterminat"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Eroare neașteptată. Nu s-a putut estima gazul pentru swap."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Problemă neașteptată cu estimarea gazului. Vă rugăm să încercați din nou."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Guvernare Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Termenii și condițiile Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponibil în: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Contract de migrare Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap pe {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Sursă Necunoscută"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Eroare necunoscută{0}. Încercați să vă măriți toleranța la alunecare. Notă: taxa pentru jetoane de transfer și rebase sunt incompatibile cu Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Votarea s-a încheiat {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Votarea se termină aproximativ {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Votarea începe cu aproximativ {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "În Așteptarea Confirmării"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minute"
|
||||
msgid "via {0}"
|
||||
msgstr "prin {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "prin {0} lista de jetoane"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-25 10:06\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: ru_RU\n"
|
||||
"Language-Team: Russian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Макс.)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(изменить)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Удалить отправку"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Удалить получателя"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -152,7 +156,7 @@ msgstr "Добавить"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Add <0/> and <1/> to Uniswap V2"
|
||||
msgstr "Добавить <0 /> и <1 /> в Uniswap V2"
|
||||
msgstr "Добавить <0/> и <1/> в Uniswap V2"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Add Delegate +"
|
||||
@@ -223,7 +227,7 @@ msgstr "Допустимое проскальзывание"
|
||||
msgid "Amount"
|
||||
msgstr "Сумма"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Произошла ошибка при попытке произвести этот обмен. Возможно, нужно увеличить допустимое проскальзывание. Если это не сработает, возможно, имеет место несовместимость с токеном, которым вы торгуете. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3."
|
||||
|
||||
@@ -274,7 +278,7 @@ msgstr "Мост в Arbitrum"
|
||||
|
||||
#: src/components/DowntimeWarning/index.tsx
|
||||
msgid "Arbitrum is in Beta and may experience downtime. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more.</0>"
|
||||
msgstr "Arbitrum находится на стадии бета-тестирования и может испытывать простои. Во время простоя ваша позиция не будет получать комиссию, и вы не сможете удалить ликвидность. <0> Читать дальше.</0>"
|
||||
msgstr "Arbitrum находится на стадии бета-тестирования, возможны перерывы в его работе. Во время перерыва ваша позиция не будет зарабатывать комиссии, и вы не сможете удалить ликвидность. <0>Читать дальше.</0>"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Are you sure?"
|
||||
@@ -300,10 +304,6 @@ msgstr "Автомаршрутизатор"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Доступно для внесения: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Баланс:"
|
||||
@@ -344,7 +344,7 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Добавляя этот список, вы подразумеваете, что доверяете его данным. Любой может создать список, включая создание поддельных версий существующих списков, а также списков, якобы сделанных проектами, у которых нет списков."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Подключая кошелёк, вы соглашаетесь с <0>Условиями предоставления услуг</0> Uniswap Labs и подтверждаете, что прочитали и поняли <1>Отказ от претензий протокола Uniswap</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
@@ -361,7 +361,7 @@ msgstr "Графики"
|
||||
|
||||
#: src/components/Header/ChainConnectivityWarning.tsx
|
||||
msgid "Check network status"
|
||||
msgstr "Проверить статус сети"
|
||||
msgstr "Проверьте состояние сети"
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Check out our v3 LP walkthrough and migration guides."
|
||||
@@ -375,7 +375,7 @@ msgstr "Востребовать"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Claim <0/> for {0}"
|
||||
msgstr "Востребовать <0 /> за {0}"
|
||||
msgstr "Востребовать <0/> за {0}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/Menu/index.tsx
|
||||
@@ -391,7 +391,7 @@ msgstr "Claim UNI Token"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Claim UNI reward for {0}"
|
||||
msgstr "Востребовать награду UNI за {0}"
|
||||
msgstr "Востребовать награду в UNI за {0}"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Claim fees"
|
||||
@@ -465,7 +465,7 @@ msgstr "Получить комиссии"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Collect {0}/{1} fees"
|
||||
msgstr "Собирают {0}/{1} сборы"
|
||||
msgstr "Получить комиссии {0}/{1}"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collected"
|
||||
@@ -516,30 +516,27 @@ msgstr "Подтвердите эту транзакцию в своём кош
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Подтвердите транзакцию в кошельке"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Подключить кошелёк"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Подключить кошелёк"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Подключить кошелёк"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Подключите кошелёк, чтобы найти пулы"
|
||||
@@ -719,11 +716,11 @@ msgstr "Изменить"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Сравнение эффективности"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Введите процент"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Введите получателя"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Введите адрес, чтобы востребовать UNI. Ес
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Введите сумму"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Скрыть"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Высокое влияние на цену"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Как это приложение использует API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Я понимаю"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Если вы купите токен из этого списка, есть вероятность, что вы не сможете продать его обратно."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Установить MetaMask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Недостаточно ликвидности для этой сделки."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Баланс {0} недостаточен"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Баланс {0} недостаточен"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Настройки интерфейса"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Неверная пара"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Неверная пара"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Неверная пара."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Цена указана неверно"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Цена указана неверно"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Выбран неверный диапазон. Минимальная цена должна быть меньше, чем максимальная цена."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Неверный получатель"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Узнать больше"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Узнать подробнее о предоставлении ликвидности"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Узнать больше"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Юридическая информация и политика конфиденциальности"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Светлая тема"
|
||||
@@ -1010,7 +1023,7 @@ msgstr "Загрузка"
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Manage"
|
||||
msgstr "Управлять"
|
||||
msgstr "Управление"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Manage Liquidity in Rewards Pool"
|
||||
@@ -1043,7 +1056,7 @@ msgstr "Макс.:"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Maximum sent"
|
||||
msgstr "Максимально к отправлению"
|
||||
msgstr "Максимум к продаже"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Menu"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Мин.:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Минимум к получению"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Отсутствуют зависимости"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Ещё"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Ликвидность в V2 не обнаружена."
|
||||
msgid "No active pools"
|
||||
msgstr "Нет активных пулов"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Нет данных"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Нет описания."
|
||||
@@ -1182,11 +1203,11 @@ msgstr "Шлюз в Optimism"
|
||||
|
||||
#: src/components/DowntimeWarning/index.tsx
|
||||
msgid "Optimistic Ethereum is in Beta and may experience downtime. Optimism expects planned downtime to upgrade the network in the near future. During downtime, your position will not earn fees and you will be unable to remove liquidity. <0>Read more.</0>"
|
||||
msgstr "Оптимистичный Ethereum находится на стадии бета-тестирования и может испытывать простои. В ближайшем будущем ожидается запланированный простой Optimism для обновления сети. Во время простоя ваша позиция не будет зарабатывать комиссии, и вы не сможете удалить ликвидность. <0>Читать дальше.</0>"
|
||||
msgstr "Оптимистичный Ethereum находится на стадии бета-тестирования, возможны перерывы в работе. В ближайшем будущем ожидается плановый перерыв в работе Optimism для обновления сети. Во время перерыва ваша позиция не будет зарабатывать комиссии, и вы не сможете удалить ликвидность. <0>Читать дальше.</0>"
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Optimistic Etherscan"
|
||||
msgstr "Etherscan сети Optimism"
|
||||
msgstr "Etherscan для Optimism"
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "Out of range"
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Предлагаемое действие"
|
||||
msgid "Proposer"
|
||||
msgstr "Автор предложения"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Отказ от ответственности протокола"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "В очереди"
|
||||
@@ -1377,7 +1402,7 @@ msgstr "Удалить"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Remove <0/> and <1/>"
|
||||
msgstr "Удалить <0 /> и <1 />"
|
||||
msgstr "Удалить <0/> и <1/>"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Remove Amount"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Удалить список"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Удаление {0} {1} и {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Удаление {0} {1} и{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Выберите сеть"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Выберите токен"
|
||||
|
||||
@@ -1484,7 +1512,7 @@ msgstr "Допустимое проскальзывание"
|
||||
|
||||
#: src/components/swap/UnsupportedCurrencyFooter.tsx
|
||||
msgid "Some assets are not available through this interface because they may not work well with the smart contracts or we are unable to allow trading for legal reasons."
|
||||
msgstr "Некоторые активы недоступны через этот интерфейс, потому что они могут неправильно работать со смарт-контрактами или мы не можем разрешить торговлю по юридическим причинам."
|
||||
msgstr "Некоторые активы недоступны через этот интерфейс, потому что они могут неправильно работать со смарт-контрактами или из-за того, что мы не можем разрешить торговлю по юридическим причинам."
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Внести"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Внесение {0} {1} и {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Внесение {0} {1} и{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1536,7 +1564,7 @@ msgstr "Обменять"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Swap <0/> for exactly <1/>"
|
||||
msgstr "Обменять <0 /> на ровно <1 />"
|
||||
msgstr "Обменять <0/> на ровно <1/>"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1545,7 +1573,12 @@ msgstr "Всё равно обменять"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Обменять ровно <0 /> на <1 />"
|
||||
msgstr "Обменять ровно <0/> на <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Обмен не удался: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Спасибо, что присоединились к сообщест
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "%, который вы заработаете в виде комиссий."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Инвариант Uniswap x * y = k не соблюдается при обмене. Обычно это означает, что один из токенов, которые вы обмениваете, имеет особенности поведения при его передаче."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Приложение получает данные блокчейна из сервиса The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Приложение получает данные, хранящиеся в блокчейне, и конструирует вызовы контрактов при помощи API от Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Приложение получает оптимальный маршрут для сделки с сервера Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Приложение собирает анонимную статистику использования, чтобы улучшаться со временем."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Приложение безопасно получает адрес вашего кошелька и передает его TRM Labs Inc. в целях управления рисками и соблюдения требований законодательства."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Невозможно перевести входящий токен. Возможно, имеется проблема с входящим токеном."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Невозможно перевести входящий токен. В
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Рыночная цена находится вне указанного вами диапазона. Вы можете внести только один актив."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Невозможно перевести токен к получению. Возможно, имеется проблема с токеном к получению."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Невозможно перевести токен к получению. Возможно, имеется проблема с токеном к получению. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Цена этого пула находится в пределах вы
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Соотношение добавляемых вами токенов установит цену этого пула."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Транзакция не может быть отправлена, потому что срок её действия истек. Пожалуйста, убедитесь, что срок действия вашей транзакции не слишком короткий."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Нет данных о ликвидности."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Пары с этими токенами создаются чаще всего."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Это приложение использует следующие сторонние API:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Этот пул необходимо инициализировать, прежде чем вы сможете добавить ликвидность. Для инициализации выберите начальную цену для пула. Затем введите диапазон цен для ликвидности и сумму депозита. Плата за газ будет выше, чем обычно, из-за инициализирующей транзакции."
|
||||
@@ -1613,21 +1670,25 @@ msgstr "Этот пул необходимо инициализировать в
|
||||
|
||||
#: src/components/swap/SwapRoute.tsx
|
||||
msgid "This route optimizes your price by considering split routes, multiple hops, and gas costs."
|
||||
msgstr "Этот маршрут оптимизирует для вас цену, оценивая возможность разделения маршрутов, сложные маршруты, а также стоимость газа."
|
||||
msgstr "Этот маршрут оптимизирует вашу конечную цену с учётом возможности разбивки маршрутов, использования сложных маршрутов, а также стоимости газа."
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Этот токен не входит в активные списки токенов. Убедитесь, что это действительно тот токен, которым вы хотите торговать."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Этот токен не поддерживается в приложении от Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "При помощи этого инструмент вы можете безопасно перенести свою ликвидность {0} в V3. Процесс не требует доверия благодаря"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Эта транзакция не будет успешной из-за движения цены. Попробуйте увеличить допустимое проскальзывание. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Эта транзакция не будет успешной из-за движения цены или комиссии за перевод. Попробуйте увеличить допустимое проскальзывание."
|
||||
|
||||
@@ -1648,7 +1709,11 @@ msgstr "На токены (минимум)"
|
||||
|
||||
#: src/components/NetworkAlert/NetworkAlert.tsx
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Чтобы начать торговлю на {0}, вам нужно перенести свои активы с L1 на L2 через мост. Пожалуйста, относитесь к этому как к бета-версии и узнайте о рисках, прежде чем использовать {1}."
|
||||
msgstr "Чтобы начать торговлю в {0}, вам нужно перенести свои активы с L1 на L2 через мост. Пожалуйста, относитесь к этому как к бета-версии и узнайте о рисках, прежде чем использовать {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Токен не поддерживается"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
@@ -1656,7 +1721,7 @@ msgstr "Токены"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Токены из неактивных списков. Импортируйте нужные токены ниже, либо нажмите «Управлять», чтобы активировать другие списки."
|
||||
msgstr "Показаны токены из неактивных списков. Импортируйте нужные токены или нажмите «Управлять», чтобы активировать больше списков."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Транзакция завершена за"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Cрок действия транзакции"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Транзакция отклонена."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Перевести токен"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Невостребовано:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Не определено"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Неожиданная ошибка. Невозможно спрогнозировать газ для обмена."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Неожиданная проблема при прогнозировании газа. Пожалуйста, попробуйте еще раз."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Управление Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Условия предоставления услуг Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap доступен на языке <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Контракт переноса Uniswap ↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap в {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Неизвестный источник"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Неизвестная ошибка{0}. Попробуйте увеличить допустимое проскальзывание. Обратите внимание: токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3."
|
||||
|
||||
@@ -1827,7 +1909,7 @@ msgstr "Развернуть"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Unwrap <0/> to ETH"
|
||||
msgstr "Развернуть <0 /> в ETH"
|
||||
msgstr "Развернуть <0/> в ETH"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Update Delegation"
|
||||
@@ -1839,7 +1921,7 @@ msgstr "Обновить список"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Use the Uniswap Labs API to get better pricing through a more efficient route."
|
||||
msgstr "Использовать API Uniswap Labs, чтобы получить более выгодную цену за счет более эффективного маршрута."
|
||||
msgstr "Использовать API от Uniswap Labs, чтобы получить более выгодную цену за счет более эффективного маршрута."
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "User"
|
||||
@@ -1936,7 +2018,7 @@ msgstr "Проголосовать за предложение {proposalKey}"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote for proposal {proposalKey} with reason \"{0}\""
|
||||
msgstr "Проголосуйте за предложение {proposalKey} по причине \"{0}\""
|
||||
msgstr "Проголосовать за предложение {proposalKey} по причине \"{0}\""
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
@@ -1945,11 +2027,11 @@ msgstr "Воздержаться при голосовании по предло
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote to abstain on proposal {proposalKey}"
|
||||
msgstr "Воздержаться при голосовании по предложению {proposalKey}"
|
||||
msgstr "Воздержаться от голосования по предложению {proposalKey}"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Vote to abstain on proposal {proposalKey} with reason \"{0}\""
|
||||
msgstr "Проголосовать за воздержание по предложению {proposalKey} по причине \"{0}\""
|
||||
msgstr "Воздержаться от голосования по предложению {proposalKey} по причине \"{0}\""
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting ended {0}"
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Голосование закончилось {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Голосование заканчивается примерно {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Голосование начнется примерно с {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Ожидание подтверждения"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "минут(-ы)"
|
||||
msgid "via {0}"
|
||||
msgstr "из {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "из списка токенов {0}"
|
||||
|
||||
|
||||
2454
src/locales/sl-SI.po
Normal file
2454
src/locales/sl-SI.po
Normal file
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sr_SP\n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$ -"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Макс)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(уреди)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Уклони слање"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Уклоните примаоца"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Дозвољено клизање"
|
||||
msgid "Amount"
|
||||
msgstr "Износ"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Дошло је до грешке приликом покушаја извршења ове замене. Можда ћете морати повећати толеранцију клизања. Ако то не успе, можда постоји некомпатибилност са токеном којим тргујете. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Ауто Роутер"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Доступно за депозит: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Стање:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Додавањем ове листе имплицитно сте сагласни да су подаци тачни. Свако може да креира листу, укључујући стварање лажних верзија постојећих листа и листа за које се тврди да представљају пројекте којих нема."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Повезивањем новчаника прихватате Uniswap Labs <0>Услове коришћења услуге</0> и потврђујете да сте прочитали и разумели <1>Изјаву о одрицању одговорности Uniswap протокола</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Povezivanjem novčanika prihvatate Uslove korišćenja usluge <0></0> i potvrđujete da ste pročitali i razumeli Odricanje odgovornosti</1><1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Потврдите ову трансакцију у новчанику"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Потврдите трансакцију у новчанику"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Повежите новчаник"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Повежите новчаник"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Повежите се са новчаником"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Повежите се са новчаником да бисте пронашли фондове"
|
||||
@@ -719,11 +716,11 @@ msgstr "Уредити"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Поређење ефикасности"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Унесите проценат"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Унесите примаоца"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Унесите адресу да бисте покренули преу
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Унесите износ"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Сакрити"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Утицај високе цене"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Kako ova aplikacija koristi API-je"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "разумем"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Ако купите жетон са ове листе, можда нећете моћи да га вратите."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Инсталирајте Метамаск"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Недовољна ликвидност за ову трговину."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Недовољно {0} на стању"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Недовољно {0} на стању"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Подешавања интерфејса"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Неважећи пар"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Неважећи пар"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Неважећи пар."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Неважећи унос цене"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Неважећи унос цене"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Изабран је неважећи опсег. Минимална цена мора бити нижа од максималне."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Неважећи прималац"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Сазнајте више"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Сазнајте више о обезбеђивању ликвидности"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Сазнајте више"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Pravo i privatnost"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Лигхт Тхеме"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Мин:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Минимално примљено"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Недостају зависности"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Више"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Није пронађена ликвидност V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Нема активних фондова"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Нема података"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Нема описа."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Предложена акција"
|
||||
msgid "Proposer"
|
||||
msgstr "Предлагач"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protocol Disclaimer"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "У реду"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Уклони листу"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Уклањање {0} {1} и {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Уклањање {0} {1} и{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Изаберите мрежу"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Изаберите жетон"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Снабдевање"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Снабдевање {0} {1} и {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Снабдевање {0} {1} и{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Замени свеједно"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Замените тачно <0/> за <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Замена није успела: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Замена {0} {1} за {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Хвала вам што сте део заједнице Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% Који ћете зарадити на накнадама."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap непроменљива x*y=k није испоштована разменом. То обично значи да један од токена које замењујете укључује прилагођено понашање приликом преноса."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Aplikacija preuzima blokčein podatke sa hostovane usluge The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Aplikacija preuzima podatke na lancu i konstruiše ugovorne pozive pomoću Infura API-ja."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Aplikacija preuzima optimalni trgovački put sa servera Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Aplikacija beleži anonimnu statistiku korišćenja kako bi se vremenom poboljšala."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Aplikacija bezbedno prikuplja adresu vašeg novčanika i deli je sa TRM Labs Inc. iz razloga rizika i usklađenosti."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Токен за унос није могуће пренети. Можда постоји проблем са улазним токеном."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Токен за унос није могуће пренети. Можд
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Тржишна цена је изван наведеног распона цена. Само депозит за једно средство."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Излазни токен се не може пренети. Можда постоји проблем са излазним токеном."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Излазни токен се не може пренети. Можда постоји проблем са излазним токеном. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Цена овог фонда је у вашем одабраном оп
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Однос жетона које додате ће одредити цену овог фонда."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Трансакција није могла бити послата јер је рок истекао. Молимо вас да проверите да ваш рок за трансакцију није пренизак."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Нема података о ликвидности."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Ови токени су обично упарени са другим токенима."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Ova aplikacija koristi sledeće API-je treće strane:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Овај фонд мора бити иницијализован да бисте могли да додате ликвидност. Да бисте иницијализирали, одаберите почетну цену за базен. Затим унесите опсег цена ликвидности и износ депозита. Накнаде за плин биће веће него обично због трансакције иницијализације."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Ова рута оптимизује вашу цену узимајућ
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Овај токен се не појављује на листи активних токена. Уверите се да је ово жетон којим желите да тргујете."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Ovaj token nije podržan u aplikaciji Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Овај алат ће безбедно пребацити вашу {0} ликвидност на V3. Процес је потпуно неповерљив захваљујући"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ова трансакција неће успети због кретања цена. Покушајте да повећате толеранцију на клизање. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Ова трансакција неће успети или због кретања цена или због накнаде за пренос. Покушајте да повећате клизну толеранцију."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "До (најмање)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Да бисте започели трговање на {0}, прво премостите своју имовину са Л1 на Л2. Молимо вас да ово третирате као бета издање и сазнате о ризицима пре коришћења {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token nije podržan"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Жетони"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Трансакција је завршена у"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Крајњи рок за трансакцију"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Трансакција је одбијена."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Токен за пренос"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Непотраживано:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Неодређено"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Неочекивана грешка. Није могуће проценити гас за замену."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Неочекивани проблем са проценом гаса. Молим вас, покушајте поново."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap управљање"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uslovi korišćenja usluge Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap доступан у: <0>{0}</0>"
|
||||
@@ -1786,13 +1868,13 @@ msgstr "Uniswap уговор о миграцији↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Унисвап на {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Непознат извор"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Непозната грешка{0}. Покушајте да повећате толеранцију на клизање. Напомена: накнада за токене за пренос и пребазу није компатибилна са Унисвап В3."
|
||||
msgstr "Непозната грешка{0}. Покушајте повећати толеранцију клизања. Напомена: накнада за токене за пренос и поновну надоградњу није компатибилна са Унисвап В3."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Гласање се завршило {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Гласање се завршава приближно {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Гласање почиње отприлике {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Чека се потврда"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "минута"
|
||||
msgid "via {0}"
|
||||
msgstr "преко {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "преко {0} листе токена"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sv_SE\n"
|
||||
"Language-Team: Swedish\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Max)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(redigera)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Ta bort sändning"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Ta bort mottagaren"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Tillåten glidning"
|
||||
msgid "Amount"
|
||||
msgstr "Belopp"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ett fel uppstod när det här försöket skulle genomföras. Du kan behöva öka din glidningstolerans. Om det inte fungerar kan det finnas en inkompatibilitet med det token du handlar. Obs: avgift för överföring och rebase-tokens är oförenliga med Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Automatisk router"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Tillgänglig för insättning: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Tillbaka"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Saldo:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Genom att lägga till de här listan litar du underförstått på att uppgifterna är korrekta. Vem som helst kan skapa en lista, inklusive att skapa falska versioner av befintliga listor och listor som påstår sig representera projekt som inte har en lista."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Genom att ansluta en plånbok samtycker du till Uniswap Labs <0>användarvillkor</0> och bekräftar att du har läst och förstått <1>Uniswap-protokollets ansvarsfriskrivning</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Genom att ansluta en plånbok godkänner du Uniswap Labs <0>Användarvillkor</0> och bekräftar att du har läst och förstått Uniswap <1>Protocol Disclaimer</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Bekräfta transaktionen i din plånbok"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Bekräfta transaktionen i plånboken"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Anslut plånbok"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Anslut en plånbok"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Anslut till en plånbok"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Anslut till en plånbok för att hitta pooler"
|
||||
@@ -719,11 +716,11 @@ msgstr "Redigera"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Effektivitetsjämförelse"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Ange en procentandel"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Ange en mottagare"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Ange en adress för att utlösa ett UNI-krav. Om adressen har några UNI
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Ange ett belopp"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Dölj"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Hög prispåverkan"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Hur den här appen använder API:er"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Jag förstår"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Om du köper en token från den här listan kanske du inte kan sälja tillbaka den."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Installera Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Otillräcklig likviditet för denna handel."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Otillräckligt {0} saldo"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Otillräckligt {0} saldo"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Gränssnittsinställningar"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Ogiltigt par"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Ogiltigt par"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Ogiltigt par."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ogiltig prisinmatning"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ogiltig prisinmatning"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Ogiltigt intervall valt. Minimipriset måste vara lägre än maxpriset."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Ogiltig mottagare"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Läs mer"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Lär dig mer om att tillhandahålla likviditet"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Läs mer"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Juridik och integritet"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Ljus tema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Minimum:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum mottaget"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Beroenden saknas"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Ingen V2-likviditet hittades."
|
||||
msgid "No active pools"
|
||||
msgstr "Inga aktiva pooler"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Inga data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Ingen beskrivning."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Föreslagen åtgärd"
|
||||
msgid "Proposer"
|
||||
msgstr "Förslagsgivare"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokollfriskrivning"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Kö"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Ta bort lista"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Tar bort {0} {1} och {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Ta bort {0} {1} och{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Välj ett nätverk"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Välj en token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Tillgång"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Levererar {0} {1} och {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Levererar {0} {1} och{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Byt ändå"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Byt exakt <0/> för <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Byte misslyckades: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Byter ut {0} {1} mot {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Tack för att du deltar i Uniswap-gemenskapen<0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Den procent du tjänar i avgifter."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap-invarianten x * y = k var inte nöjd med bytet. Detta innebär vanligtvis att ett av de token du byter innehåller anpassat beteende vid överföring."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Appen hämtar blockchain-data från The Graphs värdtjänst."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Appen hämtar data i kedjan och konstruerar kontraktsanrop med ett Infura API."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Appen hämtar den optimala handelsvägen från en Uniswap Labs-server."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Appen loggar anonymiserad användningsstatistik för att förbättras över tid."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Appen samlar säkert in din plånboksadress och delar den med TRM Labs Inc. av risk- och efterlevnadsskäl."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Inmatningstoken kan inte överföras. Det kan finnas ett problem med inmatningtoken."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Inmatningstoken kan inte överföras. Det kan finnas ett problem med inm
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Marknadspriset ligger utanför ditt angivna prisintervall. Endast insättning för enstaka tillgång."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Utmatningstoken kan inte överföras. Det kan finnas ett problem med utmatningtoken."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Utmatningstoken kan inte överföras. Det kan finnas ett problem med utmatningtoken. Obs att avgifter för överföring och rebase-tokens är oförenliga med Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Priset för denna pool ligger inom ditt valda intervall. För närvarand
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Förhållandet mellan tokens du lägger till kommer att bestämma priset på denna pool."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Transaktionen kunde inte skickas eftersom tidsfristen har löpt ut. Kontrollera att din transaktionstidsfrist inte är för kort."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Det finns inga likviditetsdata."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Dessa tokens paras vanligtvis ihop med andra tokens."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Den här appen använder följande API:er från tredje part:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Denna pool måste initieras innan du kan lägga till likviditet. För att initialisera, välj ett startpris för poolen. Ange sedan ditt likviditetsprisklass och insättningsbelopp. Gasavgifterna kommer att vara högre än vanligt på grund av initialiseringstransaktionen."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Denna rutt optimerar ditt pris genom att överväga delade rutter, flera
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Den här token visas inte i den eller de aktiva tokenlistorna. Se till att detta är den token som du vill handla med."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Denna token stöds inte i Uniswap Labs-appen"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Detta verktyg migrerar säkert din {0} likviditet till V3. Processen är helt pålitlig tack vare"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Denna transaktion kommer inte att lyckas på grund av prisrörelser. Försök öka din toleransmarginal. Obs att avgifter vid överföring och rebase-tokens är oförenliga med Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Denna transaktion kommer inte att lyckas antingen på grund av prisrörelser eller avgift vid överföring. Försök att öka din toleransmarginal."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Till (minst)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "För att börja handla med {0}, överbrygga först dina tillgångar från L1 till L2. Behandla detta som en betaversion och lär dig om riskerna innan du använder {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Token stöds inte"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Transaktionen slutfördes"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Tidsfrist för transaktion"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Transaktionen avvisades."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Överför Token"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Ej krävda:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Obestämd"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Oväntat fel. Det gick inte att uppskatta gasen för bytet."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Oväntat problem med att uppskatta gasen. Var god försök igen."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap-styrning"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs användarvillkor"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap tillgänglig på: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap migrationskontrakt↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap på {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Okänd källa"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Okänt fel{0}. Försök öka din toleransmarginal. Obs att avgifter vid överföring och rebase-tokens är oförenliga med Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Röstningen avslutades {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Röstningen slutar ungefär {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Omröstningen börjar cirka {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Väntar på bekräftelse"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "minuter"
|
||||
msgid "via {0}"
|
||||
msgstr "via {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "via {0} token-lista"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-26 16:06\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: sw_TZ\n"
|
||||
"Language-Team: Swahili, Tanzania\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$ -"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Sote)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(rekebisha)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Ondoa kutuma"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Ondoa mpokeaji"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Kuruhusiwa Slippage"
|
||||
msgid "Amount"
|
||||
msgstr "Kiasi"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Hitilafu ilitokea wakati wa kujaribu kutekeleza ubadilishaji huu. Unaweza kuhitaji kuongeza uvumilivu wako wa kuteleza. Ikiwa hiyo haifanyi kazi, kunaweza kuwa na kutokubaliana na ishara unayofanya biashara. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3."
|
||||
|
||||
@@ -298,11 +302,7 @@ msgstr "Njia ya Kiotomatiki"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Inapatikana kwa amana: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Nyuma"
|
||||
msgstr "Inapatikana kwa kutuma: {0}"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
@@ -315,21 +315,21 @@ msgstr "Kiasi: {0} {1}"
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for exotic pairs."
|
||||
msgstr "Bora kwa jozi za kigeni."
|
||||
msgstr "Bora kwa pair maalum."
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for most pairs."
|
||||
msgstr "Bora kwa jozi nyingi."
|
||||
msgstr "Bora kwa pair nyingi."
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for stable pairs."
|
||||
msgstr "Bora kwa jozi thabiti."
|
||||
msgstr "Bora kwa pair thabiti."
|
||||
|
||||
#: src/components/Blocklist/index.tsx
|
||||
msgid "Blocked address"
|
||||
msgstr "Anwani iliyozuiwa"
|
||||
msgstr "Anwani iliyozuiliwa"
|
||||
|
||||
#: src/components/Header/NetworkSelector.tsx
|
||||
msgid "Bridge"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Kwa kuongeza orodha hii unaamini kabisa kuwa data ni sahihi. Mtu yeyote anaweza kuunda orodha, pamoja na kuunda matoleo bandia ya orodha zilizopo na orodha ambazo zinadai kuwakilisha miradi ambayo haina moja."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Kwa kuunganisha mkoba, unakubali Sheria na Masharti ya Maabara yasiyobadilishwa <0></0> na utambue kuwa umesoma na kuelewa kitoweo cha <1> Uniswap itifaki ya itifaki</1> ."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Kwa kuunganisha mkoba, unakubaliana na Uniswap Labs ' <0>Masharti ya Huduma</0> na kutambua kwamba umesoma na kuelewa Uniswap <1>Itifaki Kanusho</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -395,7 +395,7 @@ msgstr "Dai malipo ya UNI kwa {0}"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Claim fees"
|
||||
msgstr "Ada ya madai"
|
||||
msgstr "Chukua makato"
|
||||
|
||||
#: src/components/Popups/ClaimPopup.tsx
|
||||
msgid "Claim your UNI tokens"
|
||||
@@ -421,7 +421,7 @@ msgstr "Inachukuliwa"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Claiming UNI"
|
||||
msgstr "Kudai UNI"
|
||||
msgstr "Inachukuliwa UNI"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
@@ -516,30 +516,27 @@ msgstr "Thibitisha shughuli hii kwenye mkoba wako"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Thibitisha shughuli kwenye mkoba"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Unganisha Mkoba"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Unganisha mkoba"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Unganisha kwenye mkoba"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Unganisha kwenye mkoba kupata mabwawa"
|
||||
@@ -719,11 +716,11 @@ msgstr "Hariri"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Ufanisi Kulinganisha"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Ingiza asilimia"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Ingiza mpokeaji"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Ingiza anwani ili kuchochea dai la UNI. Ikiwa anwani ina UNI yoyote inay
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Ingiza kiasi"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Ficha"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Athari ya Bei ya Juu"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Jinsi programu hii inavyotumia API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Naelewa"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Ukinunua tokeni kutoka kwa orodha hii, huenda usiweze kuiuza tena."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Sakinisha Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Ukosefu wa kutosha wa biashara hii."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Usawa wa kutosha {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Usawa wa kutosha {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Mipangilio ya Kiolesura"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Jozi batili"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Jozi batili"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Jozi batili."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Ingizo batili la bei"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Ingizo batili la bei"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Masafa batili yamechaguliwa. Bei ya min lazima iwe chini kuliko bei ya juu."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Mpokeaji si sahihi"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Jifunze zaidi"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Jifunze juu ya kutoa ukwasi"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Jifunze zaidi"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Kisheria na Faragha"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Mandhari mepesi"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Dak:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Kiwango cha chini kimepokelewa"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Kukosa utegemezi"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Zaidi"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Hakuna V2 Liquidity iliyopatikana."
|
||||
msgid "No active pools"
|
||||
msgstr "Hakuna mabwawa ya kazi"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Hakuna data"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Hakuna maelezo."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Hatua Iliyopendekezwa"
|
||||
msgid "Proposer"
|
||||
msgstr "Mtangazaji"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Kanusho la Itifaki"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Imewekwa foleni"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Ondoa orodha"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Kuondoa {0} {1} na {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Kuondoa {0} {1} na{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Chagua mtandao"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Chagua ishara"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Ugavi"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Kusambaza {0} {1} na {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Kusambaza {0} {1} na{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Badili Vyovyote vile"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Badilisha kabisa <0 /> kwa <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Kubadilisha kumeshindwa: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Kubadilisha {0} {1} kwa {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Asante kwa kuwa sehemu ya jamii ya Uniswap <0 />"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% Utakayopata katika ada."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Kiasi kisichobadilika x * y = k hakiridhika na ubadilishaji. Hii kawaida inamaanisha moja ya ishara unazobadilisha zinajumuisha tabia ya kawaida kwenye uhamishaji."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Programu huchota data ya blockchain kutoka kwa huduma inayopangishwa na The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Programu huchota data ya mtandaoni na kuunda simu za mkataba kwa kutumia API ya Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Programu hutafuta njia mojawapo ya biashara kutoka kwa seva ya Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Programu huweka takwimu za matumizi bila utambulisho ili kuboreshwa kadri muda unavyopita."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Programu hukusanya kwa usalama anwani ya mkoba wako na kuishiriki na TRM Labs Inc. kwa sababu za hatari na kufuata."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Ishara ya kuingiza haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara ya kuingiza."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Ishara ya kuingiza haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Bei ya soko iko nje ya kiwango chako cha bei maalum. Amana ya mali moja tu."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Ishara ya pato haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara ya pato."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ishara ya pato haiwezi kuhamishwa. Kunaweza kuwa na shida na ishara ya pato. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Bei ya dimbwi hili iko katika anuwai uliyochagua. Msimamo wako kwa sasa
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Uwiano wa ishara unazoongeza zitaweka bei ya dimbwi hili."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Shughuli haikuweza kutumwa kwa sababu tarehe ya mwisho imepita. Tafadhali angalia kuwa tarehe ya mwisho ya ununuzi sio chini sana."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Hakuna data ya ukwasi."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Ishara hizi kawaida huunganishwa na ishara zingine."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Programu hii hutumia API za wahusika wengine zifuatazo:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Bwawa hili lazima lianzishwe kabla ya kuongeza ukwasi. Ili kuanzisha, chagua bei ya kuanzia ya bwawa. Kisha, ingiza anuwai ya bei ya ukwasi na kiwango cha amana. Ada ya gesi itakuwa kubwa kuliko kawaida kwa sababu ya shughuli za uanzishaji."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Njia hii inaboresha bei yako kwa kuzingatia njia zilizogawanyika, hops n
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Ishara hii haionekani kwenye orodha (s) zinazotumika. Hakikisha hii ndio ishara kwamba unataka kufanya biashara."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Tokeni hii haitumiki katika programu ya Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Chombo hiki kitahamisha {0} kwa V3. Mchakato huo hauna shukrani kabisa kwa"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Uuzaji huu hautafaulu kwa sababu ya harakati za bei. Jaribu kuongeza uvumilivu wako wa kuteleza. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Ununuzi huu hautafanikiwa ama kwa sababu ya kusonga kwa bei au ada kwenye uhamishaji. Jaribu kuongeza uvumilivu wako wa kuteleza."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Kwa (angalau)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Kuanza biashara kwenye {0}, kwanza gumbua mali zako kutoka L1 hadi L2. Tafadhali chukua hii kama kutolewa kwa beta na ujifunze juu ya hatari kabla ya kutumia {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Tokeni haitumiki"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Ishara"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Ununuzi umekamilika katika"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Mwisho wa shughuli"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Ununuzi umekataliwa."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Hati ya Kuhamisha"
|
||||
@@ -1752,20 +1822,32 @@ msgstr "Aujachukua UNI"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Unclaimed fees"
|
||||
msgstr "Ada ambazo hazijadaiwa"
|
||||
msgstr "Makato ambayo ayajachukuliwa"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Unclaimed:"
|
||||
msgstr "Haikutajwa:"
|
||||
msgstr "Ayajachukuliwa:"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Undetermined"
|
||||
msgstr "Haijakadiriwa"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Hitilafu isiyotarajiwa. Haikuweza kukadiria gesi kwa ubadilishaji."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Suala lisilotarajiwa na kukadiria gesi. Tafadhali jaribu tena."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Utawala usiobadilika"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Sheria na Masharti ya Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Kubadilisha kunapatikana katika: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Mkataba wa uhamiaji usiobadilika↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Haibadiliki kwenye {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Chanzo kisichojulikana"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Hitilafu isiyojulikana{0}. Jaribu kuongeza uvumilivu wako wa kuteleza. Kumbuka: ada ya uhamishaji na toa rehani haziendani na Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Upigaji kura uliisha {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Upigaji kura unaisha takriban {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Upigaji kura huanza takriban {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Inasubiri Uthibitisho"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "dakika"
|
||||
msgid "via {0}"
|
||||
msgstr "kupitia {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "kupitia orodha ya ishara {0}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: th_TH\n"
|
||||
"Language-Team: Thai\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(สูงสุด)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(แก้ไข)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- ลบส่ง"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- ลบผู้รับ"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "อนุญาตการเลื่อนหลุด"
|
||||
msgid "Amount"
|
||||
msgstr "จำนวน"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "เกิดข้อผิดพลาดขณะพยายามดำเนินการสลับนี้ คุณอาจต้องเพิ่มความทนทานต่อการเลื่อนหลุด หากไม่ได้ผล อาจมีความไม่เข้ากันกับโทเค็นที่คุณกำลังซื้อขาย หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3"
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "เราเตอร์อัตโนมัติ"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "สามารถฝากได้: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "กลับ"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "สมดุล:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "การเพิ่มรายการนี้แสดงว่าคุณเชื่อมั่นโดยปริยายว่าข้อมูลถูกต้อง ใครๆ ก็สร้างรายการได้ ซึ่งรวมถึงการสร้างเวอร์ชันปลอมของรายการที่มีอยู่และรายการที่อ้างว่าเป็นตัวแทนของโครงการที่ไม่มีอยู่"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "การเชื่อมต่อกระเป๋าเงินหมายความว่าคุณยอมรับ <0>ข้อกำหนดในการให้บริการของ Uniswap Labs</0> และรับทราบว่าคุณได้อ่านและทำความเข้าใจ <1>ข้อจำกัดความรับผิดชอบของโปรโตคอล Uniswap</1> ."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "การเชื่อมต่อกระเป๋าเงินหมายความว่าคุณยอมรับข้อกำหนดในการให้บริการ <0></0> และรับทราบว่าคุณได้อ่านและทำความเข้าใจ Uniswap <1>Protocol Disclaimer</1>แล้ว"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "ยืนยันการทำธุรกรรมนี้ในก
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "ยืนยันการทำธุรกรรมในกระเป๋าเงิน"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "เชื่อมต่อกระเป๋าเงิน"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "เชื่อมต่อกระเป๋าสตางค์"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "เชื่อมต่อกับกระเป๋าสตางค์"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "เชื่อมต่อกับกระเป๋าเงินเพื่อค้นหาพูล"
|
||||
@@ -719,11 +716,11 @@ msgstr "แก้ไข"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "การเปรียบเทียบประสิทธิภาพ"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "ป้อนเปอร์เซ็นต์"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "ใส่ผู้รับ"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "ป้อนที่อยู่เพื่อเรียกใช้
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "ใส่จำนวนเงิน"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "ซ่อน"
|
||||
msgid "High Price Impact"
|
||||
msgstr "ผลกระทบราคาสูง"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "แอปนี้ใช้ API อย่างไร"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "ฉันเข้าใจ"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "หากคุณซื้อโทเค็นจากรายการนี้ คุณอาจไม่สามารถขายคืนได้"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "ติดตั้ง Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "สภาพคล่องไม่เพียงพอสำหรับการค้านี้"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "ไม่เพียงพอ {0} ยอดคงเหลือ"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "ไม่เพียงพอ {0} ยอดคงเหลือ"
|
||||
msgid "Interface Settings"
|
||||
msgstr "การตั้งค่าอินเทอร์เฟซ"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "คู่ไม่ถูกต้อง"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "คู่ไม่ถูกต้อง"
|
||||
msgid "Invalid pair."
|
||||
msgstr "คู่ที่ไม่ถูกต้อง"
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "ใส่ราคาไม่ถูกต้อง"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "ใส่ราคาไม่ถูกต้อง"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "เลือกช่วงที่ไม่ถูกต้อง ราคาขั้นต่ำต้องต่ำกว่าราคาสูงสุด"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "ผู้รับไม่ถูกต้อง"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "เรียนรู้เพิ่มเติม"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "เรียนรู้เกี่ยวกับการจัดหาสภาพคล่อง"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "เรียนรู้เพิ่มเติม"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "กฎหมาย & ความเป็นส่วนตัว"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "ธีมไฟ"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "นาที:"
|
||||
msgid "Minimum received"
|
||||
msgstr "รับขั้นต่ำ"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "ไม่มีการพึ่งพา"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "มากกว่า"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "ไม่พบสภาพคล่อง V2"
|
||||
msgid "No active pools"
|
||||
msgstr "ไม่มีสระว่ายน้ำที่ใช้งาน"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "ไม่มีข้อมูล"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "ไม่มีคำอธิบาย."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "การดำเนินการที่เสนอ"
|
||||
msgid "Proposer"
|
||||
msgstr "ผู้เสนอ"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "ข้อจำกัดความรับผิดชอบของโปรโตคอล"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "เข้าคิว"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "ลบรายการ"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "กำลังลบ {0} {1} และ {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "กำลังลบ {0} {1} และ{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "เลือกเครือข่าย"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "เลือกโทเค็น"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "จัดหา"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "จัดหา {0} {1} และ {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "จัดหา {0} {1} และ{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "สลับกัน"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "สลับเฉพาะ <0/> เป็น <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "สลับล้มเหลว: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "สลับ {0} {1} เป็น {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "ขอบคุณที่เป็นส่วนหนึ่งขอ
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% ที่คุณจะได้รับเป็นค่าธรรมเนียม"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "ค่าคงที่ Uniswap x*y=k ไม่พอใจโดยการแลกเปลี่ยน ซึ่งมักจะหมายถึงหนึ่งในโทเค็นที่คุณกำลังแลกเปลี่ยนรวมลักษณะการทำงานที่กำหนดเองในการโอน"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "แอพดึงข้อมูลบล็อคเชนจากบริการโฮสต์ของ The Graph"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "แอปดึงข้อมูลในสายโซ่และสร้างการเรียกสัญญาด้วย Infura API"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "แอพดึงเส้นทางการค้าที่เหมาะสมที่สุดจากเซิร์ฟเวอร์ Uniswap Labs"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "แอปจะบันทึกสถิติการใช้งานที่ไม่ระบุชื่อเพื่อปรับปรุงเมื่อเวลาผ่านไป"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "แอปจะรวบรวมที่อยู่กระเป๋าเงินของคุณอย่างปลอดภัยและแชร์กับ TRM Labs Inc. ด้วยเหตุผลด้านความเสี่ยงและการปฏิบัติตามข้อกำหนด"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "ไม่สามารถโอนโทเค็นอินพุตได้ อาจมีปัญหากับโทเค็นอินพุต"
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "ไม่สามารถโอนโทเค็นอินพุต
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "ราคาตลาดอยู่นอกช่วงราคาที่คุณกำหนด เงินฝากสินทรัพย์เดียวเท่านั้น"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "ไม่สามารถโอนโทเค็นเอาต์พุตได้ อาจมีปัญหากับโทเค็นเอาต์พุต"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "ไม่สามารถโอนโทเค็นเอาต์พุตได้ อาจมีปัญหากับโทเค็นเอาต์พุต หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3"
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "ราคาของพูลนี้อยู่ในช่วงท
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "อัตราส่วนของโทเค็นที่คุณเพิ่มจะกำหนดราคาของพูลนี้"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "ไม่สามารถส่งธุรกรรมได้เนื่องจากเลยกำหนดส่งแล้ว โปรดตรวจสอบว่ากำหนดเวลาในการทำธุรกรรมของคุณไม่ต่ำเกินไป"
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "ไม่มีข้อมูลสภาพคล่อง"
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "โทเค็นเหล่านี้มักจะจับคู่กับโทเค็นอื่น"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "แอพนี้ใช้ API บุคคลที่สามต่อไปนี้:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "ต้องเริ่มต้นกลุ่มนี้ก่อนจึงจะสามารถเพิ่มสภาพคล่องได้ ในการเริ่มต้น เลือกราคาเริ่มต้นสำหรับพูล จากนั้นป้อนช่วงราคาสภาพคล่องและจำนวนเงินฝาก ค่าธรรมเนียมก๊าซจะสูงกว่าปกติเนื่องจากการทำธุรกรรมเริ่มต้น"
|
||||
@@ -1619,15 +1676,19 @@ msgstr "เส้นทางนี้ปรับราคาของคุณ
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "โทเค็นนี้ไม่ปรากฏในรายการโทเค็นที่ใช้งานอยู่ ตรวจสอบให้แน่ใจว่านี่คือโทเค็นที่คุณต้องการซื้อขาย"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "ไม่รองรับโทเค็นนี้ในแอป Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "เครื่องมือนี้จะย้าย {0} ของคุณไปยัง V3 อย่างปลอดภัย กระบวนการนี้ไม่น่าเชื่อถืออย่างสมบูรณ์ต้องขอบคุณ"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "ธุรกรรมนี้จะไม่สำเร็จเนื่องจากการเคลื่อนไหวของราคา ลองเพิ่มความทนทานต่อการเลื่อนหลุด หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "ธุรกรรมนี้จะไม่สำเร็จเนื่องจากการเคลื่อนไหวของราคาหรือค่าธรรมเนียมในการโอน ลองเพิ่มความทนทานต่อการเลื่อนหลุด"
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "ถึง (อย่างน้อย)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "ในการเริ่มต้นซื้อขายในวันที่ {0}แรกให้เชื่อมโยงสินทรัพย์ของคุณจาก L1 ถึง L2 โปรดถือว่าเป็นรุ่นเบต้าและเรียนรู้เกี่ยวกับความเสี่ยงก่อนใช้ {1}"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "ไม่รองรับโทเค็น"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "โทเค็น"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "ธุรกรรมเสร็จสมบูรณ์ใน"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "กำหนดเวลาการทำธุรกรรม"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "ธุรกรรมถูกปฏิเสธ"
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "โทเค็นการโอน"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "ไม่มีการอ้างสิทธิ์:"
|
||||
msgid "Undetermined"
|
||||
msgstr "ไม่แน่นอน"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "ข้อผิดพลาดที่ไม่คาดคิด ไม่สามารถประมาณค่าก๊าซสำหรับการแลกเปลี่ยนได้"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "ปัญหาที่ไม่คาดคิดกับการประมาณค่าก๊าซ กรุณาลองอีกครั้ง."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "การกำกับดูแล Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "ข้อกำหนดในการให้บริการของ Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap มีให้ใน: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "สัญญาการโยกย้าย Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Uniswap บน {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "ไม่ทราบแหล่งที่มา"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "ข้อผิดพลาดที่ไม่รู้จัก{0}ลองเพิ่มความทนทานต่อการเลื่อนหลุด หมายเหตุ: ค่าธรรมเนียมการโอนและโทเค็นการรีเบสเข้ากันไม่ได้กับ Uniswap V3"
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "สิ้นสุดการโหวต {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "การลงคะแนนจะสิ้นสุดลงประมาณ {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "การลงคะแนนเริ่มต้นประมาณ {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "รอการยืนยัน"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "นาที"
|
||||
msgid "via {0}"
|
||||
msgstr "ผ่าน {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "ผ่าน {0} รายการโทเค็น"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-22 19:04\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Language-Team: Turkish\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Maks.)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(düzenle)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Göndermeyi kaldır"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Alıcıyı kaldır"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "İzin Verilen Kayma"
|
||||
msgid "Amount"
|
||||
msgstr "Miktar"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Bu takas yürütülmeye çalışılırken bir hata oluştu. Kayma toleransınızı artırmanız gerekebilir. Bu işe yaramazsa, işlem yaptığınız token ile uyumsuzluk olabilir. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Otomatik Yönlendirici"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Para yatırmaya uygun: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Geri"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Bakiye:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Bu listeyi ekleyerek, verilerin doğru olduğuna dolaylı olarak güveniyorsunuz. Mevcut listelerin sahte sürümlerini ve listesi olmayan projeleri temsil ettiğini iddia eden listeler de dahil olmak üzere herkes bir liste oluşturabilir."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Bir cüzdan bağlayarak Uniswap Labs'ın <0>Hizmet Şartları'nı</0> kabul etmiş ve <1>Uniswap protokolü sorumluluk reddini</1> okuduğunuzu ve anladığınızı onaylamış olursunuz."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Bir cüzdan bağlayarak, Uniswap Labs'ın kabul <0>Hizmet Şartları'nı</0> ve okuduğunuzu ve Uniswap anladığımı teyit <1>Protokol Uyarı</1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Cüzdanınızda bu işlemi onaylayın"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Cüzdandaki işlemi onaylayın"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Cüzdanı Bağlayın"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Cüzdan bağlayın"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Cüzdana bağlanın"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Havuzları bulmak için bir cüzdana bağlanın"
|
||||
@@ -719,11 +716,11 @@ msgstr "Düzenle"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Verimlilik Karşılaştırması"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Yüzde girin"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Bir alıcı girin"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Bir UNI talebini tetiklemek için bir adres girin. Adreste talep edilebi
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Bir tutar girin"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Saklamak"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Yüksek Fiyat Etkisi"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Bu uygulama API'leri nasıl kullanır?"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Anladım"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Bu listeden bir jeton satın alırsanız, tekrar satamayabilirsiniz."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Metamask'ı yükleyin"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Bu işlem için yetersiz likidite."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Yetersiz {0} bakiye"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Yetersiz {0} bakiye"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Arayüz Ayarları"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Geçersiz çift"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Geçersiz çift"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Geçersiz çift."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Geçersiz fiyat girişi"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Geçersiz fiyat girişi"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Geçersiz aralık seçildi. Minimum fiyat, maksimum fiyattan düşük olmalıdır."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Geçersiz alıcı"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Daha fazla bilgi edin"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Likidite sağlama hakkında bilgi edinin"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Daha fazla bilgi edin"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Yasal ve Gizlilik"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Işık Tema"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Minimum:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Minimum alınan"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Eksik bağımlılıklar"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Daha fazla"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "V2 Likiditesi bulunamadı."
|
||||
msgid "No active pools"
|
||||
msgstr "Aktif havuz yok"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Veri yok"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Açıklama yok."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Önerilen hareket"
|
||||
msgid "Proposer"
|
||||
msgstr "Teklif veren"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Protokol Sorumluluk Reddi"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "sıraya alındı"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Listeyi kaldır"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} ve {2} {3} kaldırılıyor"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "{0} {1} ve{2} {3}kaldırma"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Bir ağ seçin"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Bir jeton seçin"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Kaynak"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "{0} {1} ve {2} {3} temini"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Tedarik {0} {1} ve{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Yine de Swap"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Tam olarak <0/> ile <1/> arasında geçiş yapın"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Değiştirilemedi: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "{2} {3} yerine {0} {1} swap ediliyor"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Uniswap topluluğunun bir parçası olduğunuz için teşekkürler <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "Ücretlerde kazanacağınız yüzde."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Uniswap değişmez değeri x*y=k, swap ile sağlanmadı. Bu genellikle, swap ettiğiniz jetonlardan birinin aktarım sırasında özel davranış içerdiği anlamına gelir."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Uygulama, The Graph'in barındırılan hizmetinden blok zinciri verilerini alır."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Uygulama, zincir üzerindeki verileri getirir ve bir Infura API ile sözleşme çağrıları oluşturur."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Uygulama, bir Uniswap Labs sunucusundan en uygun ticaret yolunu getirir."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Uygulama, zaman içinde iyileştirmek için anonimleştirilmiş kullanım istatistiklerini günlüğe kaydeder."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Uygulama, cüzdan adresinizi güvenli bir şekilde toplar ve risk ve uyumluluk nedenleriyle TRM Labs Inc. ile paylaşır."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Giriş jetonu aktarılamaz. Giriş jetonuyla ilgili bir sorun olabilir."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Giriş jetonu aktarılamaz. Giriş jetonuyla ilgili bir sorun olabilir."
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Piyasa fiyatı, belirttiğiniz fiyat aralığının dışında. Yalnızca tek varlıklı para yatırma yapılabilir."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Çıkış jetonu aktarılamaz. Çıkış jetonuyla ilgili bir sorun olabilir."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Çıkış jetonu aktarılamaz. Çıkış belirteciyle ilgili bir sorun olabilir. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Bu havuzun fiyatı seçtiğiniz aralık dahilinde. Pozisyonunuz şu anda
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Eklediğiniz jeton oranı, bu havuzun fiyatını belirleyecektir."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Son tarih geçtiği için işlem gönderilemedi. Lütfen işlem sürenizin çok kısa olmadığından emin olun."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Likidite verisi yok."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Bu jetonlar genellikle diğer jetonlarla eşleştirilir."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Bu uygulama, aşağıdaki üçüncü taraf API'lerini kullanır:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Likidite eklemeden önce bu havuzun başlatılması gerekir. Başlatmak için havuz için bir başlangıç fiyatı seçin. Ardından likidite fiyat aralığınızı ve mevduat tutarınızı girin. Başlatma işlemi nedeniyle gaz ücretleri normalden daha yüksek olacaktır."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Bu rota, bölünmüş rotaları, birden fazla duraklamayı ve gaz maliye
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Bu jeton, aktif jeton listelerinde görünmüyor. Bunun takas etmek istediğiniz jeton olduğundan emin olun."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Bu belirteç, Uniswap Labs uygulamasında desteklenmiyor"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Bu araç, {0} likiditenizi güvenli bir şekilde V3'e geçirecektir. Bu süreç şunun sayesinde sayesinde tamamen güvensizdir:"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Bu işlem, fiyat hareketi nedeniyle başarılı olamayacak. Kayma toleransınızı artırmayı deneyin. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Bu işlem, ya fiyat hareketinden dolayı ya da transfer ücretinden dolayı başarılı olmayacak. Kayma toleransınızı artırmayı deneyin."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Alıcı (en az)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "{0}alım satıma başlamak için önce varlıklarınızı L1'den L2'ye köprüleyin. Lütfen bunu bir beta sürümü olarak ele alın ve kullanmadan önce riskler hakkında bilgi edinin {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Jeton desteklenmiyor"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Jetonlar"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "İşlem tamamlandı"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "İşlem son tarihi"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "İşlem reddedildi."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Transfer Jetonu"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Talep edilmeyen:"
|
||||
msgid "Undetermined"
|
||||
msgstr "belirsiz"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Beklenmeyen hata. Takas için gaz tahmin edilemedi."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Gaz tahmininde beklenmeyen bir sorun. Lütfen tekrar deneyin."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap Yönetimi"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs'ın Hizmet Şartları"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap kullanılabilir: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap geçiş sözleşmesi↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Üzerinde Uniswap {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Bilinmeyen Kaynak"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Bilinmeyen hata{0}. Kayma toleransınızı artırmayı deneyin. Not: Transfer ve rebase jetonlarındaki ücret, Uniswap V3 ile uyumlu değildir."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Oylama bitti {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Oylama yaklaşık şu zamanda bitecek: {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Oylama yaklaşık {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Onay Bekliyor"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "dakika"
|
||||
msgid "via {0}"
|
||||
msgstr "{0} üzerinden"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "{0} jeton listesi aracılığıyla"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: uk_UA\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Максимум)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(редагувати)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Видалити відправку"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Вилучити одержувача"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Дозволено прослизання"
|
||||
msgid "Amount"
|
||||
msgstr "Сума"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Під час спроби виконати цей обмін сталася помилка. Можливо, вам доведеться збільшити толерантність до ковзання. Якщо це не спрацює, можливо, існує несумісність з токеном, яким ви торгуєте. Примітка: плата за перенесення та перебазування токенів несумісні з Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Авто маршрутизатор"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Доступно для депозиту: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Баланс:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Додаючи цей список, ви непрямо погоджуєтеся з тим, що дані правильні. Будь-хто може створити список, включаючи створення підроблених версій існуючих списків і списків, які нібито представляють проекти, які його не мають."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Підключаючи гаманець, ви погоджуєтесь із <0>Умовами користування</0> Uniswap Labs та підтверджуєте, що прочитали й розумієте <1>Застереження щодо протоколу Uniswap</1>."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Підключаючи гаманець, ви погоджуєтеся з Умовами надання послуг <0></0> і підтверджуєте, що прочитали та розумієте відмову від відповідальності</1><1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Підтвердьте цю операцію у своєму гаман
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Підтвердіть транзакцію в гаманці"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Підключити Гаманець"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Підключіть гаманець"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Підключіться до гаманця"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Підключіться до гаманця, щоб знайти пули"
|
||||
@@ -719,11 +716,11 @@ msgstr "Редагувати"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "Порівняння ефективності"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Введіть відсоток"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Введіть одержувача"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Введіть адресу для ініціювання збору UNI
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Введіть суму"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Сховати"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Вплив високої ціни"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Як ця програма використовує API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Я розумію"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Якщо ви купуєте токен із цього списку, можливо, його не вдасться продати назад."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Встановити Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Недостатня ліквідність для цієї угоди."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Недостатній баланс {0}"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Недостатній баланс {0}"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Налаштування інтерфейсу"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Недійсна пара"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Недійсна пара"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Недійсна пара."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Недійсне введення ціни"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Недійсне введення ціни"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Вибрано недійсний діапазон. Мінімальна ціна має бути нижчою за максимальну."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Недійсний одержувач"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Вчи більше"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Дізнайтеся про забезпечення ліквідності"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Вчи більше"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Юридична інформація та конфіденційність"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Світла тема"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Мінімум:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Мінімум отриманих"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Відсутня залежність"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Більше"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Не знайдено ліквідності V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Немає активних пулів"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Немає даних"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Без опису."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Запропонована дія"
|
||||
msgid "Proposer"
|
||||
msgstr "Пропонувач"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Відмова від відповідальності протоколу"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "У черзі"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Видалити список"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Видалення {0} {1} та {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Видалення {0} {1} і{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Виберіть мережу"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Вибрати токен"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Пропозиція"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Постачання {0} {1} та {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Постачання {0} {1} і{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Обміняти в будь-якому випадку"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Поміняти <0/> на <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Помилка підкачки: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Обмін {0} {1} на {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Дякуємо за участь у спільноті Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "%, Який ви заробите на гонорарах."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Інваріант Uniswap x * y = k не був задоволений в обміні. Зазвичай це означає, що один із токенів, який ви міняєте, включає спеціальну поведінку при передачі."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Додаток отримує дані блокчейну з розміщеної служби The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Додаток отримує дані в мережі та створює виклики контрактів за допомогою API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Програма отримує оптимальний торговий шлях із сервера Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Додаток реєструє анонімну статистику використання, щоб з часом покращуватись."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Програма безпечно збирає адресу вашого гаманця та передає її TRM Labs Inc. з міркувань ризику та відповідності."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Вхідний токен неможливо передати. Можливо, виникла проблема з вхідним токеном."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Вхідний токен неможливо передати. Можл
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Ринкова ціна виходить за межі вказаного діапазону цін. Можливі лише внески з одним активом."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Вихідний токен неможливо передати. Можливо, виникла проблема з вихідним токеном."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Вихідний токен результату неможливо передати. Можливо, виникла проблема з вихідним токеном результату. Зауважте: комісія за перенесення й перебазування токенів несумісна з Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Ціна цього пулу перебуває в межах вибра
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Співвідношення доданих токенів встановить ціну цього пулу."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Не вдалося надіслати транзакцію, оскільки термін минув. Упевніться в тому, що термін транзакції не занадто короткий."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Даних про ліквідність немає."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Ці токени зазвичай поєднані в пари з іншими токенами."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Ця програма використовує такі сторонні API:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Цей пул потрібно ініціалізувати, перш ніж ви зможете додати ліквідність. Для ініціалізації виберіть початкову ціну пулу. Потім введіть діапазон цін ліквідності та суму депозиту. Плата за газ буде вищою, ніж зазвичай, через транзакцію ініціалізації."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Цей маршрут оптимізує вашу ціну, врахов
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Цей токен не відображається в списку (-ах) активних токенів. Переконайтеся в тому, що це токен, яким ви хочете торгувати."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Цей маркер не підтримується в додатку Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Цей інструмент безпечно перенесе вашу ліквідність {0} до V3. Цей процес абсолютно не вимагає надійності завдяки"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Ця операція не буде успішною через рух ціни. Спробуйте збільшити свою толерантність до проковзування. Зауважте: комісія за перенесення й перебазування токенів несумісна з Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Ця транзакція не буде успішною ані через рух ціни, ані через комісію за переказ. Спробуйте збільшити свою толерантність до проковзування."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "До (не менше)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Щоб почати торгувати на {0}, спочатку з'єднайте свої активи з L1 на L2. Будь ласка, розгляньте це як бета -версію та дізнайтеся про ризики перед використанням {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Токен не підтримується"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Токени"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Транзакція завершена в"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Кінцевий термін транзакції"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Транзакцію відхилено."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Токен передачі"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Незатребуване:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Невизначено"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Неочікувана помилка. Не вдалося оцінити газ для обміну."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Неочікувана проблема з оцінкою газу. Будь ласка спробуйте ще раз."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Управління Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Умови використання Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap доступно в: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Контракт Uniswap щодо перенесення↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Відмінити на {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Невідоме джерело"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Невідома помилка{0}. Спробуйте збільшити свою толерантність до проковзування. Зауважте: комісія за перенесення й перебазування токенів несумісна з Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Голосування завершилось {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Голосування завершується приблизно {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Голосування починається приблизно з {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Очікується підтвердження"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "хвилин"
|
||||
msgid "via {0}"
|
||||
msgstr "через {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "через {0} список токенів"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-21 22:05\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(Tối đa)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(chỉnh sửa)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- Xóa gửi"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- Xóa người nhận"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "Độ trượt được phép"
|
||||
msgid "Amount"
|
||||
msgstr "Số tiền"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Đã xảy ra lỗi khi cố gắng thực hiện hoán đổi này. Bạn có thể cần phải tăng khả năng chịu trượt của mình. Nếu điều đó không hiệu quả, có thể có sự không tương thích với mã thông báo bạn đang giao dịch. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3."
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "Bộ định tuyến tự động"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "Có sẵn để đặt cọc: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "Trở lại"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "Thăng bằng:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "Bằng cách thêm danh sách này, bạn hoàn toàn tin tưởng rằng dữ liệu là chính xác. Bất kỳ ai cũng có thể tạo danh sách, bao gồm cả việc tạo các phiên bản giả mạo của danh sách hiện có và danh sách yêu cầu đại diện cho các dự án không có danh sách đó."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "Bằng cách kết nối ví, bạn đồng ý với Điều khoản dịch vụ <0> của Uniswap Labs</0> và xác nhận rằng bạn đã đọc và hiểu <1> tuyên bố từ chối trách nhiệm của giao thức Uniswap</1> ."
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "Bằng cách kết nối ví, bạn đồng ý với <0>Điều khoản dịch vụ</0> của Uniswap Labs và xác nhận rằng bạn đã đọc và hiểu Tuyên bố từ chối trách nhiệm</1><1>."
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "Xác nhận giao dịch này trong ví của bạn"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "Xác nhận giao dịch trong ví"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "Kết nối ví"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "Kết nối ví"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "Kết nối với ví"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "Kết nối với ví để tìm nhóm"
|
||||
@@ -719,11 +716,11 @@ msgstr "Biên tập"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "So sánh hiệu quả"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "Nhập một phần trăm"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Nhập người nhận"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "Nhập địa chỉ để kích hoạt khiếu nại UNI. Nếu địa c
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "Nhập số tiền"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "Ẩn giấu"
|
||||
msgid "High Price Impact"
|
||||
msgstr "Tác động giá cao"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "Cách ứng dụng này sử dụng API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "Tôi hiểu"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "Nếu bạn mua mã token từ danh sách này, bạn có thể không bán lại được."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "Cài đặt Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Không đủ thanh khoản cho giao dịch này."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Số dư {0} không đủ"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "Số dư {0} không đủ"
|
||||
msgid "Interface Settings"
|
||||
msgstr "Cài đặt giao diện"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "Cặp không hợp lệ"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "Cặp không hợp lệ"
|
||||
msgid "Invalid pair."
|
||||
msgstr "Cặp không hợp lệ."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "Giá đầu vào không hợp lệ"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "Giá đầu vào không hợp lệ"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "Đã chọn dải ô không hợp lệ. Giá tối thiểu phải thấp hơn giá tối đa."
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "Người nhận không hợp lệ"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "Tìm hiểu thêm"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "Tìm hiểu về cung cấp tính thanh khoản"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "Tìm hiểu thêm"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "Pháp lý & Quyền riêng tư"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "Chủ đề ánh sáng"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "Tối thiểu:"
|
||||
msgid "Minimum received"
|
||||
msgstr "Số tiền nhận được tối thiểu"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "Thiếu phụ thuộc"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "Thêm nữa"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "Không tìm thấy Thanh khoản V2."
|
||||
msgid "No active pools"
|
||||
msgstr "Không có pool hoạt động"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "Không có dữ liệu"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "Không có mô tả."
|
||||
@@ -1335,6 +1356,10 @@ msgstr "Đề xuất hành động"
|
||||
msgid "Proposer"
|
||||
msgstr "Người đề xuất"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "Tuyên bố từ chối trách nhiệm"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "Đã xếp hàng"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "Xóa danh sách"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "Loại bỏ {0} {1} và {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "Loại bỏ {0} {1} và{2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "Chọn một mạng"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "Chọn một mã token"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "Cung cấp"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Cung cấp {0} {1} và {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "Cung cấp {0} {1} và{2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "Vẫn hoán đổi"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "Hoán đổi chính xác <0 /> lấy <1 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "Hoán đổi không thành công: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Đổi {0} {1} lấy {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "Cảm ơn bạn đã tham gia cộng đồng Uniswap <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "% Bạn sẽ kiếm được từ phí."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "Bất biến Uniswap x * y = k không được thỏa mãn bởi hoán đổi. Điều này thường có nghĩa là một trong những mã token bạn đang hoán đổi kết hợp hành vi tùy chỉnh khi chuyển."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "Ứng dụng tìm nạp dữ liệu blockchain từ dịch vụ lưu trữ của The Graph."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "Ứng dụng tìm nạp dữ liệu trên chuỗi và tạo các lệnh gọi hợp đồng bằng API Infura."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "Ứng dụng tìm nạp lộ trình giao dịch tối ưu từ máy chủ Uniswap Labs."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "Ứng dụng ghi lại số liệu thống kê sử dụng ẩn danh để cải thiện theo thời gian."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "Ứng dụng thu thập địa chỉ ví của bạn một cách an toàn và chia sẻ nó với TRM Labs Inc. vì lý do rủi ro và tuân thủ."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Không thể chuyển mã token đầu vào. Có thể có sự cố với mã token đầu vào."
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "Không thể chuyển mã token đầu vào. Có thể có sự cố v
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "Giá thị trường nằm ngoài phạm vi giá đã chỉ định của bạn. Chỉ gửi một tài sản duy nhất."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Không thể chuyển mã token đầu ra. Có thể có sự cố với mã token đầu ra."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Không thể chuyển mã thông báo đầu ra. Có thể có sự cố với mã thông báo đầu ra. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3."
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "Giá của pool này nằm trong phạm vi bạn đã chọn. Vị trí
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Tỷ lệ mã token bạn thêm vào sẽ thiết lập giá của nhóm này."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "Không thể gửi giao dịch vì đã hết thời hạn. Vui lòng kiểm tra xem thời hạn giao dịch của bạn không quá thấp."
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "Không có dữ liệu thanh khoản."
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Các mã token này thường được ghép nối với các mã token khác."
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "Ứng dụng này sử dụng các API của bên thứ ba sau:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "Nhóm này phải được khởi tạo trước khi bạn có thể thêm thanh khoản. Để khởi tạo, hãy chọn giá khởi điểm cho nhóm. Sau đó, nhập phạm vi giá thanh khoản và số tiền ký quỹ của bạn. Phí gas sẽ cao hơn bình thường do giao dịch khởi tạo."
|
||||
@@ -1619,15 +1676,19 @@ msgstr "Tuyến đường này tối ưu hóa giá của bạn bằng cách xem
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "Mã token này không xuất hiện trên (các) danh sách mã token đang hoạt động. Đảm bảo rằng đây là mã token mà bạn muốn giao dịch."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Mã thông báo này không được hỗ trợ trong ứng dụng Uniswap Labs"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "Công cụ này sẽ chuyển thanh khoản {0} sang V3. Quá trình này hoàn toàn không đáng tin cậy nhờ vào"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Giao dịch này sẽ không thành công do biến động giá. Hãy thử tăng khả năng chịu trượt của bạn. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "Giao dịch này sẽ không thành công do biến động giá hoặc phí chuyển nhượng. Hãy thử tăng khả năng chịu trượt của bạn."
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "Đến (Ít nhất)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "Để bắt đầu giao dịch trên {0}, trước tiên hãy kết nối tài sản của bạn từ L1 đến L2. Vui lòng coi đây là bản phát hành beta và tìm hiểu về các rủi ro trước khi sử dụng {1}."
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "Mã thông báo không được hỗ trợ"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Token"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "Giao dịch đã hoàn tất trong"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Thời hạn giao dịch"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "Giao dịch bị từ chối."
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "Mã thông báo chuyển"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "Chưa nhận:"
|
||||
msgid "Undetermined"
|
||||
msgstr "Không xác định"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "Lỗi không mong đợi. Không thể ước tính khí cho hoán đổi."
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "Vấn đề không mong muốn với ước tính khí. Vui lòng thử lại."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Quản trị Uniswap"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Điều khoản dịch vụ của Uniswap Labs"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap có sẵn ở: <0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Hợp đồng di chuyển Uniswap↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "Hủy hoán đổi trên {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "Nguồn không rõ"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "Lỗi không xác định{0}. Hãy thử tăng khả năng chịu trượt của bạn. Lưu ý: phí chuyển và mã thông báo rebase không tương thích với Uniswap V3."
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "Bỏ phiếu đã kết thúc {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "Bỏ phiếu kết thúc vào khoảng {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "Bỏ phiếu bắt đầu khoảng {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "Chờ đợi sự xác nhận"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "phút"
|
||||
msgid "via {0}"
|
||||
msgstr "qua {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "thông qua {0} mã token"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-22 18:04\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(最大值)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(编辑)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- 删除发送"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- 删除接收人"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "允许滑点"
|
||||
msgid "Amount"
|
||||
msgstr "数额"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "尝试执行此兑换时发生错误。您可能需要增加滑点限制。如果还是不行,则可能是您正在交易的代币与Uniswap不兼容。注:Uniswap V3不兼容转账时带扣除费用(fee-on-transfer)的代币和弹性供应(rebase)代币。"
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "自动路由"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "可调用的数额:{0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "返回"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "余额:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "添加此代币列表代表您信任其数据是正确的。任何人都可以创建代币列表,包括创建假冒实际列表的造假版本,以及自我声称代表了某项目的代币列表。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "通过连接钱包,您同意接受 Uniswap 实验室的<0>服务条款</0>,并确认您已阅读和理解<1>Uniswap协议免责声明</1>。"
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "连接钱包即表示您同意 Uniswap Labs 的 <0>服务条款</0> 并确认您已阅读并理解 Uniswap <1>协议免责声明</1>。"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "在您的钱包中确认这笔交易"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "在钱包中确认交易"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "连接钱包"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "连接钱包"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "连接钱包"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "连接到钱包以查找流动池"
|
||||
@@ -719,11 +716,11 @@ msgstr "修改"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "效率对比"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "输入百分比"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "输入接收者"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "输入地址来查看领取 UNI 代币的资质。如果地址有任何
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "输入数额"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "隐藏"
|
||||
msgid "High Price Impact"
|
||||
msgstr "对兑换率有高度影响"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "此应用程序如何使用 API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "我已知悉"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "如果您从这个代币列表中购买代币,您可能无法再将其售出。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,11 +911,11 @@ msgstr "安装Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "现有流动量不足以支持此交易。"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "{0} 余额不足"
|
||||
|
||||
@@ -921,8 +923,8 @@ msgstr "{0} 余额不足"
|
||||
msgid "Interface Settings"
|
||||
msgstr "界面设置"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "无效的币对"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "无效的币对"
|
||||
msgid "Invalid pair."
|
||||
msgstr "无效的币对。"
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "无效的兑换率输入"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "无效的兑换率输入"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "选择的范围无效。最小兑换率必须低于最大兑换率。"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "无效的接收方"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "了解更多"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "了解提供流动性的相关信息"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "了解更多"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "法律与隐私"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "浅色主题"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "最小值:"
|
||||
msgid "Minimum received"
|
||||
msgstr "收到的最低数额"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "缺少依赖套件"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "更多"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "找不到V2流动资金。"
|
||||
msgid "No active pools"
|
||||
msgstr "无运行中的流动池"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "没有数据"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "没有说明。"
|
||||
@@ -1335,6 +1356,10 @@ msgstr "提议操作"
|
||||
msgid "Proposer"
|
||||
msgstr "提案者"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "协议免责声明"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "待执行"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "去除代币列表"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "正在去除 {0} {1} 和 {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "移除 {0} {1} 和 {2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "选择网络"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "选择代币"
|
||||
|
||||
@@ -1523,8 +1551,8 @@ msgid "Supply"
|
||||
msgstr "供应"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "提供 {0} {1} 和 {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "供应 {0} {1} 和 {2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1536,7 +1564,7 @@ msgstr "兑换"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Swap <0/> for exactly <1/>"
|
||||
msgstr "将 <0/> 兑换成恰好 <1/>"
|
||||
msgstr "将约 <0/> 兑换成 <1/>"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "仍要兑换"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "将恰好 <0/> 兑换成 <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "兑换失败: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "将 {0} {1} 兑换为 {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "感谢您加入 Uniswap 社区 <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "您将赚取的手续费百分比。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "兑换交易不满足 Uniswap 不变量 X × Y = K 的要求。这通常意味着您要兑换的代币之一在代币转账过程中带有一些自定义代币合约特性。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "该应用程序从 The Graph 的托管服务中获取区块链数据。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "该应用程序获取链上数据并使用 Infura API 构建合约调用。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "该应用程序从 Uniswap Labs 服务器获取最佳交易路径。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "该应用程序会匿名记录使用情况统计信息,以便不断改进。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "出于风险和合规性原因,该应用程序会安全地收集您的钱包地址并与 TRM Labs Inc. 共享。"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "输入代币无法进行转账。输入代币可能有些问题。"
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "输入代币无法进行转账。输入代币可能有些问题。"
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "市场兑换率超出您指定的范围。将只注入单项代币。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "输出代币无法进行转账。输出代币可能有些问题。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "无法对输出代币进行转账。输出代币可能有些问题。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。"
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "此流动池的兑换率在您选定的范围内。因此您的流动资
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "您注入的代币比率将决定此流动池的初始兑换率。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "由于期限已过,因此无法发送交易。请检查您的交易截止期限设置。"
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "没有流动性数据。"
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "这些代币通常与其他代币配对。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "此应用程序使用以下第三方 API:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "需要先初始化,然后再添加流动性。初始化时,请先选择起始价格,然后输入您的流动性价格范围和存款金额。因需进行初始化相关操作,Gas 费将比平时高一些。"
|
||||
@@ -1619,15 +1676,19 @@ msgstr "这个路由方案通过考虑拆分路由、多级路由和gas 成本
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "此代币未出现在激活的代币列表中。请确保这是您想要交易的代币。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Uniswap Labs 应用程序不支持此代币"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "该工具将安全地将您的 {0} 流动资金迁移到 V3。该过程完全不依赖任何信任需求"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "由于兑换率变动,此交易将不会成功。尝试增加您的滑点容差。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "由于兑换率变动或代币带有转账时的扣除费用(fee-on-transfer),该交易将不会成功。请尝试增加滑点容差。"
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "兑换到(至少数额)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "在 {0} 上交易,首先须将您的资产从 L1 桥接到 L2。请将此视为 Beta 版并在使用 {1} 之前了解风险。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "不支持该代币"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "代币"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "交易完成于"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "交易截止期限"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "交易被拒绝。"
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "代币转账"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "未领取:"
|
||||
msgid "Undetermined"
|
||||
msgstr "未定"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "错误。无法估计兑换所需的gas。"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "估计 gas 时遇到问题。请再试一次。"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap治理"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs 的服务条款"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap可用:<0>{0}</0>"
|
||||
@@ -1786,13 +1868,13 @@ msgstr "Uniswap 迁移合约↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "在 {0} 上的 Uniswap"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "未知来源"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "未知错误{0}。尝试增加您的滑点容差。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。"
|
||||
msgstr "未知错误{0}。可以尝试增加滑点容差。注:转账时额外抽取费用(fee-on-transfer)的代币和弹性供应(rebase)代币都与Uniswap V3不兼容。"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1959,6 +2041,10 @@ msgstr "投票结束 {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "投票大约结束于 {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "投票开始大约 {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "等待确认"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "分钟"
|
||||
msgid "via {0}"
|
||||
msgstr "通过 {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "从 {0} 代币列表"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2021-09-22 19:04\n"
|
||||
"PO-Revision-Date: 2021-11-03 18:11\n"
|
||||
"Last-Translator: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
@@ -27,6 +27,10 @@ msgstr "$-"
|
||||
msgid "${0}"
|
||||
msgstr "${0}"
|
||||
|
||||
#: src/components/swap/TradePrice.tsx
|
||||
msgid "(${0})"
|
||||
msgstr "(${0})"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "(Max)"
|
||||
msgstr "(最大值)"
|
||||
@@ -48,8 +52,8 @@ msgid "(edit)"
|
||||
msgstr "(編輯)"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "- Remove send"
|
||||
msgstr "- 刪除發送"
|
||||
msgid "- Remove recipient"
|
||||
msgstr "- 刪除接收人"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -223,7 +227,7 @@ msgstr "允許滑點"
|
||||
msgid "Amount"
|
||||
msgstr "數額"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "An error occurred when trying to execute this swap. You may need to increase your slippage tolerance. If that does not work, there may be an incompatibility with the token you are trading. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "嘗試執行此兌換時發生錯誤。您可能需要增加滑點限制。如果還是不行,則可能是您正在交易的代幣與Uniswap不兼容。注:Uniswap V3不兼容轉賬時帶扣除費用(fee-on-transfer)的代幣和彈性供應(rebase)代幣。"
|
||||
|
||||
@@ -300,10 +304,6 @@ msgstr "自動路由"
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "可存入的數額:{0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "返回"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
msgstr "余額:"
|
||||
@@ -344,8 +344,8 @@ msgid "By adding this list you are implicitly trusting that the data is correct.
|
||||
msgstr "添加此代幣列表代表您信任其數據是正確的。任何人都可以創建代幣列表,包括創建假冒實際列表的造假版本,以及自我聲稱代表了某項目的代幣列表。"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the <1>Uniswap protocol disclaimer</1>."
|
||||
msgstr "通過連接錢包,您同意接受 Uniswap 實驗室的<0>服務條款</0>,並確認您已閱讀和理解<1>Uniswap協議免責聲明</1>。"
|
||||
msgid "By connecting a wallet, you agree to Uniswap Labs’ <0>Terms of Service</0> and acknowledge that you have read and understand the Uniswap <1>Protocol Disclaimer</1>."
|
||||
msgstr "連接錢包即表示您同意 Uniswap Labs 的 <0>服務條款</0> 並確認您已閱讀並理解 Uniswap <1>協議免責聲明</1>。"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Canceled"
|
||||
@@ -516,30 +516,27 @@ msgstr "在您的錢包中確認這筆交易"
|
||||
msgid "Confirm transaction in wallet"
|
||||
msgstr "在錢包中確認交易"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Connect Wallet"
|
||||
msgstr "連接錢包"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Connect a wallet"
|
||||
msgstr "連接錢包"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Connect to a wallet"
|
||||
msgstr "連接錢包"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Connect to a wallet to find pools"
|
||||
msgstr "連接到錢包以查找流動池"
|
||||
@@ -719,11 +716,11 @@ msgstr "修改"
|
||||
msgid "Efficiency Comparison"
|
||||
msgstr "效率對比"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
#: src/state/burn/v3/hooks.tsx
|
||||
msgid "Enter a percent"
|
||||
msgstr "輸入百分比"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter a recipient"
|
||||
msgstr "輸入接收者"
|
||||
|
||||
@@ -737,11 +734,11 @@ msgstr "輸入地址來查看領取 UNI 代幣的資質。如果地址有任何
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/state/burn/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/burn/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/stake/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Enter an amount"
|
||||
msgstr "輸入數額"
|
||||
|
||||
@@ -849,6 +846,10 @@ msgstr "隱藏"
|
||||
msgid "High Price Impact"
|
||||
msgstr "高兌換率影響"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "How this app uses APIs"
|
||||
msgstr "此應用程序如何使用 API"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "I understand"
|
||||
@@ -858,6 +859,7 @@ msgstr "我已知悉"
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
msgstr "如果您從這個代幣列表中購買代幣,您可能無法再將其售出。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
@@ -909,20 +911,20 @@ msgstr "安裝Metamask"
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "現有流動量不足以支持此交易。"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "{0} 余額不足"
|
||||
msgstr "{0} 餘額不足"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Interface Settings"
|
||||
msgstr "界面設置"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/hooks.tsx
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid pair"
|
||||
msgstr "無效的幣對"
|
||||
|
||||
@@ -930,7 +932,7 @@ msgstr "無效的幣對"
|
||||
msgid "Invalid pair."
|
||||
msgstr "無效的幣對。"
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/mint/v3/hooks.tsx
|
||||
msgid "Invalid price input"
|
||||
msgstr "無效的兌換率輸入"
|
||||
|
||||
@@ -939,7 +941,8 @@ msgstr "無效的兌換率輸入"
|
||||
msgid "Invalid range selected. The min price must be lower than the max price."
|
||||
msgstr "選擇的範圍無效。最小兌換率必須低於最大兌換率。"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Invalid recipient"
|
||||
msgstr "無效的接收方"
|
||||
|
||||
@@ -959,6 +962,16 @@ msgstr "了解更多"
|
||||
msgid "Learn about providing liquidity"
|
||||
msgstr "閱讀有關提供流動資金的資訊"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Learn more"
|
||||
msgstr "瞭解更多"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Legal & Privacy"
|
||||
msgstr "法律與隱私"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Light Theme"
|
||||
msgstr "淺色"
|
||||
@@ -1099,6 +1112,10 @@ msgstr "最小值:"
|
||||
msgid "Minimum received"
|
||||
msgstr "收到的最低數額"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Missing dependencies"
|
||||
msgstr "缺少依賴套件"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "More"
|
||||
msgstr "更多"
|
||||
@@ -1120,6 +1137,10 @@ msgstr "找不到V2流動資金。"
|
||||
msgid "No active pools"
|
||||
msgstr "無運行中的流動池"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "No data"
|
||||
msgstr "沒有資料"
|
||||
|
||||
#: src/state/governance/hooks.ts
|
||||
msgid "No description."
|
||||
msgstr "沒有說明。"
|
||||
@@ -1335,6 +1356,10 @@ msgstr "提議操作"
|
||||
msgid "Proposer"
|
||||
msgstr "提案人"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Protocol Disclaimer"
|
||||
msgstr "協議免責聲明"
|
||||
|
||||
#: src/pages/Vote/styled.tsx
|
||||
msgid "Queued"
|
||||
msgstr "待執行"
|
||||
@@ -1398,10 +1423,13 @@ msgid "Remove list"
|
||||
msgstr "去除代幣列表"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
msgstr "正在去除 {0} {1} 和 {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and{2} {3}"
|
||||
msgstr "移除 {0} {1} 和 {2} {3}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/pages/CreateProposal/ProposalSubmissionModal.tsx
|
||||
@@ -1424,7 +1452,7 @@ msgstr "選擇網絡"
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
#: src/state/swap/hooks.tsx
|
||||
msgid "Select a token"
|
||||
msgstr "選擇代幣"
|
||||
|
||||
@@ -1523,7 +1551,7 @@ msgid "Supply"
|
||||
msgstr "供應"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgid "Supplying {0} {1} and{2} {3}"
|
||||
msgstr "供應 {0} {1} 和 {2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
@@ -1536,7 +1564,7 @@ msgstr "兌換"
|
||||
|
||||
#: src/components/AccountDetails/TransactionSummary.tsx
|
||||
msgid "Swap <0/> for exactly <1/>"
|
||||
msgstr "將 <0/> 兌換成恰好 <1/>"
|
||||
msgstr "將約 <0/> 兌換成 <1/>"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1547,6 +1575,11 @@ msgstr "仍要兌換"
|
||||
msgid "Swap exactly <0/> for <1/>"
|
||||
msgstr "將恰好 <0/> 兌換成 <1/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Swap failed: {0}"
|
||||
msgstr "兑换失败: {0}"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "將 {0} {1} 兌換為 {2} {3}"
|
||||
@@ -1559,11 +1592,31 @@ msgstr "感謝您加入 Uniswap 社區 <0/>"
|
||||
msgid "The % you will earn in fees."
|
||||
msgstr "您將賺取的手續費百分比。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The Uniswap invariant x*y=k was not satisfied by the swap. This usually means one of the tokens you are swapping incorporates custom behavior on transfer."
|
||||
msgstr "兌換交易不滿足 Uniswap 不變量 X × Y = K 的要求。這通常意味著您要兌換的代幣之一在代幣轉賬過程中帶有一些自定義代幣合約特性。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches blockchain data from The Graph’s hosted service."
|
||||
msgstr "該應用程序從 The Graph 的託管服務中獲取區塊鏈數據。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches on-chain data and constructs contract calls with an Infura API."
|
||||
msgstr "該應用程序獲取鏈上數據並使用 Infura API 構建合約調用。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app fetches the optimal trade route from a Uniswap Labs server."
|
||||
msgstr "該應用程序從 Uniswap Labs 服務器獲取最佳交易路徑。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app logs anonymized usage statistics in order to improve over time."
|
||||
msgstr "該應用程序會記錄匿名使用情況統計信息,以便不斷改進。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "The app securely collects your wallet address and shares it with TRM Labs Inc. for risk and compliance reasons."
|
||||
msgstr "出於風險和合規性原因,該應用程序會安全地收集您的錢包地址並與 TRM Labs Inc. 共享。"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "輸入代幣無法進行轉賬。輸入代幣可能有些問題。"
|
||||
|
||||
@@ -1571,11 +1624,11 @@ msgstr "輸入代幣無法進行轉賬。輸入代幣可能有些問題。"
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
msgstr "市場兌換率超出您指定的範圍。將只註入單項代幣。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "輸出代幣無法進行轉賬。輸出代幣可能有些問題。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "輸出代幣無法進行轉賬。輸出代幣可能有些問題。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不相容。"
|
||||
|
||||
@@ -1591,7 +1644,7 @@ msgstr "此流動池的兌換率在您選定的範圍內。因此您的流動資
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "您註入的代幣比率將決定此流動池的初始兌換率。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
msgstr "由於期限已過,因此無法發送交易。請檢查您的交易截止期限設置。"
|
||||
|
||||
@@ -1603,6 +1656,10 @@ msgstr "沒有流動性數據。"
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "這些代幣通常與其他代幣配對。"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "This app uses the following third-party APIs:"
|
||||
msgstr "此應用程序使用以下第三方 API:"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "This pool must be initialized before you can add liquidity. To initialize, select a starting price for the pool. Then, enter your liquidity price range and deposit amount. Gas fees will be higher than usual due to the initialization transaction."
|
||||
msgstr "需要先初始化,然後再添加流動性。初始化時,請先選擇起始價格,然後輸入您的流動性價格範圍和存款金額。因需進行初始化相關操作,Gas 費將比平時高一些。"
|
||||
@@ -1619,15 +1676,19 @@ msgstr "這個路由方案通過考慮拆分路由、多級路由和gas 成本
|
||||
msgid "This token doesn't appear on the active token list(s). Make sure this is the token that you want to trade."
|
||||
msgstr "此代幣未出現在激活的代幣列表中。請確保這是您想要交易的代幣。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "This token is not supported in the Uniswap Labs app"
|
||||
msgstr "Uniswap Labs 應用程序不支持此代幣"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "This tool will safely migrate your {0} liquidity to V3. The process is completely trustless thanks to the"
|
||||
msgstr "該工具將安全地將您的 {0} 流動資金遷移到 V3。該過程完全不依賴任何信任需求"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed due to price movement. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "由於兌換率變動,該交易將不會成功。請嘗試增加滑點容差。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不兼容。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
msgstr "由於兌換率變動或代幣帶有轉賬時的扣除費用(fee-on-transfer),該交易將不會成功。請嘗試增加滑點容差。"
|
||||
|
||||
@@ -1650,6 +1711,10 @@ msgstr "到(至少)"
|
||||
msgid "To starting trading on {0}, first bridge your assets from L1 to L2. Please treat this as a beta release and learn about the risks before using {1}."
|
||||
msgstr "在 {0} 上交易,首先須將您的資產從 L1 橋接到 L2。請將此視為 Beta 版並在使用 {1} 之前了解風險。"
|
||||
|
||||
#: src/components/SearchModal/BlockedToken.tsx
|
||||
msgid "Token not supported"
|
||||
msgstr "不支持此代幣"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "代幣"
|
||||
@@ -1705,6 +1770,11 @@ msgstr "交易完成於"
|
||||
msgid "Transaction deadline"
|
||||
msgstr "交易截止期限"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Transaction rejected."
|
||||
msgstr "交易被拒絕。"
|
||||
|
||||
#: src/pages/CreateProposal/ProposalActionSelector.tsx
|
||||
msgid "Transfer Token"
|
||||
msgstr "代幣轉賬"
|
||||
@@ -1762,10 +1832,22 @@ msgstr "未領取:"
|
||||
msgid "Undetermined"
|
||||
msgstr "未定"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected error. Could not estimate gas for the swap."
|
||||
msgstr "錯誤。無法估計兑换所需的 gas。"
|
||||
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unexpected issue with estimating the gas. Please try again."
|
||||
msgstr "估計 gas 時遇到問題。請再試一次。"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Uniswap Governance"
|
||||
msgstr "Uniswap治理"
|
||||
|
||||
#: src/components/PrivacyPolicy/index.tsx
|
||||
msgid "Uniswap Labs' Terms of Service"
|
||||
msgstr "Uniswap Labs 的服務條款"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap 可選語言:<0>{0}</0>"
|
||||
@@ -1786,11 +1868,11 @@ msgstr "Uniswap 遷移合約↗"
|
||||
msgid "Uniswap on {0}"
|
||||
msgstr "在 {0} 上的 Uniswap"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "Unknown Source"
|
||||
msgstr "未知來源"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
#: src/hooks/useSwapCallback.tsx
|
||||
msgid "Unknown error{0}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3."
|
||||
msgstr "未知錯誤{0}。請嘗試增加滑點容差。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不相容。"
|
||||
|
||||
@@ -1959,6 +2041,10 @@ msgstr "投票結束 {0}"
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "投票大約結束於 {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting starts approximately {0}"
|
||||
msgstr "投票開始大約 {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
msgstr "等待確認中"
|
||||
@@ -2205,7 +2291,7 @@ msgstr "分鐘"
|
||||
msgid "via {0}"
|
||||
msgstr "通過 {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/TokenImportCard.tsx
|
||||
msgid "via {0} token list"
|
||||
msgstr "從 {0} 代幣列表"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { BigNumber } from '@ethersproject/bignumber'
|
||||
import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Currency, CurrencyAmount, Percent } from '@uniswap/sdk-core'
|
||||
import { FeeAmount, NonfungiblePositionManager } from '@uniswap/v3-sdk'
|
||||
import DowntimeWarning from 'components/DowntimeWarning'
|
||||
@@ -560,7 +560,7 @@ export default function AddLiquidity({
|
||||
hash={txHash}
|
||||
content={() => (
|
||||
<ConfirmationModalContent
|
||||
title={t`Add Liquidity`}
|
||||
title={<Trans>Add Liquidity</Trans>}
|
||||
onDismiss={handleDismissConfirmation}
|
||||
topContent={() => (
|
||||
<Review
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { BigNumber } from '@ethersproject/bignumber'
|
||||
import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Currency, CurrencyAmount, Percent } from '@uniswap/sdk-core'
|
||||
import UnsupportedCurrencyFooter from 'components/swap/UnsupportedCurrencyFooter'
|
||||
import { SwitchLocaleLink } from 'components/SwitchLocaleLink'
|
||||
@@ -270,9 +270,12 @@ export default function AddLiquidity({
|
||||
)
|
||||
}
|
||||
|
||||
const pendingText = t`Supplying ${parsedAmounts[Field.CURRENCY_A]?.toSignificant(6)} ${
|
||||
currencies[Field.CURRENCY_A]?.symbol
|
||||
} and ${parsedAmounts[Field.CURRENCY_B]?.toSignificant(6)} ${currencies[Field.CURRENCY_B]?.symbol}`
|
||||
const pendingText = (
|
||||
<Trans>
|
||||
Supplying {parsedAmounts[Field.CURRENCY_A]?.toSignificant(6)} {currencies[Field.CURRENCY_A]?.symbol} and
|
||||
{parsedAmounts[Field.CURRENCY_B]?.toSignificant(6)} {currencies[Field.CURRENCY_B]?.symbol}
|
||||
</Trans>
|
||||
)
|
||||
|
||||
const handleCurrencyASelect = useCallback(
|
||||
(currencyA: Currency) => {
|
||||
|
||||
@@ -9,8 +9,8 @@ import Header from '../components/Header'
|
||||
import Polling from '../components/Header/Polling'
|
||||
import Popups from '../components/Popups'
|
||||
import Web3ReactManager from '../components/Web3ReactManager'
|
||||
import { ApplicationModal } from '../state/application/actions'
|
||||
import { useModalOpen, useToggleModal } from '../state/application/hooks'
|
||||
import { ApplicationModal } from '../state/application/reducer'
|
||||
import DarkModeQueryParamReader from '../theme/DarkModeQueryParamReader'
|
||||
import AddLiquidity from './AddLiquidity'
|
||||
import { RedirectDuplicateTokenIds } from './AddLiquidity/redirects'
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import React from 'react'
|
||||
import styled from 'styled-components/macro'
|
||||
import { Z_INDEX } from 'theme'
|
||||
|
||||
export const BodyWrapper = styled.main<{ margin?: string; maxWidth?: string }>`
|
||||
position: relative;
|
||||
@@ -11,6 +12,9 @@ export const BodyWrapper = styled.main<{ margin?: string; maxWidth?: string }>`
|
||||
0px 24px 32px rgba(0, 0, 0, 0.01);
|
||||
border-radius: 24px;
|
||||
margin-top: 1rem;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
z-index: ${Z_INDEX.deprecated_content};
|
||||
`
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { ResizingTextArea, TextInput } from 'components/TextInput'
|
||||
import React, { memo } from 'react'
|
||||
|
||||
@@ -168,20 +168,20 @@ function Remove({ tokenId }: { tokenId: BigNumber }) {
|
||||
console.error(error)
|
||||
})
|
||||
}, [
|
||||
tokenId,
|
||||
positionManager,
|
||||
liquidityValue0,
|
||||
liquidityValue1,
|
||||
deadline,
|
||||
allowedSlippage,
|
||||
account,
|
||||
addTransaction,
|
||||
positionManager,
|
||||
chainId,
|
||||
feeValue0,
|
||||
feeValue1,
|
||||
library,
|
||||
liquidityPercentage,
|
||||
positionSDK,
|
||||
liquidityPercentage,
|
||||
library,
|
||||
tokenId,
|
||||
allowedSlippage,
|
||||
addTransaction,
|
||||
])
|
||||
|
||||
const handleDismissConfirmation = useCallback(() => {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { BigNumber } from '@ethersproject/bignumber'
|
||||
import { Contract } from '@ethersproject/contracts'
|
||||
import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { Trans } from '@lingui/macro'
|
||||
import { Currency, Percent } from '@uniswap/sdk-core'
|
||||
import { useCallback, useContext, useMemo, useState } from 'react'
|
||||
import { ArrowDown, Plus } from 'react-feather'
|
||||
@@ -371,9 +371,12 @@ export default function RemoveLiquidity({
|
||||
)
|
||||
}
|
||||
|
||||
const pendingText = t`Removing ${parsedAmounts[Field.CURRENCY_A]?.toSignificant(6)} ${
|
||||
currencyA?.symbol
|
||||
} and ${parsedAmounts[Field.CURRENCY_B]?.toSignificant(6)} ${currencyB?.symbol}`
|
||||
const pendingText = (
|
||||
<Trans>
|
||||
Removing {parsedAmounts[Field.CURRENCY_A]?.toSignificant(6)} {currencyA?.symbol} and
|
||||
{parsedAmounts[Field.CURRENCY_B]?.toSignificant(6)} {currencyB?.symbol}
|
||||
</Trans>
|
||||
)
|
||||
|
||||
const liquidityPercentChangeCallback = useCallback(
|
||||
(value: number) => {
|
||||
|
||||
@@ -435,7 +435,7 @@ export default function Swap({ history }: RouteComponentProps) {
|
||||
<ArrowDown size="16" color={theme.text2} />
|
||||
</ArrowWrapper>
|
||||
<LinkStyledButton id="remove-recipient-button" onClick={() => onChangeRecipient(null)}>
|
||||
<Trans>- Remove send</Trans>
|
||||
<Trans>- Remove recipient</Trans>
|
||||
</LinkStyledButton>
|
||||
</AutoRow>
|
||||
<AddressInputPanel id="recipient" value={recipient} onChange={onChangeRecipient} />
|
||||
|
||||
@@ -2,7 +2,7 @@ import { useEffect } from 'react'
|
||||
import { Redirect, RouteComponentProps } from 'react-router-dom'
|
||||
import { useAppDispatch } from 'state/hooks'
|
||||
|
||||
import { ApplicationModal, setOpenModal } from '../../state/application/actions'
|
||||
import { ApplicationModal, setOpenModal } from '../../state/application/reducer'
|
||||
|
||||
// Redirects to swap but only replace the pathname
|
||||
export function RedirectPathToSwapOnly({ location }: RouteComponentProps) {
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { BigNumber } from '@ethersproject/bignumber'
|
||||
// eslint-disable-next-line no-restricted-imports
|
||||
import { t, Trans } from '@lingui/macro'
|
||||
import { CurrencyAmount, Token } from '@uniswap/sdk-core'
|
||||
import useCurrentBlockTimestamp from 'hooks/useCurrentBlockTimestamp'
|
||||
@@ -26,8 +27,8 @@ import {
|
||||
import { ZERO_ADDRESS } from '../../constants/misc'
|
||||
import { UNI } from '../../constants/tokens'
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
import { ApplicationModal } from '../../state/application/actions'
|
||||
import { useBlockNumber, useModalOpen, useToggleDelegateModal, useToggleVoteModal } from '../../state/application/hooks'
|
||||
import { ApplicationModal } from '../../state/application/reducer'
|
||||
import {
|
||||
ProposalData,
|
||||
ProposalState,
|
||||
@@ -121,6 +122,21 @@ const ProposerAddressLink = styled(ExternalLink)`
|
||||
word-break: break-all;
|
||||
`
|
||||
|
||||
function getDateFromBlock(
|
||||
targetBlock: number | undefined,
|
||||
currentBlock: number | undefined,
|
||||
averageBlockTimeInSeconds: number | undefined,
|
||||
currentTimestamp: BigNumber | undefined
|
||||
): DateTime | undefined {
|
||||
return targetBlock && currentBlock && averageBlockTimeInSeconds && currentTimestamp
|
||||
? DateTime.fromSeconds(
|
||||
currentTimestamp
|
||||
.add(BigNumber.from(averageBlockTimeInSeconds).mul(BigNumber.from(targetBlock - currentBlock)))
|
||||
.toNumber()
|
||||
)
|
||||
: undefined
|
||||
}
|
||||
|
||||
export default function VotePage({
|
||||
match: {
|
||||
params: { governorIndex, id },
|
||||
@@ -145,18 +161,18 @@ export default function VotePage({
|
||||
// get and format date from data
|
||||
const currentTimestamp = useCurrentBlockTimestamp()
|
||||
const currentBlock = useBlockNumber()
|
||||
const endDate: DateTime | undefined =
|
||||
proposalData && currentTimestamp && currentBlock
|
||||
? DateTime.fromSeconds(
|
||||
currentTimestamp
|
||||
.add(
|
||||
BigNumber.from(
|
||||
(chainId && AVERAGE_BLOCK_TIME_IN_SECS[chainId]) ?? DEFAULT_AVERAGE_BLOCK_TIME_IN_SECS
|
||||
).mul(BigNumber.from(proposalData.endBlock - currentBlock))
|
||||
)
|
||||
.toNumber()
|
||||
)
|
||||
: undefined
|
||||
const startDate: DateTime | undefined = getDateFromBlock(
|
||||
proposalData?.startBlock,
|
||||
currentBlock,
|
||||
(chainId && AVERAGE_BLOCK_TIME_IN_SECS[chainId]) ?? DEFAULT_AVERAGE_BLOCK_TIME_IN_SECS,
|
||||
currentTimestamp
|
||||
)
|
||||
const endDate: DateTime | undefined = getDateFromBlock(
|
||||
proposalData?.endBlock,
|
||||
currentBlock,
|
||||
(chainId && AVERAGE_BLOCK_TIME_IN_SECS[chainId]) ?? DEFAULT_AVERAGE_BLOCK_TIME_IN_SECS,
|
||||
currentTimestamp
|
||||
)
|
||||
const now: DateTime = DateTime.local()
|
||||
|
||||
// get total votes and format percentages for UI
|
||||
@@ -222,14 +238,21 @@ export default function VotePage({
|
||||
</RowBetween>
|
||||
<AutoColumn gap="10px" style={{ width: '100%' }}>
|
||||
<TYPE.largeHeader style={{ marginBottom: '.5rem' }}>{proposalData?.title}</TYPE.largeHeader>
|
||||
<RowBetween>
|
||||
<TYPE.main>
|
||||
{startDate && startDate > now ? (
|
||||
<Trans>
|
||||
Voting starts approximately {startDate && startDate.toLocaleString(DateTime.DATETIME_FULL)}
|
||||
</Trans>
|
||||
) : null}
|
||||
</TYPE.main>
|
||||
</RowBetween>
|
||||
<RowBetween>
|
||||
<TYPE.main>
|
||||
{endDate && endDate < now ? (
|
||||
<Trans>Voting ended {endDate && endDate.toLocaleString(DateTime.DATETIME_FULL)}</Trans>
|
||||
) : proposalData ? (
|
||||
<Trans>Voting ends approximately {endDate && endDate.toLocaleString(DateTime.DATETIME_FULL)}</Trans>
|
||||
) : (
|
||||
''
|
||||
<Trans>Voting ends approximately {endDate && endDate.toLocaleString(DateTime.DATETIME_FULL)}</Trans>
|
||||
)}
|
||||
</TYPE.main>
|
||||
</RowBetween>
|
||||
|
||||
@@ -14,8 +14,8 @@ import JSBI from 'jsbi'
|
||||
import { darken } from 'polished'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { Button } from 'rebass/styled-components'
|
||||
import { ApplicationModal } from 'state/application/actions'
|
||||
import { useModalOpen, useToggleDelegateModal } from 'state/application/hooks'
|
||||
import { ApplicationModal } from 'state/application/reducer'
|
||||
import { ProposalData, useAllProposalData, useUserDelegatee, useUserVotes } from 'state/governance/hooks'
|
||||
import { useTokenBalance } from 'state/wallet/hooks'
|
||||
import styled from 'styled-components/macro'
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
import { createAction } from '@reduxjs/toolkit'
|
||||
|
||||
export type PopupContent = {
|
||||
txn: {
|
||||
hash: string
|
||||
}
|
||||
}
|
||||
|
||||
export enum ApplicationModal {
|
||||
WALLET,
|
||||
SETTINGS,
|
||||
SELF_CLAIM,
|
||||
ADDRESS_CLAIM,
|
||||
CLAIM_POPUP,
|
||||
MENU,
|
||||
DELEGATE,
|
||||
VOTE,
|
||||
POOL_OVERVIEW_OPTIONS,
|
||||
NETWORK_SELECTOR,
|
||||
}
|
||||
|
||||
export const updateChainId = createAction<{ chainId: number | null }>('application/updateChainId')
|
||||
export const updateBlockNumber = createAction<{ chainId: number; blockNumber: number }>('application/updateBlockNumber')
|
||||
export const setOpenModal = createAction<ApplicationModal | null>('application/setOpenModal')
|
||||
export const addPopup =
|
||||
createAction<{ key?: string; removeAfterMs?: number | null; content: PopupContent }>('application/addPopup')
|
||||
export const removePopup = createAction<{ key: string }>('application/removePopup')
|
||||
export const setImplements3085 = createAction<{ implements3085: boolean }>('application/setImplements3085')
|
||||
export const setChainConnectivityWarning = createAction<{ warn: boolean }>('application/setChainConnectivityWarning')
|
||||
@@ -4,7 +4,7 @@ import { useAppDispatch, useAppSelector } from 'state/hooks'
|
||||
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
import { AppState } from '../index'
|
||||
import { addPopup, ApplicationModal, PopupContent, removePopup, setOpenModal } from './actions'
|
||||
import { addPopup, ApplicationModal, PopupContent, removePopup, setOpenModal } from './reducer'
|
||||
|
||||
export function useBlockNumber(): number | undefined {
|
||||
const { chainId } = useActiveWeb3React()
|
||||
@@ -51,6 +51,10 @@ export function useToggleVoteModal(): () => void {
|
||||
return useToggleModal(ApplicationModal.VOTE)
|
||||
}
|
||||
|
||||
export function useTogglePrivacyPolicy(): () => void {
|
||||
return useToggleModal(ApplicationModal.PRIVACY_POLICY)
|
||||
}
|
||||
|
||||
// returns a function that allows adding a popup
|
||||
export function useAddPopup(): (content: PopupContent, key?: string, removeAfterMs?: number) => void {
|
||||
const dispatch = useAppDispatch()
|
||||
|
||||
@@ -1,20 +1,28 @@
|
||||
import { createStore, Store } from 'redux'
|
||||
|
||||
import { addPopup, ApplicationModal, removePopup, setOpenModal, updateBlockNumber, updateChainId } from './actions'
|
||||
import reducer, { ApplicationState } from './reducer'
|
||||
import reducer, {
|
||||
addPopup,
|
||||
ApplicationModal,
|
||||
ApplicationState,
|
||||
removePopup,
|
||||
setOpenModal,
|
||||
updateBlockNumber,
|
||||
updateChainId,
|
||||
} from './reducer'
|
||||
|
||||
describe('application reducer', () => {
|
||||
let store: Store<ApplicationState>
|
||||
|
||||
beforeEach(() => {
|
||||
store = createStore(reducer, {
|
||||
chainId: null,
|
||||
chainConnectivityWarning: false,
|
||||
popupList: [],
|
||||
blockNumber: {
|
||||
[1]: 3,
|
||||
},
|
||||
chainId: null,
|
||||
chainConnectivityWarning: false,
|
||||
implements3085: false,
|
||||
openModal: null,
|
||||
popupList: [],
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
@@ -1,17 +1,25 @@
|
||||
import { createReducer, nanoid } from '@reduxjs/toolkit'
|
||||
import { createSlice, nanoid } from '@reduxjs/toolkit'
|
||||
import { DEFAULT_TXN_DISMISS_MS } from 'constants/misc'
|
||||
|
||||
import {
|
||||
addPopup,
|
||||
ApplicationModal,
|
||||
PopupContent,
|
||||
removePopup,
|
||||
setChainConnectivityWarning,
|
||||
setImplements3085,
|
||||
setOpenModal,
|
||||
updateBlockNumber,
|
||||
updateChainId,
|
||||
} from './actions'
|
||||
export type PopupContent = {
|
||||
txn: {
|
||||
hash: string
|
||||
}
|
||||
}
|
||||
|
||||
export enum ApplicationModal {
|
||||
WALLET,
|
||||
SETTINGS,
|
||||
SELF_CLAIM,
|
||||
ADDRESS_CLAIM,
|
||||
CLAIM_POPUP,
|
||||
MENU,
|
||||
DELEGATE,
|
||||
VOTE,
|
||||
POOL_OVERVIEW_OPTIONS,
|
||||
NETWORK_SELECTOR,
|
||||
PRIVACY_POLICY,
|
||||
}
|
||||
|
||||
type PopupList = Array<{ key: string; show: boolean; content: PopupContent; removeAfterMs: number | null }>
|
||||
|
||||
@@ -33,24 +41,26 @@ const initialState: ApplicationState = {
|
||||
popupList: [],
|
||||
}
|
||||
|
||||
export default createReducer(initialState, (builder) =>
|
||||
builder
|
||||
.addCase(updateChainId, (state, action) => {
|
||||
const applicationSlice = createSlice({
|
||||
name: 'application',
|
||||
initialState,
|
||||
reducers: {
|
||||
updateChainId(state, action) {
|
||||
const { chainId } = action.payload
|
||||
state.chainId = chainId
|
||||
})
|
||||
.addCase(updateBlockNumber, (state, action) => {
|
||||
},
|
||||
updateBlockNumber(state, action) {
|
||||
const { chainId, blockNumber } = action.payload
|
||||
if (typeof state.blockNumber[chainId] !== 'number') {
|
||||
state.blockNumber[chainId] = blockNumber
|
||||
} else {
|
||||
state.blockNumber[chainId] = Math.max(blockNumber, state.blockNumber[chainId])
|
||||
}
|
||||
})
|
||||
.addCase(setOpenModal, (state, action) => {
|
||||
},
|
||||
setOpenModal(state, action) {
|
||||
state.openModal = action.payload
|
||||
})
|
||||
.addCase(addPopup, (state, { payload: { content, key, removeAfterMs = DEFAULT_TXN_DISMISS_MS } }) => {
|
||||
},
|
||||
addPopup(state, { payload: { content, key, removeAfterMs = DEFAULT_TXN_DISMISS_MS } }) {
|
||||
state.popupList = (key ? state.popupList.filter((popup) => popup.key !== key) : state.popupList).concat([
|
||||
{
|
||||
key: key || nanoid(),
|
||||
@@ -59,18 +69,30 @@ export default createReducer(initialState, (builder) =>
|
||||
removeAfterMs,
|
||||
},
|
||||
])
|
||||
})
|
||||
.addCase(removePopup, (state, { payload: { key } }) => {
|
||||
},
|
||||
removePopup(state, { payload: { key } }) {
|
||||
state.popupList.forEach((p) => {
|
||||
if (p.key === key) {
|
||||
p.show = false
|
||||
}
|
||||
})
|
||||
})
|
||||
.addCase(setImplements3085, (state, { payload: { implements3085 } }) => {
|
||||
},
|
||||
setImplements3085(state, { payload: { implements3085 } }) {
|
||||
state.implements3085 = implements3085
|
||||
})
|
||||
.addCase(setChainConnectivityWarning, (state, { payload: { warn } }) => {
|
||||
},
|
||||
setChainConnectivityWarning(state, { payload: { warn } }) {
|
||||
state.chainConnectivityWarning = warn
|
||||
})
|
||||
)
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
export const {
|
||||
updateChainId,
|
||||
updateBlockNumber,
|
||||
setOpenModal,
|
||||
addPopup,
|
||||
removePopup,
|
||||
setImplements3085,
|
||||
setChainConnectivityWarning,
|
||||
} = applicationSlice.actions
|
||||
export default applicationSlice.reducer
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user