Compare commits
85 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e581c19ff | ||
|
|
8c2fa89e9e | ||
|
|
0ae7452eca | ||
|
|
4589beb789 | ||
|
|
55aee86971 | ||
|
|
a457af91b6 | ||
|
|
e61b5da3c5 | ||
|
|
b4f44744c1 | ||
|
|
27f4e2e750 | ||
|
|
01159c53d5 | ||
|
|
8d8d63b873 | ||
|
|
da9db4b5f1 | ||
|
|
1724bee0f5 | ||
|
|
48e526554b | ||
|
|
53add345de | ||
|
|
e28faf0da2 | ||
|
|
f79dc5fe82 | ||
|
|
a6f29cbff8 | ||
|
|
68f0d4b725 | ||
|
|
111e7dc929 | ||
|
|
39d61e4913 | ||
|
|
3e6d3ec1b5 | ||
|
|
3f65530bf4 | ||
|
|
dba0d20781 | ||
|
|
a0f3bd0dc6 | ||
|
|
bef85abfd4 | ||
|
|
9934dba805 | ||
|
|
72d94b2831 | ||
|
|
138697a30a | ||
|
|
0add8ae177 | ||
|
|
13f7859aaa | ||
|
|
3337b5de22 | ||
|
|
55ea6616a4 | ||
|
|
5dd1249ddd | ||
|
|
4ab2bd3474 | ||
|
|
9eb20624cb | ||
|
|
25c5cf04e6 | ||
|
|
1f70e63cd0 | ||
|
|
df88b0ddd1 | ||
|
|
679759c3a0 | ||
|
|
9b6003bdc5 | ||
|
|
2b32824c26 | ||
|
|
a4e4cf8ab9 | ||
|
|
f08cea1820 | ||
|
|
e2d35c56fc | ||
|
|
5f20040107 | ||
|
|
9344abd1cf | ||
|
|
426e31230d | ||
|
|
06c48559c5 | ||
|
|
0a33ed1a50 | ||
|
|
d5c490b871 | ||
|
|
099c2adea3 | ||
|
|
d387538576 | ||
|
|
a3a7d01ce9 | ||
|
|
549e67bcea | ||
|
|
932992b57f | ||
|
|
76a24376d4 | ||
|
|
f873b2249f | ||
|
|
22452c03b0 | ||
|
|
14e045b999 | ||
|
|
948781f927 | ||
|
|
2f72d6b77e | ||
|
|
a78209690d | ||
|
|
98a2f51125 | ||
|
|
a1043573af | ||
|
|
63760faa9d | ||
|
|
0566ec28be | ||
|
|
d4c1baba57 | ||
|
|
7e41b27cd3 | ||
|
|
1d18a5159f | ||
|
|
bb87d2dd03 | ||
|
|
0b27528a6a | ||
|
|
5788a273ba | ||
|
|
4d322b17da | ||
|
|
cb5b80b558 | ||
|
|
6964b519bc | ||
|
|
ee4ea2a1f0 | ||
|
|
3763ad15e0 | ||
|
|
557042a88f | ||
|
|
860413dd52 | ||
|
|
18d4cdcce4 | ||
|
|
55767de484 | ||
|
|
60d5cef69b | ||
|
|
ad2833a3ed | ||
|
|
e4a105714a |
@@ -16,10 +16,12 @@ export const V2_ROUTER_ADDRESS: AddressMap = constructSameAddressMap(
|
||||
'0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D',
|
||||
false
|
||||
)
|
||||
export const GOVERNANCE_ADDRESS: AddressMap = constructSameAddressMap(
|
||||
'0x5e4be8Bc9637f0EAA1A755019e06A68ce081D58F',
|
||||
false
|
||||
)
|
||||
export const GOVERNANCE_ADDRESSES: AddressMap[] = [
|
||||
constructSameAddressMap('0x5e4be8Bc9637f0EAA1A755019e06A68ce081D58F', false),
|
||||
{
|
||||
[SupportedChainId.MAINNET]: '0xC4e172459f1E7939D522503B81AFAaC1014CE6F6',
|
||||
},
|
||||
]
|
||||
export const TIMELOCK_ADDRESS: AddressMap = constructSameAddressMap('0x1a9C8182C09F50C8318d769245beA52c32BE35BC', false)
|
||||
export const MERKLE_DISTRIBUTOR_ADDRESS: AddressMap = {
|
||||
[SupportedChainId.MAINNET]: '0x090D4613473dEE047c3f2706764f49E0821D256e',
|
||||
|
||||
@@ -1,31 +1,12 @@
|
||||
import { GOVERNANCE_ADDRESS, TIMELOCK_ADDRESS, UNI_ADDRESS } from './addresses'
|
||||
import { GOVERNANCE_ADDRESSES, TIMELOCK_ADDRESS, UNI_ADDRESS } from './addresses'
|
||||
|
||||
export const COMMON_CONTRACT_NAMES: { [chainId: number]: { [address: string]: string } } = {
|
||||
[1]: {
|
||||
[UNI_ADDRESS[1]]: 'UNI',
|
||||
[GOVERNANCE_ADDRESS[1]]: 'Governance',
|
||||
[GOVERNANCE_ADDRESSES[0][1]]: 'Governance (V0)',
|
||||
[GOVERNANCE_ADDRESSES[1][1]]: 'Governance',
|
||||
[TIMELOCK_ADDRESS[1]]: 'Timelock',
|
||||
},
|
||||
[4]: {
|
||||
[UNI_ADDRESS[4]]: 'Rinkeby UNI',
|
||||
[GOVERNANCE_ADDRESS[4]]: 'Rinkeby Governance',
|
||||
[TIMELOCK_ADDRESS[4]]: 'Rinkeby Timelock',
|
||||
},
|
||||
[3]: {
|
||||
[UNI_ADDRESS[3]]: 'Ropsten UNI',
|
||||
[GOVERNANCE_ADDRESS[3]]: 'Ropsten Governance',
|
||||
[TIMELOCK_ADDRESS[3]]: 'Ropsten Timelock',
|
||||
},
|
||||
[42]: {
|
||||
[UNI_ADDRESS[42]]: 'Kovan UNI',
|
||||
[GOVERNANCE_ADDRESS[42]]: 'Kovan Governance',
|
||||
[TIMELOCK_ADDRESS[42]]: 'Kovan Timelock',
|
||||
},
|
||||
[5]: {
|
||||
[UNI_ADDRESS[5]]: 'Goerli UNI',
|
||||
[GOVERNANCE_ADDRESS[5]]: 'Goerli Governance',
|
||||
[TIMELOCK_ADDRESS[5]]: 'Goerli Timelock',
|
||||
},
|
||||
}
|
||||
|
||||
export const DEFAULT_AVERAGE_BLOCK_TIME_IN_SECS = 13
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
import { UNISWAP_GRANTS_PROPOSAL_DESCRIPTION } from './uniswap_grants_proposal_description'
|
||||
|
||||
// Proposals are 0-indexed
|
||||
export const PROPOSAL_DESCRIPTION_TEXT: { [proposalId: number]: string } = {
|
||||
[2]: UNISWAP_GRANTS_PROPOSAL_DESCRIPTION,
|
||||
}
|
||||
@@ -27,7 +27,7 @@ import {
|
||||
V3_CORE_FACTORY_ADDRESSES,
|
||||
V3_MIGRATOR_ADDRESSES,
|
||||
ARGENT_WALLET_DETECTOR_ADDRESS,
|
||||
GOVERNANCE_ADDRESS,
|
||||
GOVERNANCE_ADDRESSES,
|
||||
MERKLE_DISTRIBUTOR_ADDRESS,
|
||||
MULTICALL2_ADDRESSES,
|
||||
V2_ROUTER_ADDRESS,
|
||||
@@ -116,8 +116,11 @@ export function useMerkleDistributorContract() {
|
||||
return useContract(MERKLE_DISTRIBUTOR_ADDRESS, MERKLE_DISTRIBUTOR_ABI, true)
|
||||
}
|
||||
|
||||
export function useGovernanceContract() {
|
||||
return useContract(GOVERNANCE_ADDRESS, GOVERNANCE_ABI, true)
|
||||
export function useGovernanceContracts(): (Contract | null)[] {
|
||||
return [
|
||||
useContract(GOVERNANCE_ADDRESSES[0], GOVERNANCE_ABI, false),
|
||||
useContract(GOVERNANCE_ADDRESSES[1], GOVERNANCE_ABI, true),
|
||||
]
|
||||
}
|
||||
|
||||
export function useUniContract() {
|
||||
|
||||
@@ -215,9 +215,9 @@ export function swapErrorToUserReadableMessage(error: any): string {
|
||||
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 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.`
|
||||
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 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.`
|
||||
default:
|
||||
if (reason?.indexOf('undefined is not an object') !== -1) {
|
||||
console.error(error, reason)
|
||||
@@ -225,7 +225,7 @@ export function swapErrorToUserReadableMessage(error: any): string {
|
||||
}
|
||||
return t`Unknown error${
|
||||
reason ? `: "${reason}"` : ''
|
||||
}. Try increasing your slippage tolerance. Note fee on transfer and rebase tokens are incompatible with Uniswap V3.`
|
||||
}. Try increasing your slippage tolerance. Note: fee on transfer and rebase tokens are incompatible with Uniswap V3.`
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -109,7 +109,7 @@ msgstr "<0> Terug na</0> V3"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "<0>Tip:</0> Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive."
|
||||
msgstr "<0> Wenk:</0> As u swembadtekens verwyder, verander u u posisie in onderliggende tekens teen die huidige koers, eweredig aan u deel van die swembad. Opgelope fooie is ingesluit by die bedrae wat u ontvang."
|
||||
msgstr "<0> Wenk:</0> As u poeltekens verwyder, verander u u posisie in onderliggende tekens teen die huidige koers, eweredig aan u deel van die poel. Opgelope fooie is ingesluit by die bedrae wat u ontvang."
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "<0>Tip:</0> Use this tool to find v2 pools that don't automatically appear in the interface."
|
||||
@@ -117,7 +117,7 @@ msgstr "<0> Wenk:</0> Gebruik hierdie instrument om v2 poele te vind wat nie out
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "<0>Tip:</0> When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time."
|
||||
msgstr "<0> Wenk:</0> As u likiditeit byvoeg, sal u swembadtekens ontvang wat u posisie verteenwoordig. Hierdie tokens verdien outomaties fooie wat eweredig is aan u deel van die swembad en kan op enige tydstip afgelos word."
|
||||
msgstr "<0> Wenk:</0> As u likiditeit byvoeg, sal u poeltekens ontvang wat u posisie verteenwoordig. Hierdie tekens verdien outomaties fooie wat eweredig is aan u deel van die poel en kan op enige tydstip afgelos word."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "<0>Unlock voting</0> to prepare for the next proposal."
|
||||
@@ -125,11 +125,11 @@ msgstr "<0> Ontsluit stem</0> om voor te berei vir die volgende voorstel."
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "<0>🎉 </0>Welcome to team Unicorn :) <1>🎉</1>"
|
||||
msgstr "<0> 🎉</0> Welkom by die span Unicorn :) <1> 🎉</1>"
|
||||
msgstr "<0> 🎉</0> Welkom by die Unicorn span :) <1> 🎉</1>"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "A minimum threshold of 1% of the total UNI supply is required to submit proposals"
|
||||
msgstr "'N Minimum drempel van 1% van die totale UNI-aanbod is nodig om voorstelle in te dien"
|
||||
msgstr "'n Minimum drempel van 1% van die totale UNI-aanbod is nodig om voorstelle in te dien"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "About"
|
||||
@@ -149,6 +149,7 @@ msgstr "Aktief"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "Voeg by"
|
||||
|
||||
@@ -183,7 +184,7 @@ msgstr "Voeg {0}-{1} likiditeit by"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add {0}/{1} V3 liquidity"
|
||||
msgstr "Voeg {0}/{1} V3 likiditeit"
|
||||
msgstr "Voeg {0}/{1} V3 likiditeit by"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Added {0}"
|
||||
@@ -199,7 +200,7 @@ msgstr "Teen"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Allow LP token migration"
|
||||
msgstr "Laat migrasie van LP-token toe"
|
||||
msgstr "Laat migrasie van LP-teken toe"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk."
|
||||
@@ -207,7 +208,7 @@ msgstr "Laat handel oor hoë prysimpak toe en slaan die bevestigingsskerm oor. G
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Allow the Uniswap Protocol to use your {0}"
|
||||
msgstr "Laat die Uniswap-protokol toe om u {0}"
|
||||
msgstr "Laat die Uniswap-protokol toe om u {0} te gebruik"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Allowed"
|
||||
@@ -223,7 +224,7 @@ msgstr "Bedrag"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 uitvoer van hierdie ruil. U moet dalk u glyverdraagsaamheid verhoog. As dit nie werk nie, is daar moontlik 'n onverenigbaarheid met die teken wat u verhandel. Nota-fooi vir oordrag- en rebase-tokens is nie versoenbaar met Uniswap V3 nie."
|
||||
msgstr "'n Fout het voorgekom tydens die uitvoer van hierdie ruil. U moet dalk u glyverdraagsaamheid verhoog. As dit nie werk nie, is daar moontlik 'n onverenigbaarheid met die teken wat u verhandel. Nota-fooi vir oordrag- en rebase-tekens is nie versoenbaar met Uniswap V3 nie."
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Analytics"
|
||||
@@ -234,10 +235,12 @@ msgstr "Analise"
|
||||
msgid "Approve"
|
||||
msgstr "Goedkeur"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
msgstr "Keur {0}"
|
||||
msgstr "Goedkeur {0}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Approved"
|
||||
@@ -248,6 +251,8 @@ msgstr "Goedgekeur"
|
||||
msgid "Approving"
|
||||
msgstr "Goedkeur"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -259,7 +264,7 @@ msgstr "Is jy seker?"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI</2>"
|
||||
msgstr "As lid van die Uniswap-gemeenskap kan u daarop aanspraak maak dat UNI gebruik word vir stemming en regering. <0 /> <1 /> <2> Lees meer oor UNI</2>"
|
||||
msgstr "As lid van die Uniswap-gemeenskap kan u daarop aanspraak maak dat UNI gebruik word vir stemming en beheer. <0 /> <1 /> <2> Lees meer oor UNI</2>"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range."
|
||||
@@ -303,7 +308,7 @@ msgstr "Adres geblokkeer"
|
||||
|
||||
#: 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."
|
||||
msgstr "Deur likiditeit by te voeg, verdien u 0,3% van alle transaksies op hierdie paar in verhouding tot u deel van die poel. Fooie word by die swembad gevoeg, intyds toegeval en kan geëis word deur u likiditeit te onttrek."
|
||||
msgstr "Deur likiditeit by te voeg, verdien u 0,3% van alle transaksies op hierdie paar in verhouding tot u deel van die poel. Fooie word by die poel gevoeg, word intyds toegeval en kan geëis word deur u likiditeit te onttrek."
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
@@ -354,7 +359,7 @@ msgstr "Eisgelde"
|
||||
|
||||
#: src/components/Popups/ClaimPopup.tsx
|
||||
msgid "Claim your UNI tokens"
|
||||
msgstr "Eis u UNI-tokens op"
|
||||
msgstr "Eis u UNI-tekens op"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claimed"
|
||||
@@ -457,6 +462,7 @@ msgstr "Bevestig hierdie transaksie in u beursie"
|
||||
#: 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
|
||||
@@ -507,7 +513,7 @@ msgstr "Kopieer adres"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Create Pool & Supply"
|
||||
msgstr "Skep swembad en aanbod"
|
||||
msgstr "Skep Poel en Verskaf"
|
||||
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
#: src/pages/Pool/v2.tsx
|
||||
@@ -516,7 +522,7 @@ msgstr "Skep 'n paar"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Create a pool"
|
||||
msgstr "Skep 'n swembad"
|
||||
msgstr "Skep 'n poel"
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Create an issue on GitHub"
|
||||
@@ -524,11 +530,11 @@ msgstr "Skep 'n probleem op GitHub"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Create pool and add {0}/{1} V3 liquidity"
|
||||
msgstr "Skep swembad en voeg {0}/{1} V3 likiditeit"
|
||||
msgstr "Skep poel en voeg {0}/{1} V3 likiditeit"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Create pool."
|
||||
msgstr "Skep swembad."
|
||||
msgstr "Skep poel."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Current Price"
|
||||
@@ -568,7 +574,7 @@ msgstr "Depositobedrae"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Deposit UNI-V2 LP Tokens"
|
||||
msgstr "Plaas UNI-V2 LP-tokens"
|
||||
msgstr "Plaas UNI-V2 LP-tekens"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Deposit liquidity"
|
||||
@@ -576,7 +582,7 @@ msgstr "Deponeer likiditeit"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token."
|
||||
msgstr "Deponeer u likiditeitsverskaffer-tokens om UNI, die Uniswap-protokolbestuurstoken, te ontvang."
|
||||
msgstr "Deponeer u likiditeitsverskaffer-tekens om UNI, die Uniswap-protokolbestuursteken, te ontvang."
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Deposited liquidity:"
|
||||
@@ -612,7 +618,7 @@ msgstr "Ontkoppel"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Discord"
|
||||
msgstr "Onmin"
|
||||
msgstr "Onenigheid"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Dismiss"
|
||||
@@ -628,7 +634,11 @@ msgstr "Sien u nie een van u v2-posisies nie? <0> Voer dit in.</0>"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "Verdien UNI-tokens verteenwoordig stemgeregtigde aandele in Uniswap-bestuur."
|
||||
msgstr "Verdiende UNI-tekens verteenwoordig stemgeregtigde aandele in Uniswap-bestuur."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "Voer 'n persentasie in"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
@@ -689,7 +699,7 @@ msgstr "Die kundige modus skakel die bevestiging van die transaksie uit en laat
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore popular pools on Uniswap Analytics."
|
||||
msgstr "Verken gewilde swembaddens op Uniswap Analytics."
|
||||
msgstr "Verken gewilde poele op Uniswap Analytics."
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
msgid "Fee Tier"
|
||||
@@ -701,7 +711,7 @@ msgstr "Vir"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3."
|
||||
msgstr "Klik op migreer vir elke swembad hieronder om u likiditeit uit Uniswap V2 te verwyder en dit in Uniswap V3 te deponeer."
|
||||
msgstr "Klik op migreer vir elke poel hieronder om u likiditeit uit Uniswap V2 te verwyder en dit in Uniswap V3 te deponeer."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -840,7 +850,7 @@ msgstr "Belonings vir likiditeitsverskaffer"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity."
|
||||
msgstr "Likiditeitsverskaffers verdien 'n fooi van 0,3% op alle transaksies wat eweredig is aan hul deel van die swembad. Fooie word by die swembad gevoeg, intyds toegeval en kan geëis word deur u likiditeit te onttrek."
|
||||
msgstr "Likiditeitsverskaffers verdien 'n fooi van 0,3% op alle transaksies wat eweredig is aan hul deel van die poel. Fooie word by die poel gevoeg, intyds toegeval en kan geëis word deur u likiditeit te onttrek."
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Lists"
|
||||
@@ -934,7 +944,7 @@ msgstr "Migreer V2-likiditeit"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3."
|
||||
msgstr "Migreer u likiditeitstoken van Uniswap V2 na Uniswap V3."
|
||||
msgstr "Migreer u likiditeitsteken van Uniswap V2 na Uniswap V3."
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Migrating"
|
||||
@@ -943,11 +953,11 @@ msgstr "Migreer"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/RangeSelector/index.tsx
|
||||
msgid "Min Price"
|
||||
msgstr "Min prys"
|
||||
msgstr "Minimum prys"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Min price"
|
||||
msgstr "Min prys"
|
||||
msgstr "Minimum prys"
|
||||
|
||||
#: src/components/PositionListItem/index.tsx
|
||||
msgid "Min:"
|
||||
@@ -980,7 +990,7 @@ msgstr "Geen likiditeit gevind nie."
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "No pool found."
|
||||
msgstr "Geen swembad gevind nie."
|
||||
msgstr "Geen poel gevind nie."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "No proposals found."
|
||||
@@ -1004,7 +1014,7 @@ msgstr "GEBRUIK SLEGS hierdie modus as u weet wat u doen."
|
||||
|
||||
#: src/components/Toggle/index.tsx
|
||||
msgid "Off"
|
||||
msgstr "Uit"
|
||||
msgstr "Af"
|
||||
|
||||
#: src/components/Toggle/index.tsx
|
||||
msgid "On"
|
||||
@@ -1033,11 +1043,11 @@ msgstr "Die uitset word geskat. As die prys met meer as {0}% verander, sal u tra
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Output is estimated. You will receive at least <0>{0} {1}</0> or the transaction will revert."
|
||||
msgstr "Die uitset word geskat. U sal minstens <0>{0} {1}</0> anders gaan die transaksie terug."
|
||||
msgstr "Die uitset word geskat. U sal minstens <0>{0} {1}</0> ontvang, anders gaan die transaksie terug."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Output will be sent to <0>{0}</0>"
|
||||
msgstr "Uitset sal na <0>{0}</0>"
|
||||
msgstr "Uitset sal na <0>{0}</0> gestuur word"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Owner"
|
||||
@@ -1045,7 +1055,7 @@ msgstr "Eienaar"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Participating pools"
|
||||
msgstr "Deelnemende swembaddens"
|
||||
msgstr "Deelnemende poele"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Please connect to the appropriate Ethereum network."
|
||||
@@ -1058,24 +1068,24 @@ msgstr "Tik die woord \"{confirmWord}\" in om die kundige modus te aktiveer."
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
msgid "Pool"
|
||||
msgstr "Swembad"
|
||||
msgstr "Poel"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Pool Found!"
|
||||
msgstr "Swembad gevind!"
|
||||
msgstr "Poel gevind!"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Pool Rate"
|
||||
msgstr "Swembadtarief"
|
||||
msgstr "Poeltarief"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Pool rate"
|
||||
msgstr "Swembad tarief"
|
||||
msgstr "Poeltarief"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Pool tokens in rewards pool:"
|
||||
msgstr "Pooltoken in die beloningspool:"
|
||||
msgstr "Poelteken in die beloningspoel:"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
@@ -1086,11 +1096,11 @@ msgstr "Pooltoken in die beloningspool:"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Pooled {0}:"
|
||||
msgstr "Gesamentlike {0}:"
|
||||
msgstr "Gepoel {0}:"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Pools Overview"
|
||||
msgstr "Swembaddens Oorsig"
|
||||
msgstr "Poele Oorsig"
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
@@ -1262,9 +1272,13 @@ msgstr "Stel prysklas in"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "Stel beginprys"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "Deel van die swembad"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "Aandeel van die swembad:"
|
||||
msgstr "Aandeel van die poel:"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Show Portis"
|
||||
@@ -1289,7 +1303,7 @@ msgstr "Iets het verkeerd geloop"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Step 1. Get UNI-V2 Liquidity tokens"
|
||||
msgstr "Stap 1. Kry UNI-V2 likiditeitstokens"
|
||||
msgstr "Stap 1. Kry UNI-V2 likiditeitstekens"
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "Submitting Vote"
|
||||
@@ -1330,7 +1344,7 @@ msgstr "Die ruil-invariant x * y = k is nie bevredig deur die ruil nie. Dit bete
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "Die invoer-token kan nie oorgedra word nie. Die invoer-token kan 'n probleem hê."
|
||||
msgstr "Die invoer-teken kan nie oorgedra word nie. Die invoer-teken kan 'n probleem hê."
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
@@ -1338,23 +1352,23 @@ msgstr "Die markprys is buite u gespesifiseerde prysklas. Slegs deposito vir enk
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "Die uitvoer-token kan nie oorgedra word nie. Daar kan 'n probleem wees met die uitvoer-token."
|
||||
msgstr "Die uitvoer-teken kan nie oorgedra word nie. Daar kan 'n probleem wees met die uitvoer-teken."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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-token kan nie oorgedra word nie. Daar kan 'n probleem wees met die uitvoer-token. Nota-fooi vir oordrag- en rebase-tokens is nie versoenbaar met Uniswap V3 nie."
|
||||
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."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
msgstr "Die prys van hierdie swembad is buite u gekose reeks. U pos verdien tans nie fooie nie."
|
||||
msgstr "Die prys van hierdie poel is buite u gekose reeks. U posisie verdien tans nie fooie nie."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is within your selected range. Your position is currently earning fees."
|
||||
msgstr "Die prys van hierdie swembad is binne u gekose reeks. U pos verdien tans fooie."
|
||||
msgstr "Die prys van hierdie poel is binne u gekose reeks. U posisie verdien tans fooie."
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
msgstr "Die verhouding tokens wat u byvoeg, bepaal die prys van hierdie swembad."
|
||||
msgstr "Die verhouding tekens wat u byvoeg bepaal die prys van hierdie poel."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
@@ -1362,19 +1376,19 @@ msgstr "Die transaksie kon nie gestuur word nie omdat die sperdatum verstryk het
|
||||
|
||||
#: src/components/SearchModal/CommonBases.tsx
|
||||
msgid "These tokens are commonly paired with other tokens."
|
||||
msgstr "Hierdie tokens word gewoonlik gekoppel aan ander tokens."
|
||||
msgstr "Hierdie tekens word gewoonlik gekoppel aan ander tekens."
|
||||
|
||||
#: 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 "Hierdie token verskyn nie op die aktiewe tokenlys nie. Maak seker dat dit die teken is wat u wil verhandel."
|
||||
msgstr "Hierdie teken verskyn nie op die aktiewe tekenlys(te) nie. Maak seker dat dit die teken is wat u wil verhandel."
|
||||
|
||||
#: 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
|
||||
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. Nota-fooi vir oordrag- en rebase-tokens is nie versoenbaar met Uniswap V3 nie."
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1382,7 +1396,7 @@ msgstr "Hierdie transaksie sal ook nie slaag nie as gevolg van prysbeweging of f
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "Tip: Custom tokens are stored locally in your browser"
|
||||
msgstr "Wenk: Pasgemaakte tokens word plaaslik in u blaaier geberg"
|
||||
msgstr "Wenk: Pasgemaakte tekens word plaaslik in u blaaier geberg"
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1399,19 +1413,19 @@ msgstr "Skakel deskundige modus af"
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Tokens"
|
||||
msgstr "Tokens"
|
||||
msgstr "Tekens"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList.tsx
|
||||
msgid "Tokens from inactive lists. Import specific tokens below or click Manage to activate more lists."
|
||||
msgstr "Tokens uit onaktiewe lyste. Voer spesifieke tekens hieronder in of klik op Bestuur om meer lyste te aktiveer."
|
||||
msgstr "Tekens uit onaktiewe lyste. Voer spesifieke tekens hieronder in of klik op Bestuur om meer lyste te aktiveer."
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Top swembaddens"
|
||||
msgstr "Top poele"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Total Supply"
|
||||
msgstr "Totale aanbod"
|
||||
msgstr "Totale Verskaffing"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Total deposited"
|
||||
@@ -1460,7 +1474,7 @@ msgstr "UNI-prys:"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party."
|
||||
msgstr "UNI-tokens verteenwoordig stemgeregtigde aandele in Uniswap-bestuur. U kan self oor elke voorstel stem of u stemme aan 'n derde party delegeer."
|
||||
msgstr "UNI-tekens verteenwoordig stemgeregtigde aandele in Uniswap-bestuur. U kan self oor elke voorstel stem of u stemme aan 'n derde party delegeer."
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "UNI {0}/{1} Burned"
|
||||
@@ -1468,7 +1482,7 @@ msgstr "UNI {0}/{1} Verbrand"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page."
|
||||
msgstr "UNI-V2 LP-tokens word vereis. Nadat u likiditeit by die {0}-{1} poel gevoeg het, kan u u likiditeitstoken op hierdie bladsy insit."
|
||||
msgstr "UNI-V2 LP-tekens word vereis. Nadat u likiditeit by die {0}-{1} poel gevoeg het, kan u u likiditeitsteken op hierdie bladsy insit."
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "UNI-V2 {0}-{1}"
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "Onbekende bron"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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. Nota-fooi vir oordrag- en rebase-tokens is nie versoenbaar met Uniswap V3 nie."
|
||||
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."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1540,7 +1554,7 @@ msgstr "Nie-ondersteunde bates"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Unwrap"
|
||||
msgstr "Pak uit"
|
||||
msgstr "Maak oop"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Update Delegation"
|
||||
@@ -1620,7 +1634,7 @@ msgstr "Stem vir voorstel {proposalId}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting ended {0}"
|
||||
msgstr "Die stemming is {0}"
|
||||
msgstr "Die stemming het geeïnding {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting ends approximately {0}"
|
||||
@@ -1683,7 +1697,7 @@ msgstr "Verkeerde netwerk"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "You are creating a pool"
|
||||
msgstr "U skep 'n swembad"
|
||||
msgstr "U skep 'n poel"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "You are the first liquidity provider for this Uniswap V3 pool. Your liquidity will migrate at the current {0} price."
|
||||
@@ -1699,7 +1713,7 @@ msgstr "U kan self oor elke voorstel stem of u stemme aan 'n derde party delegee
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "You can now trade {0}"
|
||||
msgstr "U kan nou {0}"
|
||||
msgstr "U kan nou {0} verhandel"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "You don’t have liquidity in this pool yet."
|
||||
@@ -1724,7 +1738,7 @@ msgstr "U sal ook fooie wat u uit hierdie posisie verdien, invorder."
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "You will receive"
|
||||
msgstr "Jy sal ontvang"
|
||||
msgstr "U sal ontvang"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Your UNI Breakdown"
|
||||
@@ -1750,7 +1764,7 @@ msgstr "U likiditeit verdien slegs fooie as die markprys van die paar binne u re
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Your pool share:"
|
||||
msgstr "U swembadaandeel:"
|
||||
msgstr "U poelaandeel:"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Your position"
|
||||
@@ -1768,12 +1782,12 @@ msgstr "U posisie sal 100% bestaan uit {0} teen hierdie prys"
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Your position will be 100% {0} at this price."
|
||||
msgstr "U posisie sal teen hierdie prys {0}"
|
||||
msgstr "U posisie sal 100% wees teen hierdie prys {0}."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Your position will not earn fees or be used in trades until the market price moves into your range."
|
||||
msgstr "U posisie verdien nie fooie of word in transaksies gebruik voordat die markprys binne u reeks beweeg nie."
|
||||
msgstr "U posisie sal nie fooie verdien of in transaksies gebruik word voordat die markprys binne u reeks beweeg nie."
|
||||
|
||||
#: src/components/PositionList/index.tsx
|
||||
#: src/components/PositionList/index.tsx
|
||||
@@ -1787,11 +1801,11 @@ msgstr "U tarief"
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Your total pool tokens:"
|
||||
msgstr "U totale swembadtoken:"
|
||||
msgstr "U totale poelteken:"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Your transaction cost will be much higher as it includes the gas to create the pool."
|
||||
msgstr "U transaksiekoste sal baie hoër wees, want dit bevat die gas om die swembad te skep."
|
||||
msgstr "U transaksiekoste sal baie hoër wees, want dit bevat die gas om die poel te skep."
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Your transaction may be frontrun"
|
||||
@@ -1862,7 +1876,7 @@ msgstr "{0} <0 /> per <1 />"
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "{0} Custom Tokens"
|
||||
msgstr "{0} Persoonlike tokens"
|
||||
msgstr "{0} Persoonlike tekens"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "{0} Fooie verdien:"
|
||||
|
||||
@@ -1905,7 +1920,7 @@ msgstr "{0} UNI-V2"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "{0} UNI-V2 LP tokens available"
|
||||
msgstr "{0} UNI-V2 LP tokens beskikbaar"
|
||||
msgstr "{0} UNI-V2 LP tekens beskikbaar"
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "{0} Votes"
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} Stemme"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
@@ -1929,7 +1947,7 @@ msgstr "{0} prys"
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "{0} tokens"
|
||||
msgstr "{0} tokens"
|
||||
msgstr "{0} tekens"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1961,7 +1979,7 @@ msgstr "{0}/{1} LP NFT"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "{0}/{1} LP Tokens"
|
||||
msgstr "{0}/{1} LP Tokens"
|
||||
msgstr "{0}/{1} LP Tekens"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "{SOCKS_AMOUNT} UNI"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,12 +14,12 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "$-"
|
||||
msgstr "$ -"
|
||||
msgstr "$-"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -101,31 +101,31 @@ msgstr "<0/> Vots"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "<0>Account analytics and accrued fees</0><1> ↗ </1>"
|
||||
msgstr "<0> Anàlisi del compte i comissions acumulades</0> <1> ↗</1>"
|
||||
msgstr "<0>Anàlisi del compte i comissions acumulades</0> <1> ↗</1>"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "<0>Back to </0>V3"
|
||||
msgstr "<0> Torna a</0> V3"
|
||||
msgstr "<0>Torna a</0> V3"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "<0>Tip:</0> Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive."
|
||||
msgstr "<0> Consell:</0> L’eliminació de les fitxes de grup converteix la vostra posició en fitxes subjacents al ritme actual, proporcional a la vostra quota de fons. Les comissions acumulades estan incloses en els imports que rebeu."
|
||||
msgstr "<0>Consell:</0> L’eliminació de les fitxes de grup converteix la vostra posició en fitxes subjacents al ritme actual, proporcional a la vostra quota de grup. Les comissions acumulades estan incloses en els imports que rebeu."
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "<0>Tip:</0> Use this tool to find v2 pools that don't automatically appear in the interface."
|
||||
msgstr "<0> Consell:</0> Utilitzeu aquesta eina per trobar grups de v2 que no apareixen automàticament a la interfície."
|
||||
msgstr "<0>Consell:</0> Utilitzeu aquesta eina per trobar grups de v2 que no apareixen automàticament a la interfície."
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "<0>Tip:</0> When you add liquidity, you will receive pool tokens representing your position. These tokens automatically earn fees proportional to your share of the pool, and can be redeemed at any time."
|
||||
msgstr "<0> Consell:</0> Quan afegiu liquiditat, rebreu fitxes de pool que representin la vostra posició. Aquests tokens guanyen automàticament quotes proporcionals a la vostra quota de fons i es poden bescanviar en qualsevol moment."
|
||||
msgstr "<0>Consell:</0> Quan afegiu liquiditat, rebreu fitxes de grup que representin la vostra posició. Aquestes fitxes guanyen automàticament quotes proporcionals a la vostra quota de fons i es poden bescanviar en qualsevol moment."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "<0>Unlock voting</0> to prepare for the next proposal."
|
||||
msgstr "<0> Desbloqueja la votació</0> per preparar la propera proposta."
|
||||
msgstr "<0>Desbloqueja la votació</0> per preparar la propera proposta."
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "<0>🎉 </0>Welcome to team Unicorn :) <1>🎉</1>"
|
||||
msgstr "<0> 🎉</0> Benvingut a l'equip Unicorn :) <1> 🎉</1>"
|
||||
msgstr "<0>🎉</0> Benvingut a l'equip Unicorn :) <1> 🎉</1>"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "A minimum threshold of 1% of the total UNI supply is required to submit proposals"
|
||||
@@ -149,6 +149,7 @@ msgstr "Actiu"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "Afegeix"
|
||||
|
||||
@@ -203,7 +204,7 @@ msgstr "Permet la migració de token LP"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk."
|
||||
msgstr "Permetre operacions amb alt impacte en els preus i ometre la pantalla de confirmació. Utilitzeu al vostre propi risc."
|
||||
msgstr "Permet operacions amb alt impacte en els preus i ometre la pantalla de confirmació. Utilitzeu al vostre propi risc."
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Allow the Uniswap Protocol to use your {0}"
|
||||
@@ -223,7 +224,7 @@ msgstr "Import"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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. La tarifa de nota en els tokens de transferència i rebase no és compatible amb 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. La tarifa de nota en les fitxes de transferència i rebase no és compatible amb Uniswap V3."
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Analytics"
|
||||
@@ -234,6 +235,8 @@ msgstr "Analítica"
|
||||
msgid "Approve"
|
||||
msgstr "Aprovar"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "Aprovat"
|
||||
msgid "Approving"
|
||||
msgstr "Aprovant"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -255,7 +260,7 @@ msgstr "S’aprova {0}"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Are you sure?"
|
||||
msgstr "Estàs segur?"
|
||||
msgstr "N'esteu segurs?"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI</2>"
|
||||
@@ -263,7 +268,7 @@ msgstr "Com a membre de la comunitat Uniswap, podeu reclamar que UNI s'utilitzi
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range."
|
||||
msgstr "Es {0} {1} i {2} {3} a la cartera a causa de l'interval de preus seleccionat."
|
||||
msgstr "Com a mínim {0} {1} i {2} {3} seran reemborsats a la cartera a causa de l'interval de preus seleccionat."
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Auto"
|
||||
@@ -275,7 +280,7 @@ msgstr "Disponible per ingressar: {0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
msgstr "esquena"
|
||||
msgstr "Torna"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Balance:"
|
||||
@@ -287,15 +292,15 @@ msgstr "Saldo: {0} {1}"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for exotic pairs."
|
||||
msgstr "El millor per a parelles exòtiques."
|
||||
msgstr "El millor per a parells exòtics."
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for most pairs."
|
||||
msgstr "El millor per a la majoria de parelles."
|
||||
msgstr "El millor per a la majoria de parells."
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for stable pairs."
|
||||
msgstr "El millor per a parelles estables."
|
||||
msgstr "El millor per a parells estables."
|
||||
|
||||
#: src/components/Blocklist/index.tsx
|
||||
msgid "Blocked address"
|
||||
@@ -303,7 +308,7 @@ msgstr "Adreça bloquejada"
|
||||
|
||||
#: 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."
|
||||
msgstr "Si afegiu liquiditat, guanyareu el 0,3% de totes les operacions d’aquest parell proporcional a la vostra quota de fons. Les comissions s’afegeixen al fons, s’acumulen en temps real i es poden reclamar retirant la vostra liquiditat."
|
||||
msgstr "Si afegiu liquiditat, guanyareu el 0,3% de totes les operacions d’aquest parell proporcional a la vostra quota de grup. Les comissions s’afegeixen al grup, s’acumulen en temps real i es poden reclamar retirant la vostra liquiditat."
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
@@ -341,7 +346,7 @@ msgstr "Reclamació UNI"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claim UNI Token"
|
||||
msgstr "Reclama el testimoni UNI"
|
||||
msgstr "Reclama la fitxa UNI"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
@@ -367,16 +372,16 @@ msgstr "Reclamat UNI!"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claiming"
|
||||
msgstr "Reclamació"
|
||||
msgstr "Reclamant"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Claiming UNI"
|
||||
msgstr "Reclamació d’UNI"
|
||||
msgstr "Reclamant UNI"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Claiming {0} UNI"
|
||||
msgstr "Reclamació {0} UNI"
|
||||
msgstr "Reclamant {0} UNI"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Clear All"
|
||||
@@ -401,12 +406,12 @@ msgstr "Codi"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collect"
|
||||
msgstr "Recollir"
|
||||
msgstr "Cobra"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Collect as WETH"
|
||||
msgstr "Recollir com a WETH"
|
||||
msgstr "Cobra com a WETH"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collect fees"
|
||||
@@ -414,11 +419,11 @@ msgstr "Cobra les taxes"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collected"
|
||||
msgstr "Recollit"
|
||||
msgstr "Cobrat"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collecting"
|
||||
msgstr "Col·leccionisme"
|
||||
msgstr "Cobrant"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collecting fees"
|
||||
@@ -457,6 +462,7 @@ msgstr "Confirmeu aquesta transacció a la vostra cartera"
|
||||
#: 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
|
||||
@@ -507,7 +513,7 @@ msgstr "Copia l'adreça"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Create Pool & Supply"
|
||||
msgstr "Creeu piscina i subministrament"
|
||||
msgstr "Crea grup i subministrament"
|
||||
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
#: src/pages/Pool/v2.tsx
|
||||
@@ -516,7 +522,7 @@ msgstr "Crea un parell"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Create a pool"
|
||||
msgstr "Crea una piscina"
|
||||
msgstr "Crea un grup"
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Create an issue on GitHub"
|
||||
@@ -524,11 +530,11 @@ msgstr "Creeu un problema a GitHub"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Create pool and add {0}/{1} V3 liquidity"
|
||||
msgstr "Crear piscina i afegiu {0}/{1} liquiditat V3"
|
||||
msgstr "Crea fons i afegeix {0}/{1} liquiditat V3"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Create pool."
|
||||
msgstr "Crea una piscina."
|
||||
msgstr "Crea un grup."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Current Price"
|
||||
@@ -576,7 +582,7 @@ msgstr "Dipòsit de liquiditat"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token."
|
||||
msgstr "Dipositeu les vostres fitxes de proveïdor de liquiditat per rebre UNI, el testimoni de governança del protocol Uniswap."
|
||||
msgstr "Dipositeu les vostres fitxes de proveïdor de liquiditat per rebre UNI, la fitxa de governança del protocol Uniswap."
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Deposited liquidity:"
|
||||
@@ -584,7 +590,7 @@ msgstr "Liquiditat dipositada:"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Deposited {0} UNI-V2"
|
||||
msgstr "Dipòsit {0} UNI-V2"
|
||||
msgstr "Dipositat {0} UNI-V2"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Depositing Liquidity"
|
||||
@@ -596,7 +602,7 @@ msgstr "Descripció"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Detailed"
|
||||
msgstr "Detallat"
|
||||
msgstr "Detallada"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Details"
|
||||
@@ -624,11 +630,15 @@ msgstr "Documents"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "Don’t see one of your v2 positions? <0>Import it.</0>"
|
||||
msgstr "No veieu cap de les vostres posicions v2? <0> Importeu-lo.</0>"
|
||||
msgstr "No veieu cap de les vostres posicions v2? <0> Importeu-la.</0>"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "Els tokens UNI obtinguts representen accions de vot en la governança Uniswap."
|
||||
msgstr "Les fitxes UNI obtingudes representen accions de vot en la governança Uniswap."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "Introduïu un percentatge"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
@@ -640,7 +650,7 @@ msgstr "Introduïu un percentatge de lliscament vàlid"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission."
|
||||
msgstr "Introduïu una adreça per activar una reclamació UNI. Si l'adreça té alguna UNI que es pugui reclamar, se'ls enviarà en enviar-la."
|
||||
msgstr "Introduïu una adreça per activar una reclamació UNI. Si l'adreça té alguna UNI que es pugui reclamar, se'ls enviarà en l'enviament."
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
@@ -659,7 +669,7 @@ msgstr "Introduïu la ubicació vàlida de la llista"
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "Enter valid token address"
|
||||
msgstr "Introduïu una adreça de testimoni vàlida"
|
||||
msgstr "Introduïu una adreça de fitxa vàlida"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
@@ -681,7 +691,7 @@ msgstr "Error en importar la llista"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
msgstr "Resultats ampliats de llistes de tokens inactius"
|
||||
msgstr "Resultats ampliats de llistes de fitxes inactives"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Expert mode turns off the confirm transaction prompt and allows high slippage trades that often result in bad rates and lost funds."
|
||||
@@ -726,7 +736,7 @@ msgstr "Alt impacte en els preus"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "I understand"
|
||||
msgstr "entenc"
|
||||
msgstr "Entenc"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
@@ -737,7 +747,7 @@ msgstr "Si adquiriu un testimoni d’aquesta llista, és possible que no el pugu
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Import"
|
||||
msgstr "Importació"
|
||||
msgstr "Importar"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "Import List"
|
||||
@@ -753,11 +763,11 @@ msgstr "Importa l'agrupació V2"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "Import at your own risk"
|
||||
msgstr "Importeu al vostre propi risc"
|
||||
msgstr "Importa al vostre propi risc"
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "In range"
|
||||
msgstr "A l'abast"
|
||||
msgstr "Dins del rang"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Increase Liquidity"
|
||||
@@ -765,11 +775,11 @@ msgstr "Augmenta la liquiditat"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Initial prices and pool share"
|
||||
msgstr "Preus inicials i quota de pool"
|
||||
msgstr "Preus inicials i quota de grup"
|
||||
|
||||
#: src/components/WalletModal/PendingView.tsx
|
||||
msgid "Initializing..."
|
||||
msgstr "S'està inicialitzant ..."
|
||||
msgstr "S'està inicialitzant..."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Input is estimated. You will sell at most <0>{0} {1}</0> or the transaction will revert."
|
||||
@@ -793,7 +803,7 @@ msgstr "Liquiditat insuficient per a aquest comerç. Proveu d’habilitar operac
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "{0} saldo insuficient"
|
||||
msgstr "Saldo {0} insuficient"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Interface Settings"
|
||||
@@ -802,11 +812,11 @@ msgstr "Configuració de la interfície"
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
msgid "Invalid pair"
|
||||
msgstr "Parell no vàlid"
|
||||
msgstr "Parella no vàlida"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Invalid pair."
|
||||
msgstr "Parell no vàlid."
|
||||
msgstr "Parella no vàlida."
|
||||
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
msgid "Invalid price input"
|
||||
@@ -840,7 +850,7 @@ msgstr "Recompenses del proveïdor de liquiditat"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity."
|
||||
msgstr "Els proveïdors de liquiditat guanyen una comissió del 0,3% en tots els negocis proporcional a la seva quota de fons. Les comissions s’afegeixen al fons, s’acumulen en temps real i es poden reclamar retirant la vostra liquiditat."
|
||||
msgstr "Els proveïdors de liquiditat guanyen una comissió del 0,3% en tots els negocis proporcional a la seva quota de grup. Les comissions s’afegeixen al fons, s’acumulen en temps real i es poden reclamar retirant la vostra liquiditat."
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Lists"
|
||||
@@ -876,15 +886,15 @@ msgstr "Gestiona"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Manage Liquidity in Rewards Pool"
|
||||
msgstr "Gestioneu la liquiditat a l'agrupació de recompenses"
|
||||
msgstr "Gestioneu la liquiditat al grup de recompenses"
|
||||
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
msgid "Manage Token Lists"
|
||||
msgstr "Gestiona les llistes de tokens"
|
||||
msgstr "Gestiona les llistes de fitxes"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Manage this pool."
|
||||
msgstr "Gestioneu aquest grup."
|
||||
msgstr "Gestioneu aquest fons."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Max"
|
||||
@@ -934,7 +944,7 @@ msgstr "Migrar liquiditat V2"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "Migrate your liquidity tokens from Uniswap V2 to Uniswap V3."
|
||||
msgstr "Migreu els vostres tokens de liquiditat des d'Uniswap V2 a Uniswap V3."
|
||||
msgstr "Migreu les vostres fitxes de liquiditat des d'Uniswap V2 a Uniswap V3."
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Migrating"
|
||||
@@ -980,7 +990,7 @@ msgstr "No s'ha trobat cap liquiditat."
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "No pool found."
|
||||
msgstr "No s'ha trobat cap piscina."
|
||||
msgstr "No s'ha trobat cap grup."
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "No proposals found."
|
||||
@@ -1000,7 +1010,7 @@ msgstr "ACTIVAT"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING."
|
||||
msgstr "ÚS AQUEST MODE NOMÉS SI SABEU EL QUE FEREU."
|
||||
msgstr "ÚTILITZEU AQUEST MODE NOMÉS SI SABEU EL QUE FEREU."
|
||||
|
||||
#: src/components/Toggle/index.tsx
|
||||
msgid "Off"
|
||||
@@ -1045,7 +1055,7 @@ msgstr "Propietari"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Participating pools"
|
||||
msgstr "Piscines participants"
|
||||
msgstr "Grups participants"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Please connect to the appropriate Ethereum network."
|
||||
@@ -1058,24 +1068,24 @@ msgstr "Escriviu la paraula \"{confirmWord}\" per habilitar el mode expert."
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
msgid "Pool"
|
||||
msgstr "Piscina"
|
||||
msgstr "Grup"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Pool Found!"
|
||||
msgstr "Piscina trobada"
|
||||
msgstr "Grup trobat!"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Pool Rate"
|
||||
msgstr "Tarifa de piscina"
|
||||
msgstr "Tarifa de grup"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Pool rate"
|
||||
msgstr "Tarifa de la piscina"
|
||||
msgstr "Tarifa de grup"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Pool tokens in rewards pool:"
|
||||
msgstr "Fitxes de pool a la piscina de recompenses:"
|
||||
msgstr "Fitxes de grup al grup de recompenses:"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
@@ -1090,7 +1100,7 @@ msgstr "Agrupat {0}:"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Pools Overview"
|
||||
msgstr "Visió general de les piscines"
|
||||
msgstr "Visió general dels grups"
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
@@ -1124,7 +1134,7 @@ msgstr "Preu:"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Prices and pool share"
|
||||
msgstr "Preus i quota de piscina"
|
||||
msgstr "Preus i quota de grup"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Proposals"
|
||||
@@ -1182,7 +1192,7 @@ msgstr "Elimina delegat"
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Remove Liquidity"
|
||||
msgstr "Elimineu la liquiditat"
|
||||
msgstr "Elimina la liquiditat"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Remove list"
|
||||
@@ -1191,11 +1201,11 @@ msgstr "Elimina la llista"
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Remove {0} {1} and {2} {3}"
|
||||
msgstr "Traieu {0} {1} i {2} {3}"
|
||||
msgstr "Elimina {0} {1} i {2} {3}"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Remove {0}/{1} V3 liquidity"
|
||||
msgstr "Traieu {0}/{1} liquiditat V3"
|
||||
msgstr "Elimina {0}/{1} liquiditat V3"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Removing {0} {1} and {2} {3}"
|
||||
@@ -1203,7 +1213,7 @@ msgstr "Eliminació de {0} {1} i {2} {3}"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Restricts swaps to direct pairs only."
|
||||
msgstr "Restringeix els permutes només a parells directes."
|
||||
msgstr "Restringeix els intercanvis només a parells directes."
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Return"
|
||||
@@ -1219,7 +1229,7 @@ msgstr "Cerqueu el nom o enganxeu l'adreça"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select Pool"
|
||||
msgstr "Seleccioneu Piscina"
|
||||
msgstr "Seleccioneu grup"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select a pool type based on your preferred liquidity provider fee."
|
||||
@@ -1231,11 +1241,11 @@ msgstr "Seleccioneu un tipus de grup basat en la comissió del vostre proveïdor
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Select a token"
|
||||
msgstr "Seleccioneu un testimoni"
|
||||
msgstr "Seleccioneu una fitxa"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Select a token to find your v2 liquidity."
|
||||
msgstr "Seleccioneu un testimoni per trobar la vostra liquiditat v2."
|
||||
msgstr "Seleccioneu una fitxa per trobar la vostra liquiditat v2."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Select pair"
|
||||
@@ -1247,7 +1257,7 @@ msgstr "Interval seleccionat"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Self"
|
||||
msgstr "Jo"
|
||||
msgstr "Auto"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Self Delegate"
|
||||
@@ -1262,9 +1272,13 @@ msgstr "Estableix l'interval de preus"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "Estableix el preu inicial"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "Quota de grup"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "Quota de Pool:"
|
||||
msgstr "Quota de grup:"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Show Portis"
|
||||
@@ -1314,7 +1328,7 @@ msgstr "Intercanvi"
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Swap Anyway"
|
||||
msgstr "Canviar de totes maneres"
|
||||
msgstr "Intercanviar de totes maneres"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
@@ -1326,11 +1340,11 @@ msgstr "Gràcies per formar part de la comunitat Uniswap <0 />"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 dels tokens que canvieu incorpora un comportament personalitzat en la transferència."
|
||||
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
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
msgstr "El testimoni d’entrada no es pot transferir. Pot haver-hi un problema amb el testimoni d’entrada."
|
||||
msgstr "La fitxa d’entrada no es pot transferir. Pot haver-hi un problema amb la fitxa d’entrada."
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "The market price is outside your specified price range. Single-asset deposit only."
|
||||
@@ -1338,19 +1352,19 @@ msgstr "El preu de mercat està fora de l’interval de preus especificat. Nomé
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "The output token cannot be transferred. There may be an issue with the output token."
|
||||
msgstr "El testimoni de sortida no es pot transferir. Pot haver-hi un problema amb el testimoni de sortida."
|
||||
msgstr "La fitxa de sortida no es pot transferir. Pot haver-hi un problema amb la fitxa de sortida."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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. La tarifa de nota en els tokens de transferència i rebase no és compatible amb Uniswap V3."
|
||||
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."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
msgstr "El preu d'aquesta piscina està fora de l'interval seleccionat. Actualment, la vostra posició no cobra comissions."
|
||||
msgstr "El preu d'aquest grup està fora de l'interval seleccionat. Actualment, la vostra posició no cobra comissions."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is within your selected range. Your position is currently earning fees."
|
||||
msgstr "El preu d'aquesta piscina està dins de l'interval seleccionat. Actualment, la vostra posició està cobrant honoraris."
|
||||
msgstr "El preu d'aquest grup està dins de l'interval seleccionat. Actualment, la vostra posició està cobrant comissions."
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
@@ -1373,8 +1387,8 @@ msgid "This tool will safely migrate your {0} liquidity to V3. The process is co
|
||||
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
|
||||
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. La tarifa de nota en els tokens de transferència i rebase no és compatible amb Uniswap V3."
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1382,7 +1396,7 @@ msgstr "Aquesta transacció no tindrà èxit a causa del moviment de preus o de
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "Tip: Custom tokens are stored locally in your browser"
|
||||
msgstr "Consell: els tokens personalitzats s’emmagatzemen localment al navegador"
|
||||
msgstr "Consell: les fitxes personalitzades s’emmagatzemen localment al navegador"
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1407,7 +1421,7 @@ msgstr "Fitxes de llistes inactives. Importeu fitxes específiques a continuaci
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Piscines superiors"
|
||||
msgstr "Grups principals"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Total Supply"
|
||||
@@ -1460,7 +1474,7 @@ msgstr "Preu UNI:"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party."
|
||||
msgstr "Els tokens UNI representen accions de vot en el govern Uniswap. Podeu votar vosaltres cada proposta o delegar els vostres vots a un tercer."
|
||||
msgstr "Les fitxesUNI representen accions de vot en el govern Uniswap. Podeu votar vosaltres cada proposta o delegar els vostres vots a un tercer."
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "UNI {0}/{1} Burned"
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "Font desconeguda"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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. La tarifa de nota en els tokens de transferència i rebase no és compatible amb Uniswap V3."
|
||||
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."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1548,7 +1562,7 @@ msgstr "Actualitza la delegació"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Update list"
|
||||
msgstr "Llista d'actualitzacions"
|
||||
msgstr "Actualitza la llista"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "User"
|
||||
@@ -1640,7 +1654,7 @@ msgstr "Benvingut a l'equip Unicorn :)"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
msgid "When you claim without withdrawing your liquidity remains in the mining pool."
|
||||
msgstr "Quan reclami sense retirar la seva liquiditat, es manté a la piscina minera."
|
||||
msgstr "Quan reclameu sense retirar la vostra liquiditat, es manté al grup miner."
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "When you withdraw, the contract will automagically claim UNI on your behalf!"
|
||||
@@ -1648,12 +1662,12 @@ msgstr "Quan es retiri, el contracte reclamarà automàticament UNI en nom vostr
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool."
|
||||
msgstr "Quan es retira, es reclama la seva UNI i s’elimina la seva liquiditat del fons miner."
|
||||
msgstr "Quan es retira, es reclama la seva UNI i s’elimina la seva liquiditat del grup miner."
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Withdraw"
|
||||
msgstr "Retirar-se"
|
||||
msgstr "Retirar"
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Withdraw & Claim"
|
||||
@@ -1674,7 +1688,7 @@ msgstr "Va retirar UNI-V2!"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Wrap"
|
||||
msgstr "Embolcall"
|
||||
msgstr "Embolicar"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
@@ -1724,7 +1738,7 @@ msgstr "També cobrarà els honoraris obtinguts per aquesta posició."
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "You will receive"
|
||||
msgstr "Rebràs"
|
||||
msgstr "Rebreu"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Your UNI Breakdown"
|
||||
@@ -1744,7 +1758,7 @@ msgstr "Els vostres dipòsits de liquiditat"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Your liquidity will only earn fees when the market price of the pair is within your range. <0>Need help picking a range?</0>"
|
||||
msgstr "La vostra liquiditat només obtindrà comissions quan el preu de mercat del parell estigui dins del vostre abast. <0> Necessiteu ajuda per escollir un interval?</0>"
|
||||
msgstr "La vostra liquiditat només obtindrà comissions quan el preu de mercat del parell estigui dins del vostre rang. <0> Necessiteu ajuda per escollir un rang?</0>"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
@@ -1754,7 +1768,7 @@ msgstr "La vostra quota compartida:"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Your position"
|
||||
msgstr "La teva posició"
|
||||
msgstr "La vostra posició"
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "Your position has 0 liquidity, and is not earning fees."
|
||||
@@ -1782,7 +1796,7 @@ msgstr "Les vostres posicions"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Your rate"
|
||||
msgstr "La seva tarifa"
|
||||
msgstr "La vostra tarifa"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
@@ -1811,7 +1825,7 @@ msgstr "La vostra transacció es revertirà si el preu canvia desfavorablement e
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Your transactions will appear here..."
|
||||
msgstr "Les vostres transaccions apareixeran aquí ..."
|
||||
msgstr "Les vostres transaccions apareixeran aquí..."
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Your unclaimed UNI"
|
||||
@@ -1862,12 +1876,12 @@ msgstr "{0} <0/> per <1/>"
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "{0} Custom Tokens"
|
||||
msgstr "{0} fitxes personalitzades"
|
||||
msgstr "{0} Fitxes personalitzades"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "{0} Deposited"
|
||||
msgstr "{0} Dipòsit"
|
||||
msgstr "{0} Dipositat"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "{0} ETH"
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "{0} Comissions guanyades:"
|
||||
|
||||
@@ -1909,12 +1924,15 @@ msgstr "{0} fitxes UNI-V2 LP disponibles"
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "{0} Votes"
|
||||
msgstr "{0} vots"
|
||||
msgstr "{0} vVots"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
@@ -1985,5 +2003,5 @@ msgstr "~ $ <0/>"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "← Back to Pools Overview"
|
||||
msgstr "← Torna a la descripció general de les piscines"
|
||||
msgstr "← Torna a la descripció general dels grups"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: French\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -149,6 +149,7 @@ msgstr "Actif"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
@@ -234,6 +235,8 @@ msgstr "Métriques"
|
||||
msgid "Approve"
|
||||
msgstr "Approuver"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "Approuvé"
|
||||
msgid "Approving"
|
||||
msgstr "Approbation"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -283,7 +288,7 @@ msgstr "Solde :"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "Balance: {0} {1}"
|
||||
msgstr "Solde: {0} {1}"
|
||||
msgstr "Solde : {0} {1}"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for exotic pairs."
|
||||
@@ -341,7 +346,7 @@ msgstr "Réclamer vos UNI"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claim UNI Token"
|
||||
msgstr "Claim UNI Token"
|
||||
msgstr "Réclamer les jetons UNI"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
@@ -363,11 +368,11 @@ msgstr "Réclamé"
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Claimed UNI!"
|
||||
msgstr "Réclamé UNI!"
|
||||
msgstr "Réclamé UNI !"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claiming"
|
||||
msgstr "Revendication"
|
||||
msgstr "Réclamation"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Claiming UNI"
|
||||
@@ -406,11 +411,11 @@ msgstr "Collecter"
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Collect as WETH"
|
||||
msgstr "Collectionner en WETH"
|
||||
msgstr "Collecter en WETH"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collect fees"
|
||||
msgstr "Recueillir des frais"
|
||||
msgstr "Collecter des frais"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collected"
|
||||
@@ -422,7 +427,7 @@ msgstr "Collecte en cours"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collecting fees"
|
||||
msgstr "Frais de recouvrement"
|
||||
msgstr "Collecter des frais"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collecting fees will withdraw currently available fees for you."
|
||||
@@ -438,12 +443,12 @@ msgstr "Valider"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Confirm Supply"
|
||||
msgstr "Confirmer la fourniture"
|
||||
msgstr "Valider la fourniture"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
#: src/components/swap/SwapModalFooter.tsx
|
||||
msgid "Confirm Swap"
|
||||
msgstr "Confirmer le swap"
|
||||
msgstr "Valider le swap"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
@@ -451,12 +456,13 @@ msgstr "Confirmer le swap"
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "Confirm this transaction in your wallet"
|
||||
msgstr "Confirmez cette transaction dans votre portefeuille"
|
||||
msgstr "Validez cette transaction dans votre portefeuille"
|
||||
|
||||
#: 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
|
||||
@@ -541,7 +547,7 @@ msgstr "Prix actuel"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Current {0} Price:"
|
||||
msgstr "Prix actuel de {0}:"
|
||||
msgstr "Prix actuel de {0} :"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Delegate Votes"
|
||||
@@ -549,7 +555,7 @@ msgstr "Votes délégués"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Delegated to:"
|
||||
msgstr "Délégué à:"
|
||||
msgstr "Délégué à :"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Delegating votes"
|
||||
@@ -564,7 +570,7 @@ msgstr "Dépôt"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Deposit Amounts"
|
||||
msgstr "Montant du dépôt"
|
||||
msgstr "Montants du dépôt"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Deposit UNI-V2 LP Tokens"
|
||||
@@ -600,7 +606,7 @@ msgstr "Détaillé"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Details"
|
||||
msgstr "Détails du produit"
|
||||
msgstr "Détails"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Disable Multihops"
|
||||
@@ -612,7 +618,7 @@ msgstr "Déconnecter"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Discord"
|
||||
msgstr "Discord"
|
||||
msgstr "Discorde"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Dismiss"
|
||||
@@ -628,19 +634,23 @@ msgstr "Vous ne voyez pas une de vos positions v2 ? <0>Importez-la.</0>"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "Les jetons UNI gagnés représentent les parts de vote dans la gouvernance d'Uniswap."
|
||||
msgstr "Les jetons UNI gagnés représentent les parts de vote dans la gouvernance Uniswap."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "Saisissez un pourcentage"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Entrez un destinataire"
|
||||
msgstr "Saisissez un destinataire"
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Enter a valid slippage percentage"
|
||||
msgstr "Entrez un pourcentage de slippage valide"
|
||||
msgstr "Saisissez un pourcentage de slippage valide"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission."
|
||||
msgstr "Entrez une adresse pour déclencher une réclamation UNI. Si l'adresse a une UNI réclamable, elle leur sera envoyée lors de la soumission."
|
||||
msgstr "Saisissez une adresse pour déclencher une réclamation UNI. Si l'adresse a une UNI réclamable, elle leur sera envoyée lors de la soumission."
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
@@ -651,15 +661,15 @@ msgstr "Entrez une adresse pour déclencher une réclamation UNI. Si l'adresse a
|
||||
#: src/state/stake/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter an amount"
|
||||
msgstr "Entrez un montant"
|
||||
msgstr "Saisissez un montant"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Enter valid list location"
|
||||
msgstr "Entrez un emplacement de liste valide"
|
||||
msgstr "Saisissez un emplacement de liste valide"
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "Enter valid token address"
|
||||
msgstr "Entrez une adresse de jeton valide"
|
||||
msgstr "Saisissez une adresse de jeton valide"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
@@ -706,7 +716,7 @@ msgstr "Pour chaque pool indiqué ci-dessous, cliquez sur migrer pour retirer vo
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "From"
|
||||
msgstr "A partir de"
|
||||
msgstr "À partir de"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "From (at most)"
|
||||
@@ -730,7 +740,7 @@ msgstr "Je comprends"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
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 revendiquer."
|
||||
msgstr "Si vous achetez un jeton de cette liste, il se peut que vous ne puissiez pas le réclamer."
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
@@ -745,7 +755,7 @@ msgstr "Liste d'importation"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "Import Pool"
|
||||
msgstr "Importer un groupe"
|
||||
msgstr "Importer un pool"
|
||||
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
msgid "Import V2 Pool"
|
||||
@@ -781,11 +791,11 @@ msgstr "Installer Metamask"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "Pas assez de liquidités pour ce commerce."
|
||||
msgstr "Pas assez de liquidités pour cette transaction."
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Insufficient liquidity for this trade. Try enabling multi-hop trades."
|
||||
msgstr "Pas assez de liquidités pour cet échange. Essayez d'activer les transactions multi-liens."
|
||||
msgstr "Pas assez de liquidités pour cette transaction. Essayez d'activer les transactions multi-liens."
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
@@ -876,7 +886,7 @@ msgstr "Gérer"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Manage Liquidity in Rewards Pool"
|
||||
msgstr "Gérer la liquidité dans le Groupement de Récompenses"
|
||||
msgstr "Gérer la liquidité dans le pool de récompenses"
|
||||
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
msgid "Manage Token Lists"
|
||||
@@ -901,7 +911,7 @@ msgstr "Prix maximum"
|
||||
|
||||
#: src/components/PositionListItem/index.tsx
|
||||
msgid "Max:"
|
||||
msgstr "Max:"
|
||||
msgstr "Max :"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Maximum sent"
|
||||
@@ -943,15 +953,15 @@ msgstr "Migration en cours"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/RangeSelector/index.tsx
|
||||
msgid "Min Price"
|
||||
msgstr "Prix minimum"
|
||||
msgstr "Prix min"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Min price"
|
||||
msgstr "Prix minimum"
|
||||
msgstr "Prix min"
|
||||
|
||||
#: src/components/PositionListItem/index.tsx
|
||||
msgid "Min:"
|
||||
msgstr "Min:"
|
||||
msgstr "Min :"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Minimum received"
|
||||
@@ -1000,7 +1010,7 @@ msgstr "AU"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING."
|
||||
msgstr "UTILISEZ SEULEMENT CE MODE SI VOUS SAVEZ CE QUI VOUS FAIT."
|
||||
msgstr "UTILISEZ CE MODE UNIQUEMENT SI VOUS SAVEZ CE QUE VOUS FAITES."
|
||||
|
||||
#: src/components/Toggle/index.tsx
|
||||
msgid "Off"
|
||||
@@ -1045,7 +1055,7 @@ msgstr "Propriétaire"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Participating pools"
|
||||
msgstr "Groupes participants"
|
||||
msgstr "Pools participants"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Please connect to the appropriate Ethereum network."
|
||||
@@ -1058,11 +1068,11 @@ msgstr "Veuillez taper le mot \"{confirmWord}\" pour activer le mode expert."
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
msgid "Pool"
|
||||
msgstr "Liquidité"
|
||||
msgstr "Pool"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Pool Found!"
|
||||
msgstr "Pool trouvée !"
|
||||
msgstr "Pool trouvé !"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Pool Rate"
|
||||
@@ -1086,7 +1096,7 @@ msgstr "Jetons de pool dans le pool de récompenses :"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Pooled {0}:"
|
||||
msgstr "Récupéré {0}:"
|
||||
msgstr "Récupéré {0} :"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Pools Overview"
|
||||
@@ -1116,7 +1126,7 @@ msgstr "Prix mis à jour"
|
||||
#: src/components/PositionList/index.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Price range"
|
||||
msgstr "Gamme de prix"
|
||||
msgstr "Fourchette de prix"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Price:"
|
||||
@@ -1124,7 +1134,7 @@ msgstr "Prix :"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Prices and pool share"
|
||||
msgstr "Partage des prix et de la pool"
|
||||
msgstr "Partage des prix et du pool"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Proposals"
|
||||
@@ -1168,7 +1178,7 @@ msgstr "Transactions récentes"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Remove"
|
||||
msgstr "Retirer"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Remove Amount"
|
||||
@@ -1219,7 +1229,7 @@ msgstr "Rechercher un nom ou coller une adresse"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select Pool"
|
||||
msgstr "Sélectionner le Groupement"
|
||||
msgstr "Sélectionner le pool"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select a pool type based on your preferred liquidity provider fee."
|
||||
@@ -1243,7 +1253,7 @@ msgstr "Sélectionner une paire"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Selected Range"
|
||||
msgstr "Plage sélectionnée"
|
||||
msgstr "Fourchette sélectionnée"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Self"
|
||||
@@ -1262,13 +1272,17 @@ msgstr "Fixer une fourchette de prix"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "Définir le prix de départ"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "Part du pool"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "Partage du Groupe:"
|
||||
msgstr "Partage du pool :"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Show Portis"
|
||||
msgstr "Show Portis"
|
||||
msgstr "Afficher Portis"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Simple"
|
||||
@@ -1309,7 +1323,7 @@ msgstr "Approvisionnement {0} {1} et {2} {3}"
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Swap"
|
||||
msgstr "Permuter"
|
||||
msgstr "Échanger"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -1326,7 +1340,7 @@ msgstr "Merci de faire partie de la communauté Uniswap <0/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 le swap. Cela signifie généralement que l'un des jetons que vous échangez intègre un comportement personnalisé lors du transfert."
|
||||
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
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
@@ -1341,16 +1355,16 @@ msgid "The output token cannot be transferred. There may be an issue with the ou
|
||||
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
|
||||
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 jeton de sortie ne peut pas être transféré. Il peut y avoir un problème avec le jeton de sortie. Notez que les frais de transfert et de rebase des jetons sont incompatibles avec Uniswap V3."
|
||||
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 jeton de sortie ne peut pas être transféré. Il peut y avoir un problème avec le jeton de sortie. Remarque : les frais sur les jetons de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
msgstr "Le prix de ce pool se situe en dehors de votre plage sélectionnée. Votre position n'est pas payante pour le moment."
|
||||
msgstr "Le prix de ce pool se situe en dehors de votre fourchette sélectionnée. Votre position ne rapporte actuellement pas de frais."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is within your selected range. Your position is currently earning fees."
|
||||
msgstr "Le prix de ce pool est dans votre plage sélectionnée. Votre position est actuellement en train de gagner des frais."
|
||||
msgstr "Le prix de ce pool est dans votre fourchette sélectionnée. Votre position est actuellement en train de gagner des frais."
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "The ratio of tokens you add will set the price of this pool."
|
||||
@@ -1373,8 +1387,8 @@ msgid "This tool will safely migrate your {0} liquidity to V3. The process is co
|
||||
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
|
||||
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 échouera en raison du mouvement des prix. Essayez d'augmenter votre tolérance au glissement. Notez que les frais de transfert et de rebase des jetons sont incompatibles avec Uniswap V3."
|
||||
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 glissement. Remarque : les frais sur les jetons de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1436,7 +1450,7 @@ msgstr "Transaction envoyée"
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Transaction deadline"
|
||||
msgstr "Date limite de transaction"
|
||||
msgstr "Date limite de la transaction"
|
||||
|
||||
#: src/components/WalletModal/PendingView.tsx
|
||||
msgid "Try Again"
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "Source inconnue"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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. Notez que les frais de transfert et de rebase des jetons sont incompatibles avec Uniswap V3."
|
||||
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 jetons de transfert et de rebase sont incompatibles avec Uniswap V3."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1565,7 +1579,7 @@ msgstr "V3"
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "V3 {0} Price:"
|
||||
msgstr "Prix V3 {0}:"
|
||||
msgstr "Prix V3 {0} :"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "View UNI Analytics"
|
||||
@@ -1587,7 +1601,7 @@ msgstr "Voir la liste"
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "View on Explorer"
|
||||
msgstr "Afficher sur l'explorateur"
|
||||
msgstr "Voir sur Explorer"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
@@ -1632,7 +1646,7 @@ msgstr "En attente de confirmation"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Weekly Rewards"
|
||||
msgstr "Récompenses Hebdomadaires"
|
||||
msgstr "Récompenses hebdomadaires"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Welcome to team Unicorn :)"
|
||||
@@ -1640,7 +1654,7 @@ msgstr "Bienvenue dans l'équipe Unicorn :)"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
msgid "When you claim without withdrawing your liquidity remains in the mining pool."
|
||||
msgstr "Lorsque vous revendiquez sans retirer vos liquidités reste dans la réserve minière."
|
||||
msgstr "Lorsque vous réclamez sans retirer vos liquidités, vous restez dans le pool minier."
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "When you withdraw, the contract will automagically claim UNI on your behalf!"
|
||||
@@ -1719,7 +1733,7 @@ msgstr "Vous ne devriez déposer de liquidité dans Uniswap V3 qu'à un prix que
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "You will also collect fees earned from this position."
|
||||
msgstr "Vous percevrez également des frais provenant de ce poste."
|
||||
msgstr "Vous percevrez également des frais provenant de cette position."
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
@@ -1744,7 +1758,7 @@ msgstr "Vos dépôts de liquidités"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Your liquidity will only earn fees when the market price of the pair is within your range. <0>Need help picking a range?</0>"
|
||||
msgstr "Votre liquidité ne rapportera des frais que lorsque le prix de marché de la paire se situe dans votre fourchette. <0> Besoin d'aide pour choisir une gamme?</0>"
|
||||
msgstr "Votre liquidité ne rapportera des frais que lorsque le prix de marché de la paire se situe dans votre fourchette. <0> Besoin d'aide pour choisir une gamme ?</0>"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
@@ -1763,12 +1777,12 @@ msgstr "Votre position a 0 liquidité, et ne gagne pas de frais."
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
msgid "Your position will be 100% composed of {0} at this price"
|
||||
msgstr "Votre position sera composée à 100% de {0} à ce prix"
|
||||
msgstr "Votre position sera composée à 100 % de {0} à ce prix"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Your position will be 100% {0} at this price."
|
||||
msgstr "Votre position sera à 100% {0} à ce prix."
|
||||
msgstr "Votre position sera à 100 % {0} à ce prix."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "Frais de {0} gagnés :"
|
||||
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} Votes"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
@@ -1934,7 +1952,7 @@ msgstr "{0} jetons"
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "{0} {1} Price:"
|
||||
msgstr "Prix {0} {1}:"
|
||||
msgstr "Prix {0} {1} :"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList.tsx
|
||||
msgid "{0} • Added by user"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -149,6 +149,7 @@ msgstr "פָּעִיל"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "לְהוֹסִיף"
|
||||
|
||||
@@ -234,6 +235,8 @@ msgstr "ניתוח"
|
||||
msgid "Approve"
|
||||
msgstr "לְאַשֵׁר"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "אושר"
|
||||
msgid "Approving"
|
||||
msgstr "מאשר"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -457,6 +462,7 @@ msgstr "אשר את העסקה בארנק שלך"
|
||||
#: 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
|
||||
@@ -630,6 +636,10 @@ msgstr "אינך רואה את אחת מעמדות ה- v2 שלך? <0> ייבא
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "אסימונים של UNI שהושכרו מייצגים מניות הצבעה בממשל Uniswap."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "הזן אחוז"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
msgstr "הזן נמען"
|
||||
@@ -1262,6 +1272,10 @@ msgstr "הגדר טווח מחירים"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "קבע מחיר התחלתי"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "נתח הבריכה"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "נתח הבריכה:"
|
||||
@@ -1341,8 +1355,8 @@ msgid "The output token cannot be transferred. There may be an issue with the ou
|
||||
msgstr "לא ניתן להעביר את אסימון הפלט. ייתכן שיש בעיה באסימן הפלט."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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."
|
||||
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."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
@@ -1373,8 +1387,8 @@ msgid "This tool will safely migrate your {0} liquidity to V3. The process is co
|
||||
msgstr "כלי זה בבטחה יעבור שלך {0} נזילות כדי V3. התהליך חסר אמון לחלוטין בזכות"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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."
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "מקור לא ידוע"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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."
|
||||
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."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "{0} עמלות שנצברו:"
|
||||
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} הצבעות"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Italian\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -37,7 +37,7 @@ msgstr "(Massimo)"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "(claim)"
|
||||
msgstr "(claim)"
|
||||
msgstr "(reclamo)"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "(clear all)"
|
||||
@@ -72,11 +72,11 @@ msgstr "commissione dello 0,05%"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "0.3% fee"
|
||||
msgstr "commissione di 0,3%"
|
||||
msgstr "commissione dello 0,3%"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "1% fee"
|
||||
msgstr "commissione 1%"
|
||||
msgstr "commissione dell'1%"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "25%"
|
||||
@@ -109,7 +109,7 @@ msgstr "<0>Torna a</0> V3"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "<0>Tip:</0> Removing pool tokens converts your position back into underlying tokens at the current rate, proportional to your share of the pool. Accrued fees are included in the amounts you receive."
|
||||
msgstr "<0>Suggerimento:</0> Rimuovere i token pool converte la tua posizione in token sottostanti alla velocità corrente, proporzionale alla tua quota del pool. Le commissioni accumulate sono incluse negli importi che ricevi."
|
||||
msgstr "<0>Suggerimento:</0> La rimozione dei token pool converte la tua posizione in token sottostanti alla velocità corrente, proporzionale alla tua quota del pool. Le commissioni accumulate sono incluse negli importi che ricevi."
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "<0>Tip:</0> Use this tool to find v2 pools that don't automatically appear in the interface."
|
||||
@@ -129,7 +129,7 @@ msgstr "<0>🎉 </0>Benvenuto nel team Unicorn :) <1>🎉</1>"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "A minimum threshold of 1% of the total UNI supply is required to submit proposals"
|
||||
msgstr "Per presentare proposte è necessaria una soglia minima dell’1% dell’offerta totale delle Nazioni Unite"
|
||||
msgstr "Per presentare proposte è necessaria una soglia minima dell'1% dell'offerta totale delle Nazioni Unite"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "About"
|
||||
@@ -149,6 +149,7 @@ msgstr "Attivo"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "Aggiungi"
|
||||
|
||||
@@ -166,7 +167,7 @@ msgstr "Aggiungi Liquidità V2"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Add liquidity."
|
||||
msgstr "Aggiungere liquidità."
|
||||
msgstr "Aggiungi liquidità."
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Add {0} to Metamask <0/>"
|
||||
@@ -187,7 +188,7 @@ msgstr "Aggiungi liquidità {0}/{1} V3"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Added {0}"
|
||||
msgstr "Aggiunto {0}"
|
||||
msgstr "{0} aggiunto"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Address has no available claim"
|
||||
@@ -223,7 +224,7 @@ msgstr "Importo"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 non funziona, potrebbe esserci un'incompatibilità con il token che stai scambiando. Nota la commissione sui token di trasferimento e rebase non sono compatibili con Uniswap V3."
|
||||
msgstr "Si è verificato un errore durante il tentativo di eseguire questo scambio. Potrebbe essere necessario aumentare la tolleranza allo slittamento. Se non funziona, potrebbe esserci un'incompatibilità con il token che stai scambiando. Nota la commissione sui token di trasferimento e di base non sono compatibili con Uniswap V3."
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Analytics"
|
||||
@@ -234,6 +235,8 @@ msgstr "Analisi"
|
||||
msgid "Approve"
|
||||
msgstr "Approva"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "Approvato"
|
||||
msgid "Approving"
|
||||
msgstr "Approvazione"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -259,7 +264,7 @@ msgstr "Sei sicuro?"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI</2>"
|
||||
msgstr "Come membro della comunità Uniswap puoi pretendere che l'UNI sia usato per votare e governance.<0/><1/><2>Leggi di più su UNI</2>"
|
||||
msgstr "Come membro della comunità Uniswap puoi pretendere che l'UNI sia usato per votare e la governance.<0/><1/><2>Leggi di più su UNI</2>"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range."
|
||||
@@ -283,7 +288,7 @@ msgstr "Saldo:"
|
||||
|
||||
#: src/components/CurrencyInputPanel/index.tsx
|
||||
msgid "Balance: {0} {1}"
|
||||
msgstr "Bilanciamento: {0} {1}"
|
||||
msgstr "Saldo: {0} {1}"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Best for exotic pairs."
|
||||
@@ -303,15 +308,15 @@ msgstr "Indirizzo bloccato"
|
||||
|
||||
#: 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."
|
||||
msgstr "Aggiungendo liquidità guadagnerai lo 0,3% di tutte le operazioni su questa coppia proporzionale alla tua quota di pool. Le tasse vengono aggiunte alla piscina, maturano in tempo reale e possono essere rivendicate ritirando la vostra liquidità."
|
||||
msgstr "Aggiungendo liquidità guadagnerai lo 0,3% di tutte le operazioni su questa coppia proporzionale alla tua quota di pool. Le tasse vengono aggiunte al pool, maturano in tempo reale e possono essere rivendicate ritirando la vostra liquidità."
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "By adding this list you are implicitly trusting that the data is correct. Anyone can create a list, including creating fake versions of existing lists and lists that claim to represent projects that do not have one."
|
||||
msgstr "Aggiungendo questa lista ti senti 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."
|
||||
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>Disclaimer del protocollo Uniswap</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>."
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Change"
|
||||
@@ -329,7 +334,7 @@ msgstr "Scopri le nostre guide di passaggio v3 LP e di migrazione."
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Claim"
|
||||
msgstr "Claim"
|
||||
msgstr "Reclama"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/Menu/index.tsx
|
||||
@@ -337,11 +342,11 @@ msgstr "Claim"
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "Claim UNI"
|
||||
msgstr "Claim UNI"
|
||||
msgstr "Reclama UNI"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claim UNI Token"
|
||||
msgstr "Claim UNI Token"
|
||||
msgstr "Reclama UNI Token"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
@@ -363,15 +368,15 @@ msgstr "Richiesto"
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Claimed UNI!"
|
||||
msgstr "Uni Richiestati!"
|
||||
msgstr "UNI Richiesta!"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claiming"
|
||||
msgstr "Rivendicazione"
|
||||
msgstr "Richiesta in corso"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Claiming UNI"
|
||||
msgstr "Rivendicazione UNI"
|
||||
msgstr "Richiesta UNI in corso"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
@@ -457,6 +462,7 @@ msgstr "Conferma questa transazione nel tuo portafoglio"
|
||||
#: 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
|
||||
@@ -477,7 +483,7 @@ 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 piscine"
|
||||
msgstr "Connettiti a un portafoglio per trovare dei pool"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "Connect to a wallet to view your V2 liquidity."
|
||||
@@ -507,7 +513,7 @@ msgstr "Copia Indirizzo"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Create Pool & Supply"
|
||||
msgstr "Crea Piscina E Fornitura"
|
||||
msgstr "Crea Pool e Fornitura"
|
||||
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
#: src/pages/Pool/v2.tsx
|
||||
@@ -516,7 +522,7 @@ msgstr "Crea una coppia"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Create a pool"
|
||||
msgstr "Crea una piscina"
|
||||
msgstr "Crea un pool"
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Create an issue on GitHub"
|
||||
@@ -528,11 +534,11 @@ msgstr "Crea pool e aggiungi liquidità {0}/{1} V3"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Create pool."
|
||||
msgstr "Crea piscina."
|
||||
msgstr "Crea pool."
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Current Price"
|
||||
msgstr "Prezzo attuale"
|
||||
msgstr "Prezzo corrente"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -541,7 +547,7 @@ msgstr "Prezzo corrente"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Current {0} Price:"
|
||||
msgstr "Prezzo {0} attuale:"
|
||||
msgstr "Prezzo {0} corrente:"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Delegate Votes"
|
||||
@@ -553,7 +559,7 @@ msgstr "Delegato a:"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Delegating votes"
|
||||
msgstr "Voti delegati"
|
||||
msgstr "Delegare voti"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
@@ -568,7 +574,7 @@ msgstr "Importi Di Deposito"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Deposit UNI-V2 LP Tokens"
|
||||
msgstr "Deposito UNI-V2 LP Tokens"
|
||||
msgstr "Token del deposito UNI-V2 LP"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Deposit liquidity"
|
||||
@@ -584,11 +590,11 @@ msgstr "Liquidità depositata:"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Deposited {0} UNI-V2"
|
||||
msgstr "Depositato {0} UNI-V2"
|
||||
msgstr "{0} UNI-V2 depositato"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Depositing Liquidity"
|
||||
msgstr "Liquidità Di Depositamento"
|
||||
msgstr "Depositare liquidità"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Description"
|
||||
@@ -608,7 +614,7 @@ msgstr "Disabilita Multihops"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Disconnect"
|
||||
msgstr "Disconnetti"
|
||||
msgstr "Disconnessione"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Discord"
|
||||
@@ -630,6 +636,10 @@ msgstr "Non vedi una delle tue posizioni v2? <0>Importala.</0>"
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "I token UNI guadagnati rappresentano le quote di voto nella governance di Uniswap."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "Inserisci una percentuale"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Inserisci un destinatario"
|
||||
@@ -640,7 +650,7 @@ msgstr "Inserisci una percentuale di slittamento valida"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Enter an address to trigger a UNI claim. If the address has any claimable UNI it will be sent to them on submission."
|
||||
msgstr "Inserisci un indirizzo per attivare un reclamo UNI. Se l'indirizzo ha un qualsiasi UNI rivendicabile, verrà inviato loro al momento dell'invio."
|
||||
msgstr "Inserisci un indirizzo per attivare un reclamo UNI. Se l'indirizzo ha una qualsiasi UNI che può essere richiesta, verrà inviata loro al momento dell'invio."
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
@@ -689,7 +699,7 @@ msgstr "La modalità Esperto disattiva il prompt delle transazioni di conferma e
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore popular pools on Uniswap Analytics."
|
||||
msgstr "Esplora piscine popolari su Uniswap Analytics."
|
||||
msgstr "Esplora i pool popolari su Uniswap Analytics."
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
msgid "Fee Tier"
|
||||
@@ -701,7 +711,7 @@ msgstr "Per"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3."
|
||||
msgstr "Per ogni pool mostrato di seguito, fare clic su migrare per rimuovere la liquidità da Uniswap V2 e depositarlo in Uniswap V3."
|
||||
msgstr "Per ogni pool mostrato di seguito, fai clic su Esegui migrazione per rimuovere la liquidità da Uniswap V2 e depositarlo in Uniswap V3."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -726,7 +736,7 @@ msgstr "Impatto Ad Alto Prezzo"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "I understand"
|
||||
msgstr "Io capisco"
|
||||
msgstr "Capisco"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "If you purchase a token from this list, you may not be able to sell it back."
|
||||
@@ -793,7 +803,7 @@ msgstr "Liquidità insufficiente per questo scambio. Prova ad abilitare le opera
|
||||
#: src/state/mint/v3/hooks.ts
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Insufficient {0} balance"
|
||||
msgstr "Equilibrio {0} insufficiente"
|
||||
msgstr "Saldo {0} insufficiente"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Interface Settings"
|
||||
@@ -840,7 +850,7 @@ msgstr "Ricompense fornitore di liquidità"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "Liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool. Fees are added to the pool, accrue in real time and can be claimed by withdrawing your liquidity."
|
||||
msgstr "I fornitori di liquidità guadagnano una commissione dello 0,3% su tutte le operazioni proporzionale alla loro quota del pool. Le tasse vengono aggiunte alla piscina, maturano in tempo reale e possono essere rivendicate ritirando la vostra liquidità."
|
||||
msgstr "I fornitori di liquidità guadagnano una commissione dello 0,3% su tutte le operazioni proporzionale alla loro quota del pool. Le tasse vengono aggiunte al pool, maturano in tempo reale e possono essere richieste ritirando la vostra liquidità."
|
||||
|
||||
#: src/components/SearchModal/Manage.tsx
|
||||
msgid "Lists"
|
||||
@@ -884,7 +894,7 @@ msgstr "Gestisci Elenchi Token"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Manage this pool."
|
||||
msgstr "Gestisci questa piscina."
|
||||
msgstr "Gestisci questo pool."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Max"
|
||||
@@ -913,7 +923,7 @@ msgstr "Massimo inviato"
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Migrate"
|
||||
msgstr "Migra"
|
||||
msgstr "Esegui migrazione"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Migrate Liquidity"
|
||||
@@ -996,11 +1006,11 @@ msgstr "OFF"
|
||||
|
||||
#: src/components/Toggle/ListToggle.tsx
|
||||
msgid "ON"
|
||||
msgstr "SOPRA"
|
||||
msgstr "ON"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "ONLY USE THIS MODE IF YOU KNOW WHAT YOU ARE DOING."
|
||||
msgstr "USARE SOLO QUESTO MODALITA' SE CONOSCI COSA SONO DOING."
|
||||
msgstr "USA SOLO QUESTO MODALITA' SE SAI QUELLO CHE STAI FACENDO."
|
||||
|
||||
#: src/components/Toggle/index.tsx
|
||||
msgid "Off"
|
||||
@@ -1008,11 +1018,11 @@ msgstr "Off"
|
||||
|
||||
#: src/components/Toggle/index.tsx
|
||||
msgid "On"
|
||||
msgstr "Sopra"
|
||||
msgstr "On"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Once you are happy with the rate click supply to review."
|
||||
msgstr "Una volta che si è soddisfatti del tasso di fornitura di clic per recensire."
|
||||
msgstr "Una volta che sei soddisfatto del tasso di fornitura fai clic per recensire."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting."
|
||||
@@ -1045,7 +1055,7 @@ msgstr "Proprietario"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Participating pools"
|
||||
msgstr "Banche partecipanti"
|
||||
msgstr "Pool partecipanti"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Please connect to the appropriate Ethereum network."
|
||||
@@ -1062,20 +1072,20 @@ msgstr "Pool"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Pool Found!"
|
||||
msgstr "Piscina Trovata!"
|
||||
msgstr "Pool trovato!"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Pool Rate"
|
||||
msgstr "Tasso Di Piscina"
|
||||
msgstr "Tasso del pool"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
msgid "Pool rate"
|
||||
msgstr "Tasso di aggregazione"
|
||||
msgstr "Tasso del pool"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Pool tokens in rewards pool:"
|
||||
msgstr "Pool token nel pool di ricompense:"
|
||||
msgstr "Token del pool nel pool di ricompense:"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
@@ -1086,11 +1096,11 @@ msgstr "Pool token nel pool di ricompense:"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Pooled {0}:"
|
||||
msgstr "Unisci {0}:"
|
||||
msgstr "Raggruppato {0}:"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Pools Overview"
|
||||
msgstr "Panoramica Piscine"
|
||||
msgstr "Panoramica dei pool"
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
@@ -1124,7 +1134,7 @@ msgstr "Prezzo:"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Prices and pool share"
|
||||
msgstr "Prezzi e quota piscina"
|
||||
msgstr "Prezzi e quota del pool"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Proposals"
|
||||
@@ -1136,7 +1146,7 @@ msgstr "Le proposte presentate dai membri della comunità appariranno qui."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Proposer"
|
||||
msgstr "Propositore"
|
||||
msgstr "Proponente"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Rates"
|
||||
@@ -1219,7 +1229,7 @@ msgstr "Cerca nome o incolla indirizzo"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select Pool"
|
||||
msgstr "Seleziona Piscina"
|
||||
msgstr "Seleziona il pool"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select a pool type based on your preferred liquidity provider fee."
|
||||
@@ -1243,11 +1253,11 @@ msgstr "Seleziona coppia"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Selected Range"
|
||||
msgstr "Range Selezionato"
|
||||
msgstr "Intervallo selezionato"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Self"
|
||||
msgstr "Self"
|
||||
msgstr "Se stesso"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Self Delegate"
|
||||
@@ -1260,7 +1270,11 @@ msgstr "Imposta Intervallo Di Prezzo"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Set Starting Price"
|
||||
msgstr "Imposta Prezzo Di Inizio"
|
||||
msgstr "Imposta Prezzo iniziale"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "Quota del pool"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
@@ -1277,11 +1291,11 @@ msgstr "Semplice"
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Slippage tolerance"
|
||||
msgstr "Tolleranza slippage"
|
||||
msgstr "Tolleranza allo slittamento"
|
||||
|
||||
#: 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 "Alcuni asset non sono disponibili attraverso questa interfaccia perché potrebbero non funzionare bene con gli smart contract o non siamo in grado di consentire il trading per motivi legali."
|
||||
msgstr "Alcuni asset non sono disponibili attraverso questa interfaccia perché potrebbero non funzionare bene con i contratti intelligenti o non siamo in grado di consentire il trading per motivi legali."
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -1293,7 +1307,7 @@ msgstr "Passo 1. Ottieni i token di liquidità UNI-V2"
|
||||
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "Submitting Vote"
|
||||
msgstr "Inviare Il Voto"
|
||||
msgstr "Invio del voto"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supply"
|
||||
@@ -1301,7 +1315,7 @@ msgstr "Fornitura"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Supplying {0} {1} and {2} {3}"
|
||||
msgstr "Fornendo {0} {1} e {2} {3}"
|
||||
msgstr "Fornitura di {0} {1} e {2} {3}"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
@@ -1318,7 +1332,7 @@ msgstr "Scambia Comunque"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Scambiare {0} {1} per {2} {3}"
|
||||
msgstr "Scambio di {0} {1} per {2} {3}"
|
||||
|
||||
#: src/components/Popups/ClaimPopup.tsx
|
||||
msgid "Thanks for being part of the Uniswap community <0/>"
|
||||
@@ -1326,7 +1340,7 @@ msgstr "Grazie per far parte della community di Uniswap <0/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 è stato soddisfatto dallo scambio. Questo di solito significa che uno dei token che stai scambiando incorpora un comportamento personalizzato durante il trasferimento."
|
||||
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
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
@@ -1341,8 +1355,8 @@ msgid "The output token cannot be transferred. There may be an issue with the ou
|
||||
msgstr "Il token di output non può essere trasferito. Potrebbe esserci un problema con il token di output."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 sono compatibili con Uniswap V3."
|
||||
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."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
@@ -1354,7 +1368,7 @@ msgstr "Il prezzo di questo pool è entro l'intervallo selezionato. La tua posiz
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
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 questa piscina."
|
||||
msgstr "Il rapporto tra i gettoni che aggiungi imposterà il prezzo di questo pool."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "The transaction could not be sent because the deadline has passed. Please check that your transaction deadline is not too low."
|
||||
@@ -1370,11 +1384,11 @@ msgstr "Questo token non viene visualizzato negli elenchi di token attivi. Assic
|
||||
|
||||
#: 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 migrerà in modo sicuro la tua liquidità {0} a V3. Il processo è completamente affidabile grazie alla"
|
||||
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
|
||||
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 sono compatibili con Uniswap V3."
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1407,7 +1421,7 @@ msgstr "Token da elenchi inattivi. Importa token specifici di seguito o fai clic
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Top pools"
|
||||
msgstr "Piscine top"
|
||||
msgstr "I pool migliori"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "Total Supply"
|
||||
@@ -1423,7 +1437,7 @@ msgstr "Depositi totali"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Transaction Settings"
|
||||
msgstr "Impostazioni Transazione"
|
||||
msgstr "Impostazioni della transazione"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
@@ -1477,7 +1491,7 @@ msgstr "UNI-V2 {0}-{1}"
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Unclaimed UNI"
|
||||
msgstr "UNI Non Reclamata"
|
||||
msgstr "UNI non richiesto"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Unclaimed fees"
|
||||
@@ -1497,7 +1511,7 @@ msgstr "Uniswap V3 è qui!"
|
||||
|
||||
#: src/components/SwitchLocaleLink/index.tsx
|
||||
msgid "Uniswap available in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponibile in: <0>{0}</0>"
|
||||
msgstr "Uniswap disponibile tra: <0>{0}</0>"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Uniswap liquidity mining"
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "Fonte sconosciuta"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 sono compatibili con Uniswap V3."
|
||||
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."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1544,7 +1558,7 @@ msgstr "Unwrap"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Update Delegation"
|
||||
msgstr "Aggiorna Delega"
|
||||
msgstr "Aggiorna la delega"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Update list"
|
||||
@@ -1556,7 +1570,7 @@ msgstr "Utente"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "V2 liquidity"
|
||||
msgstr "V2 liquidità"
|
||||
msgstr "Liquidità V2"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "V3"
|
||||
@@ -1565,7 +1579,7 @@ msgstr "V3"
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "V3 {0} Price:"
|
||||
msgstr "V3 {0} Prezzo:"
|
||||
msgstr "Prezzo {0} V3:"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "View UNI Analytics"
|
||||
@@ -1624,7 +1638,7 @@ msgstr "Votazione terminata {0}"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Voting ends approximately {0}"
|
||||
msgstr "La votazione termina circa {0}"
|
||||
msgstr "La votazione termina approssimativamente {0}"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "Waiting For Confirmation"
|
||||
@@ -1648,7 +1662,7 @@ msgstr "Al momento del recesso, il contratto rivendicherà automaticamente UNI p
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool."
|
||||
msgstr "Quando si ritira, la vostra UNI viene rivendicata e la vostra liquidità viene rimossa dalla piscina mineraria."
|
||||
msgstr "Quando si ritira, la vostra UNI viene rivendicata e la vostra liquidità viene rimossa dal pool di estrazione."
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
@@ -1670,7 +1684,7 @@ msgstr "Ritiro {0} UNI-V2"
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Withdrew UNI-V2!"
|
||||
msgstr "Ritirato UNI-V2!"
|
||||
msgstr "UNI-V2 ritirato!"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Wrap"
|
||||
@@ -1750,7 +1764,7 @@ msgstr "La tua liquidità guadagnerà commissioni solo quando il prezzo di merca
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Your pool share:"
|
||||
msgstr "La tua quota della piscina:"
|
||||
msgstr "La tua quota del pool:"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "Your position"
|
||||
@@ -1758,7 +1772,7 @@ msgstr "La tua posizione"
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "Your position has 0 liquidity, and is not earning fees."
|
||||
msgstr "La tua posizione ha 0 liquidità, e non sta guadagnando commissioni."
|
||||
msgstr "La tua posizione ha 0 liquidità e non sta guadagnando commissioni."
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
@@ -1795,7 +1809,7 @@ msgstr "Il costo della transazione sarà molto più alto in quanto include il ga
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Your transaction may be frontrun"
|
||||
msgstr "La tua transazione potrebbe essere in frontrun"
|
||||
msgstr "La tua transazione potrebbe essere anticipata"
|
||||
|
||||
#: src/components/TransactionSettings/index.tsx
|
||||
msgid "Your transaction may fail"
|
||||
@@ -1815,7 +1829,7 @@ msgstr "Le tue transazioni appariranno qui..."
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Your unclaimed UNI"
|
||||
msgstr "La tua UNI non rivendicata"
|
||||
msgstr "La tua UNI non richiesta"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "confirm"
|
||||
@@ -1827,7 +1841,7 @@ msgstr "per {0}"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "has socks emoji"
|
||||
msgstr "ha le emoji di calzini"
|
||||
msgstr "ha le emoji dei calzini"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "https:// or ipfs:// or ENS name"
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "{0} Commissioni Guadagnate:"
|
||||
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} Voti"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
@@ -1961,7 +1979,7 @@ msgstr "{0}/{1} LP NFT"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "{0}/{1} LP Tokens"
|
||||
msgstr "{0}/{1} LP Tokens"
|
||||
msgstr "{0}/{1} Token LP"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "{SOCKS_AMOUNT} UNI"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Polish\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -149,6 +149,7 @@ msgstr "Aktywne"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
@@ -234,6 +235,8 @@ msgstr "Analityka"
|
||||
msgid "Approve"
|
||||
msgstr "Zatwierdź"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "Zatwierdzone"
|
||||
msgid "Approving"
|
||||
msgstr "Zatwierdzanie"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -457,6 +462,7 @@ msgstr "Potwierdź tę transakcję w swoim portfelu"
|
||||
#: 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
|
||||
@@ -630,6 +636,10 @@ msgstr "Nie widzisz jednej z pozycji v2? <0>Importuj ją.</0>"
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "Zarobione tokeny UNI reprezentują udziały w głosowaniu w zarządzaniu Uniswap."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "Wpisz procent"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Wprowadź odbiorcę"
|
||||
@@ -1262,6 +1272,10 @@ msgstr "Ustaw zakres cenowy"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "Ustaw początkową cenę"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "Udział puli"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "Udział w puli:"
|
||||
@@ -1341,8 +1355,8 @@ msgid "The output token cannot be transferred. There may be an issue with the ou
|
||||
msgstr "Nie można przenieść tokenu wyjściowego. Może wystąpić problem z tokenem wyjściowym."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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ść tokenu wyjściowego. Może wystąpić problem z tokenem wyjściowym. Uwaga opłaty za tokeny transferu i rebase są niezgodne z Uniswap V3."
|
||||
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."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
@@ -1373,8 +1387,8 @@ msgid "This tool will safely migrate your {0} liquidity to V3. The process is co
|
||||
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
|
||||
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 zmian cen. Spróbuj zwiększyć tolerancję na poślizg. Uwaga opłaty za tokeny transferu i rebase są niezgodne z Uniswap V3."
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "Nieznane źródło"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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ć tolerancję na poślizg. Uwaga opłaty za tokeny transferu i rebase są niezgodne z Uniswap V3."
|
||||
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."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "Zarobiono {0} opłat:"
|
||||
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} Głosów"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Russian\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -149,6 +149,7 @@ msgstr "Активный"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "Добавить"
|
||||
|
||||
@@ -207,7 +208,7 @@ msgstr "Разрешить сделки с высоким влиянием на
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Allow the Uniswap Protocol to use your {0}"
|
||||
msgstr "Разрешите протоколу Uniswap использовать ваши {0}"
|
||||
msgstr "Разрешить протоколу Uniswap использовать ваши {0}"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Allowed"
|
||||
@@ -215,7 +216,7 @@ msgstr "Разрешено"
|
||||
|
||||
#: src/components/Header/URLWarning.tsx
|
||||
msgid "Always make sure the URL is<0>app.uniswap.org</0> - bookmark it to be safe."
|
||||
msgstr "Всегда проверяйте, что адрес сайта – <0>app.uniswap.org</0>. Для безопасности добавьте его в закладки."
|
||||
msgstr "Всегда проверяйте, что адрес сайта — <0>app.uniswap.org</0>. Для безопасности добавьте его в закладки."
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "Amount"
|
||||
@@ -223,7 +224,7 @@ msgstr "Сумма"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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."
|
||||
msgstr "Произошла ошибка при попытке произвести этот обмен. Возможно, нужно увеличить допустимое проскальзывание. Если это не сработает, возможно, имеет место несовместимость с токеном, которым вы торгуете. Токены с комиссией за перевод или изменяемой базой несовместимы с Uniswap V3."
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Analytics"
|
||||
@@ -234,6 +235,8 @@ msgstr "Аналитика"
|
||||
msgid "Approve"
|
||||
msgstr "Одобрить"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "Одобрено"
|
||||
msgid "Approving"
|
||||
msgstr "Идёт одобрение"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -311,7 +316,7 @@ 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> и подтверждаете, что прочитали и поняли <1>Отказ от претензий протокола Uniswap </1>."
|
||||
msgstr "Подключая кошелёк, вы соглашаетесь с <0>Условиями предоставления услуг</0> Uniswap Labs и подтверждаете, что прочитали и поняли <1>Отказ от претензий протокола Uniswap </1>."
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Change"
|
||||
@@ -426,7 +431,7 @@ msgstr "Получение комиссий"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Collecting fees will withdraw currently available fees for you."
|
||||
msgstr "Получение комиссий автоматически выведет начисленные комиссии."
|
||||
msgstr "Получение комиссий выведет начисленные для вас комиссии."
|
||||
|
||||
#: src/components/SearchModal/CommonBases.tsx
|
||||
msgid "Common bases"
|
||||
@@ -457,6 +462,7 @@ msgstr "Подтвердите эту транзакцию в своём кош
|
||||
#: 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
|
||||
@@ -600,7 +606,7 @@ msgstr "Подробно"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Details"
|
||||
msgstr "Детали"
|
||||
msgstr "Подробности"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Disable Multihops"
|
||||
@@ -630,6 +636,10 @@ msgstr "Не видите какую-то из ваших позиций в V2?
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "Заработанные токены UNI представляют собой права голоса в управлении Uniswap."
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "Введите процент"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
msgstr "Введите получателя"
|
||||
@@ -669,7 +679,7 @@ msgstr "Ошибка"
|
||||
#: src/components/WalletModal/PendingView.tsx
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Error connecting"
|
||||
msgstr "Ошибка при подключении"
|
||||
msgstr "Ошибка подключения"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Error connecting. Try refreshing the page."
|
||||
@@ -701,7 +711,7 @@ msgstr "За"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "For each pool shown below, click migrate to remove your liquidity from Uniswap V2 and deposit it into Uniswap V3."
|
||||
msgstr "Для каждого указанного ниже пула нажмите \"Переместить\", чтобы удалить ликвидность из Uniswap V2 и внести ее в Uniswap V3."
|
||||
msgstr "Для каждого указанного ниже пула нажмите «Перенести», чтобы удалить ликвидность из Uniswap V2 и внести её в Uniswap V3."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
@@ -773,7 +783,7 @@ msgstr "Инициализация..."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Input is estimated. You will sell at most <0>{0} {1}</0> or the transaction will revert."
|
||||
msgstr "Вход прогнозируется. Вы будете продавать не более <0>{0} {1}</0> или транзакция будет возвращена."
|
||||
msgstr "Сумма к продаже — оценочная. Вы продадите максимум <0>{0} {1}</0>, или транзакция откатится."
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Install Metamask"
|
||||
@@ -1016,7 +1026,7 @@ msgstr "Как только вы будете довольны курсом, н
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Only UNI votes that were self delegated or delegated to another address before block {0} are eligible for voting."
|
||||
msgstr "Право на голосование имеют только голоса UNI, которые делегированы себе или на другой адрес до блока {0}."
|
||||
msgstr "Проголосовать могут только те голоса UNI, которые делегированы себе или на другой адрес до блока {0}."
|
||||
|
||||
#: src/components/Web3ReactManager/index.tsx
|
||||
msgid "Oops! An unknown error occurred. Please refresh the page, or visit from another browser or device."
|
||||
@@ -1033,7 +1043,7 @@ msgstr "Сумма к получению — оценочная. Если цен
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Output is estimated. You will receive at least <0>{0} {1}</0> or the transaction will revert."
|
||||
msgstr "Сумма к получению — оценочная. Вы получите как минимум <0>{0} {1}</0> или транзакция откатится."
|
||||
msgstr "Сумма к получению — оценочная. Вы получите как минимум <0>{0} {1}</0>, или транзакция откатится."
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Output will be sent to <0>{0}</0>"
|
||||
@@ -1231,7 +1241,7 @@ msgstr "Выберите тип пула в зависимости от подх
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Select a token"
|
||||
msgstr "Выберите токен"
|
||||
msgstr "Выбрать токен"
|
||||
|
||||
#: src/pages/PoolFinder/index.tsx
|
||||
msgid "Select a token to find your v2 liquidity."
|
||||
@@ -1262,6 +1272,10 @@ msgstr "Установите диапазон цен"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "Установите начальную цену"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "Доля в пуле"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "Доля в пуле:"
|
||||
@@ -1318,7 +1332,7 @@ msgstr "Всё равно обменять"
|
||||
|
||||
#: src/components/swap/ConfirmSwapModal.tsx
|
||||
msgid "Swapping {0} {1} for {2} {3}"
|
||||
msgstr "Обмен {0} {1} на {2} {3}"
|
||||
msgstr "Идет обмен {0} {1} на {2} {3}"
|
||||
|
||||
#: src/components/Popups/ClaimPopup.tsx
|
||||
msgid "Thanks for being part of the Uniswap community <0/>"
|
||||
@@ -1341,8 +1355,8 @@ msgid "The output token cannot be transferred. There may be an issue with the ou
|
||||
msgstr "Невозможно перевести токен к получению. Возможно, имеется проблема с токеном к получению."
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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."
|
||||
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."
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
@@ -1366,15 +1380,15 @@ 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 "Этот токен не отображается в списке активных токенов. Убедитесь, что это токен, которым вы хотите торговать."
|
||||
msgstr "Этот токен не входит в активные списки токенов. Убедитесь, что это действительно тот токен, которым вы хотите торговать."
|
||||
|
||||
#: 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
|
||||
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."
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "Неизвестный источник"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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."
|
||||
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."
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1839,7 +1853,7 @@ msgstr "минут(-ы)"
|
||||
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
msgid "via {0}"
|
||||
msgstr "от {0}"
|
||||
msgstr "из {0}"
|
||||
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
msgid "via {0} token list"
|
||||
@@ -1876,12 +1890,13 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "Заработано комиссий {0}:"
|
||||
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "{0} Pending"
|
||||
msgstr "{0} в ожидании"
|
||||
msgstr "{0} подтверждается"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} голосов"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2021-06-09 23:07+0000\n"
|
||||
"POT-Creation-Date: 2021-06-14 17:25+0000\n"
|
||||
"Mime-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 4\n"
|
||||
"Project-Id-Version: uniswap-interface\n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"PO-Revision-Date: 2021-06-10 00:10\n"
|
||||
"PO-Revision-Date: 2021-06-14 18:04\n"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -101,7 +101,7 @@ msgstr "<0/> 投票"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "<0>Account analytics and accrued fees</0><1> ↗ </1>"
|
||||
msgstr "<0>賬戶分析和已累積的手續費</0><1>↗</1>"
|
||||
msgstr "<0>帳戶分析和已累積的手續費</0><1>↗</1>"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "<0>Back to </0>V3"
|
||||
@@ -141,14 +141,15 @@ msgstr "接受"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Account"
|
||||
msgstr "賬戶"
|
||||
msgstr "帳戶"
|
||||
|
||||
#: src/components/SearchModal/ImportRow.tsx
|
||||
msgid "Active"
|
||||
msgstr "已激活"
|
||||
msgstr "啟用"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Add"
|
||||
msgstr "新增"
|
||||
|
||||
@@ -203,11 +204,11 @@ msgstr "允許流動池代幣遷移"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Allow high price impact trades and skip the confirm screen. Use at your own risk."
|
||||
msgstr "允許高度影響價格的交易,並跳過確認步驟。須自行承擔使用風險。"
|
||||
msgstr "允許高兌換率影響的交易,並跳過確認步驟。須自行承擔使用風險。"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Allow the Uniswap Protocol to use your {0}"
|
||||
msgstr "允許 Uniswap 調用您的 {0}"
|
||||
msgstr "允許 Uniswap 協議使用您的 {0}"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "Allowed"
|
||||
@@ -223,17 +224,19 @@ msgstr "數額"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 不兼容。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不兼容。"
|
||||
msgstr "嘗試執行此兌換時發生錯誤。您可能需要增加滑點限製。如果還是不行,則可能是您正在交易的代幣與 Uniswap 不相容。註:轉賬時帶扣除費用(fee-on-transfer)的代幣和會自動重新定價(rebase)的代幣都與Uniswap V3不兼容。"
|
||||
|
||||
#: src/components/Menu/index.tsx
|
||||
msgid "Analytics"
|
||||
msgstr "數據分析"
|
||||
msgstr "分析"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Approve"
|
||||
msgstr "批準"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approve {0}"
|
||||
@@ -248,6 +251,8 @@ msgstr "已批準"
|
||||
msgid "Approving"
|
||||
msgstr "批準中"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "Approving {0}"
|
||||
@@ -259,7 +264,7 @@ msgstr "您確定嗎?"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "As a member of the Uniswap community you may claim UNI to be used for voting and governance.<0/><1/><2>Read more about UNI</2>"
|
||||
msgstr "作為 Uniswap 社群的成員,您可以認領 UNI 代幣,用於投票和治理。<0/><1/><2>閱讀更多關於 UNI 代幣的訊息</2>"
|
||||
msgstr "作為 Uniswap 社群的成員,您可以認領 UNI 代幣,用於投票和治理。<0/><1/><2>閱讀更多關於 UNI 的訊息</2>"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "At least {0} {1} and {2} {3} will be refunded to your wallet due to selected price range."
|
||||
@@ -271,7 +276,7 @@ msgstr "自動"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Available to deposit: {0}"
|
||||
msgstr "可調用的數額:{0}"
|
||||
msgstr "可存入的數額:{0}"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
msgid "Back"
|
||||
@@ -337,7 +342,7 @@ msgstr "領取"
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "Claim UNI"
|
||||
msgstr "領取 UNI 代幣"
|
||||
msgstr "領取 UNI"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claim UNI Token"
|
||||
@@ -346,11 +351,11 @@ msgstr "領取 UNI 代幣"
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
msgid "Claim accumulated UNI rewards"
|
||||
msgstr "領取累積的 UNI 代幣獎勵"
|
||||
msgstr "領取累積的 UNI 獎勵"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Claim fees"
|
||||
msgstr "領取已累積的手續費"
|
||||
msgstr "領取手續費"
|
||||
|
||||
#: src/components/Popups/ClaimPopup.tsx
|
||||
msgid "Claim your UNI tokens"
|
||||
@@ -363,7 +368,7 @@ msgstr "已領取"
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Claimed UNI!"
|
||||
msgstr "已領取 UNI 代幣!"
|
||||
msgstr "已領取 UNI!"
|
||||
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
msgid "Claiming"
|
||||
@@ -371,12 +376,12 @@ msgstr "領取中"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Claiming UNI"
|
||||
msgstr "正在領取 UNI 代幣"
|
||||
msgstr "正在領取 UNI"
|
||||
|
||||
#: src/components/earn/ClaimRewardModal.tsx
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Claiming {0} UNI"
|
||||
msgstr "正在領取 {0} UNI 代幣"
|
||||
msgstr "正在領取 {0} UNI"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Clear All"
|
||||
@@ -457,6 +462,7 @@ msgstr "在您的錢包中確認這筆交易"
|
||||
#: 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
|
||||
@@ -507,7 +513,7 @@ msgstr "複製地址"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Create Pool & Supply"
|
||||
msgstr "創建流動池和供應流動資金"
|
||||
msgstr "創建流動池和供應"
|
||||
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
#: src/pages/Pool/v2.tsx
|
||||
@@ -520,7 +526,7 @@ msgstr "創建流動池"
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Create an issue on GitHub"
|
||||
msgstr "在GitHub上創建難題"
|
||||
msgstr "在GitHub上創建問題"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Create pool and add {0}/{1} V3 liquidity"
|
||||
@@ -560,35 +566,35 @@ msgstr "委托投票"
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Deposit"
|
||||
msgstr "充值"
|
||||
msgstr "存款"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
msgid "Deposit Amounts"
|
||||
msgstr "充值數額"
|
||||
msgstr "存款數額"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "Deposit UNI-V2 LP Tokens"
|
||||
msgstr "充入 UNI-V2 流動池代幣"
|
||||
msgstr "存入 UNI-V2 流動池代幣"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Deposit liquidity"
|
||||
msgstr "充入流動資金"
|
||||
msgstr "存入流動資金"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Deposit your Liquidity Provider tokens to receive UNI, the Uniswap protocol governance token."
|
||||
msgstr "充入您的流動池代幣以領取 UNI(Uniswap 的治理代幣)。"
|
||||
msgstr "存入您的流動池代幣以領取 UNI(Uniswap 的治理代幣)。"
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "Deposited liquidity:"
|
||||
msgstr "已充入的流動資金:"
|
||||
msgstr "已存入的流動資金:"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Deposited {0} UNI-V2"
|
||||
msgstr "已充入 {0} UNI-V2 流動池代幣"
|
||||
msgstr "已存入 {0} UNI-V2"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "Depositing Liquidity"
|
||||
msgstr "充入流動資金"
|
||||
msgstr "存入流動資金"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Description"
|
||||
@@ -596,7 +602,7 @@ msgstr "描述"
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "Detailed"
|
||||
msgstr "詳細信息"
|
||||
msgstr "詳細"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
msgid "Details"
|
||||
@@ -624,12 +630,16 @@ msgstr "文檔"
|
||||
|
||||
#: src/pages/MigrateV2/index.tsx
|
||||
msgid "Don’t see one of your v2 positions? <0>Import it.</0>"
|
||||
msgstr "看不到您的一些 v2 流動資金嗎?<0>將它手動導入。</0>"
|
||||
msgstr "看不到您的一些 v2 流動資金嗎?<0>將它手動匯入。</0>"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Earned UNI tokens represent voting shares in Uniswap governance."
|
||||
msgstr "已賺取的 UNI 代幣代表了 Uniswap 治理中的投票份額。"
|
||||
|
||||
#: src/state/burn/v3/hooks.ts
|
||||
msgid "Enter a percent"
|
||||
msgstr "輸入百分比"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Enter a recipient"
|
||||
msgstr "輸入接收者"
|
||||
@@ -659,7 +669,7 @@ msgstr "輸入有效的代幣列表源"
|
||||
|
||||
#: src/components/SearchModal/ManageTokens.tsx
|
||||
msgid "Enter valid token address"
|
||||
msgstr "輸入有效的代幣合約地址"
|
||||
msgstr "輸入有效的代幣地址"
|
||||
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
@@ -677,7 +687,7 @@ msgstr "連接錯誤。請嘗試刷新頁面。"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Error importing list"
|
||||
msgstr "導入列表時出錯"
|
||||
msgstr "匯入列表時出錯"
|
||||
|
||||
#: src/components/SearchModal/CurrencyList.tsx
|
||||
msgid "Expanded results from inactive Token Lists"
|
||||
@@ -689,7 +699,7 @@ msgstr "“專家模式”將解除確認交易的提示,並允許兌換率高
|
||||
|
||||
#: src/pages/Pool/CTACards.tsx
|
||||
msgid "Explore popular pools on Uniswap Analytics."
|
||||
msgstr "在 Uniswap 數據分析中探索較受歡迎的流動池。"
|
||||
msgstr "在 Uniswap 分析中探索較受歡迎的流動池。"
|
||||
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
msgid "Fee Tier"
|
||||
@@ -706,11 +716,11 @@ msgstr "對於下面顯示的每個流動池,單擊“遷移”以從 Uniswap
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "From"
|
||||
msgstr "源自"
|
||||
msgstr "自"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "From (at most)"
|
||||
msgstr "來源 (最多為)"
|
||||
msgstr "自 (最多)"
|
||||
|
||||
#: src/components/ErrorBoundary/index.tsx
|
||||
msgid "Get support on Discord"
|
||||
@@ -718,11 +728,11 @@ msgstr "在 Discord 上尋求技術支持"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Hide closed positions"
|
||||
msgstr "隱藏已關閉的流動資金倉位"
|
||||
msgstr "隱藏已關閉的倉位"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "High Price Impact"
|
||||
msgstr "對兌換率有高度影響"
|
||||
msgstr "高兌換率影響"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "I understand"
|
||||
@@ -737,23 +747,23 @@ msgstr "如果您從這個代幣列表中購買代幣,您可能無法再將其
|
||||
#: src/components/SearchModal/ImportToken.tsx
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "Import"
|
||||
msgstr "導入"
|
||||
msgstr "匯入"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "Import List"
|
||||
msgstr "導入代幣列表"
|
||||
msgstr "匯入列表"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "Import Pool"
|
||||
msgstr "導入流動池"
|
||||
msgstr "匯入流動池"
|
||||
|
||||
#: src/components/NavigationTabs/index.tsx
|
||||
msgid "Import V2 Pool"
|
||||
msgstr "導入 V2 流動池"
|
||||
msgstr "匯入 V2 流動池"
|
||||
|
||||
#: src/components/SearchModal/ImportList.tsx
|
||||
msgid "Import at your own risk"
|
||||
msgstr "自行承擔導入的風險"
|
||||
msgstr "自行承擔匯入的風險"
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "In range"
|
||||
@@ -781,11 +791,11 @@ msgstr "安裝Metamask"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Insufficient liquidity for this trade."
|
||||
msgstr "現有流動量不足以支持此交易。"
|
||||
msgstr "現有流動資金不足以支持此交易。"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Insufficient liquidity for this trade. Try enabling multi-hop trades."
|
||||
msgstr "現有流動量不足以支持此交易。請嘗試啟用“多節點”(多跳式)交易途徑。"
|
||||
msgstr "現有流動資金不足以支持此交易。請嘗試啟用“多節點”(多跳式)交易途徑。"
|
||||
|
||||
#: src/state/mint/hooks.ts
|
||||
#: src/state/mint/hooks.ts
|
||||
@@ -819,11 +829,11 @@ msgstr "選擇的範圍無效。最小兌換率必須低於最大兌換率。"
|
||||
|
||||
#: src/state/swap/hooks.ts
|
||||
msgid "Invalid recipient"
|
||||
msgstr "無效的接收方"
|
||||
msgstr "無效的接收者"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "Learn"
|
||||
msgstr "學習"
|
||||
msgstr "瞭解"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
@@ -863,7 +873,7 @@ msgstr "載入中"
|
||||
|
||||
#: src/components/Header/URLWarning.tsx
|
||||
msgid "Make sure the URL is<0>app.uniswap.org</0>"
|
||||
msgstr "請確認網頁鏈接為<0>app.uniswap.org</0>"
|
||||
msgstr "請確認網頁連結為<0>app.uniswap.org</0>"
|
||||
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
#: src/components/PositionCard/V2.tsx
|
||||
@@ -984,7 +994,7 @@ msgstr "未找到流動池。"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "No proposals found."
|
||||
msgstr "找不到提案。"
|
||||
msgstr "未找到提案。"
|
||||
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
msgid "No results found."
|
||||
@@ -1107,7 +1117,7 @@ msgstr "兌換率影響"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Price Impact Too High"
|
||||
msgstr "太過影響兌換率"
|
||||
msgstr "兌換率影響太高"
|
||||
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
msgid "Price Updated"
|
||||
@@ -1144,19 +1154,19 @@ msgstr "費率"
|
||||
|
||||
#: src/pages/Earn/index.tsx
|
||||
msgid "Read more about UNI"
|
||||
msgstr "了解有關 UNI 代幣的更多信息"
|
||||
msgstr "了解有關 UNI 的更多資訊"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Read more about Uniswap governance"
|
||||
msgstr "閱讀有關 Uniswap 治理的更多信息"
|
||||
msgstr "閱讀有關 Uniswap 治理的更多資訊"
|
||||
|
||||
#: src/pages/Pool/v2.tsx
|
||||
msgid "Read more about providing liquidity"
|
||||
msgstr "閱讀有關提供流動資金的更多信息"
|
||||
msgstr "閱讀有關提供流動資金的更多資訊"
|
||||
|
||||
#: src/components/swap/UnsupportedCurrencyFooter.tsx
|
||||
msgid "Read more about unsupported assets"
|
||||
msgstr "閱讀有關不受支持的代幣的更多信息"
|
||||
msgstr "閱讀有關不受支持的代幣的更多資訊"
|
||||
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
msgid "Recent Transactions"
|
||||
@@ -1211,11 +1221,11 @@ msgstr "返回"
|
||||
|
||||
#: src/components/swap/AdvancedSwapDetails.tsx
|
||||
msgid "Route"
|
||||
msgstr "途徑"
|
||||
msgstr "路線"
|
||||
|
||||
#: src/components/SearchModal/CurrencySearch.tsx
|
||||
msgid "Search name or paste address"
|
||||
msgstr "搜索代幣名稱或粘貼代幣合約地址"
|
||||
msgstr "搜索名稱或粘貼地址"
|
||||
|
||||
#: src/components/FeeSelector/index.tsx
|
||||
msgid "Select Pool"
|
||||
@@ -1247,7 +1257,7 @@ msgstr "選定範圍"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "Self"
|
||||
msgstr "自身"
|
||||
msgstr "自我"
|
||||
|
||||
#: src/components/vote/DelegateModal.tsx
|
||||
msgid "Self Delegate"
|
||||
@@ -1262,6 +1272,10 @@ msgstr "設置兌換率範圍"
|
||||
msgid "Set Starting Price"
|
||||
msgstr "設置起始兌換率"
|
||||
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
msgid "Share of Pool"
|
||||
msgstr "流動池份額"
|
||||
|
||||
#: src/pages/AddLiquidityV2/ConfirmAddModalBottom.tsx
|
||||
msgid "Share of Pool:"
|
||||
msgstr "流動池份額:"
|
||||
@@ -1326,7 +1340,7 @@ msgstr "感謝您加入 Uniswap 社區 <0/>"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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 的要求。這通常意味著您要兌換的代幣之一在代幣轉賬過程中帶有一些自定義代幣合約特性。"
|
||||
msgstr "兌換交易不滿足 Uniswap 不變量 x*y=k 的要求。這通常意味著您要兌換的代幣之一在代幣轉賬過程中帶有一些自定義代幣合約特性。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
msgid "The input token cannot be transferred. There may be an issue with the input token."
|
||||
@@ -1341,8 +1355,8 @@ msgid "The output token cannot be transferred. There may be an issue with the ou
|
||||
msgstr "輸出代幣無法進行轉賬。輸出代幣可能有些問題。"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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不兼容。"
|
||||
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 不兼容。"
|
||||
|
||||
#: src/components/Badge/RangeBadge.tsx
|
||||
msgid "The price of this pool is outside of your selected range. Your position is not currently earning fees."
|
||||
@@ -1370,11 +1384,11 @@ msgstr "此代幣未出現在激活的代幣列表中。請確保這是您想要
|
||||
|
||||
#: 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。該過程完全不依賴任何信任需求"
|
||||
msgstr "該工具將安全地將您的 {0} 流動資金遷移到 V3。該過程完全去信任,得益於"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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不兼容。"
|
||||
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
|
||||
msgid "This transaction will not succeed either due to price movement or fee on transfer. Try increasing your slippage tolerance."
|
||||
@@ -1387,11 +1401,11 @@ msgstr "提示:自定義代幣信息會本地存儲在您的瀏覽器中"
|
||||
#: src/components/swap/SwapModalHeader.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "To"
|
||||
msgstr "兌換到"
|
||||
msgstr "至"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "To (at least)"
|
||||
msgstr "兌換到(至少數額)"
|
||||
msgstr "到(至少)"
|
||||
|
||||
#: src/components/Settings/index.tsx
|
||||
msgid "Toggle Expert Mode"
|
||||
@@ -1452,11 +1466,11 @@ msgstr "UNI 代幣已到賬"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "UNI in circulation:"
|
||||
msgstr "流通中的 UNI 代幣:"
|
||||
msgstr "流通中的 UNI:"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "UNI price:"
|
||||
msgstr "UNI 代幣兌換率:"
|
||||
msgstr "UNI 兌換率:"
|
||||
|
||||
#: src/pages/Vote/index.tsx
|
||||
msgid "UNI tokens represent voting shares in Uniswap governance. You can vote on each proposal yourself or delegate your votes to a third party."
|
||||
@@ -1464,7 +1478,7 @@ msgstr "UNI 代幣代表了 Uniswap 治理中的投票份額。您可以自行
|
||||
|
||||
#: src/pages/RemoveLiquidity/index.tsx
|
||||
msgid "UNI {0}/{1} Burned"
|
||||
msgstr "UNI {0}/{1} 被摧毀"
|
||||
msgstr "UNI {0}/{1} 已銷毀"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "UNI-V2 LP tokens are required. Once you've added liquidity to the {0}-{1} pool you can stake your liquidity tokens on this page."
|
||||
@@ -1512,8 +1526,8 @@ msgid "Unknown Source"
|
||||
msgstr "未知來源"
|
||||
|
||||
#: src/hooks/useSwapCallback.ts
|
||||
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不兼容。"
|
||||
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 不兼容。"
|
||||
|
||||
#: src/pages/Vote/VotePage.tsx
|
||||
#: src/pages/Vote/index.tsx
|
||||
@@ -1532,11 +1546,11 @@ msgstr "解鎖投票"
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Unsupported Asset"
|
||||
msgstr "不支持的代幣"
|
||||
msgstr "不支持的資產"
|
||||
|
||||
#: src/components/swap/UnsupportedCurrencyFooter.tsx
|
||||
msgid "Unsupported Assets"
|
||||
msgstr "不支持的代幣"
|
||||
msgstr "不支持的資產"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Unwrap"
|
||||
@@ -1569,7 +1583,7 @@ msgstr "V3 {0} 兌換率:"
|
||||
|
||||
#: src/components/Header/UniBalanceContent.tsx
|
||||
msgid "View UNI Analytics"
|
||||
msgstr "查看 UNI 代幣分析"
|
||||
msgstr "查看 UNI 分析"
|
||||
|
||||
#: src/pages/Pool/index.tsx
|
||||
msgid "View V2 Liquidity"
|
||||
@@ -1577,7 +1591,7 @@ msgstr "查看 V2 流動資金"
|
||||
|
||||
#: src/components/PositionCard/index.tsx
|
||||
msgid "View accrued fees and analytics<0>↗</0>"
|
||||
msgstr "查看已累積手續費和數據分析<0>↗</0>"
|
||||
msgstr "查看已累積手續費和分析<0>↗</0>"
|
||||
|
||||
#: src/components/SearchModal/ManageLists.tsx
|
||||
msgid "View list"
|
||||
@@ -1587,14 +1601,14 @@ msgstr "查看代幣列表"
|
||||
#: src/components/AccountDetails/index.tsx
|
||||
#: src/components/TransactionConfirmationModal/index.tsx
|
||||
msgid "View on Explorer"
|
||||
msgstr "在以太坊資源瀏覽器上查看"
|
||||
msgstr "在資源瀏覽器上查看"
|
||||
|
||||
#: src/components/ModalViews/index.tsx
|
||||
#: src/components/claim/AddressClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/components/vote/VoteModal.tsx
|
||||
msgid "View transaction on Explorer"
|
||||
msgstr "在以太坊資源瀏覽器上查看"
|
||||
msgstr "在資源瀏覽器上查看"
|
||||
|
||||
#: src/components/Header/index.tsx
|
||||
msgid "Vote"
|
||||
@@ -1644,11 +1658,11 @@ msgstr "當您領取獎勵但沒贖回流動資金時,流動資金仍然留在
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "When you withdraw, the contract will automagically claim UNI on your behalf!"
|
||||
msgstr "當您贖回流動資金時,智能合約將自動為您領取 UNI 代幣!"
|
||||
msgstr "當您贖回流動資金時,智能合約將自動為您領取 UNI!"
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
msgid "When you withdraw, your UNI is claimed and your liquidity is removed from the mining pool."
|
||||
msgstr "當您贖回流動資金時,您的 UNI 代幣將被領取,流動資金也將從礦池中移除。"
|
||||
msgstr "當您贖回流動資金時,您的 UNI 將被領取,流動資金也將從礦池中移除。"
|
||||
|
||||
#: src/components/earn/UnstakingModal.tsx
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
@@ -1674,12 +1688,12 @@ msgstr "已贖回 UNI-V2!"
|
||||
|
||||
#: src/pages/Swap/index.tsx
|
||||
msgid "Wrap"
|
||||
msgstr "換行"
|
||||
msgstr "包裹"
|
||||
|
||||
#: src/components/WalletModal/index.tsx
|
||||
#: src/components/Web3Status/index.tsx
|
||||
msgid "Wrong Network"
|
||||
msgstr "錯誤的網絡"
|
||||
msgstr "錯誤的網路"
|
||||
|
||||
#: src/pages/AddLiquidityV2/index.tsx
|
||||
msgid "You are creating a pool"
|
||||
@@ -1763,12 +1777,12 @@ msgstr "您的倉位沒有任何流動資金,沒在賺取手續費。"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
msgid "Your position will be 100% composed of {0} at this price"
|
||||
msgstr "在達到此兌換率時,您的倉位流動資金將 100% 由 {0} 代幣所組成。"
|
||||
msgstr "在達到此兌換率時,您的倉位流動資金將 100% 由 {0} 所組成。"
|
||||
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "Your position will be 100% {0} at this price."
|
||||
msgstr "在達到此兌換率時,您的倉位流動資金將 100% 由 {0} 代幣所組成。"
|
||||
msgstr "在達到此兌換率時,您的倉位流動資金將为100% {0}。"
|
||||
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
@@ -1876,6 +1890,7 @@ msgstr "{0} ETH"
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{0} Fees Earned:"
|
||||
msgstr "{0} 已賺取手續費:"
|
||||
|
||||
@@ -1889,7 +1904,7 @@ msgstr "{0} 待處理"
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "{0} UNI"
|
||||
msgstr "{0} UNI 代幣"
|
||||
msgstr "{0} UNI"
|
||||
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
#: src/components/earn/PoolCard.tsx
|
||||
@@ -1897,11 +1912,11 @@ msgstr "{0} UNI 代幣"
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "{0} UNI / week"
|
||||
msgstr "{0} UNI 代幣 / 每週"
|
||||
msgstr "{0} UNI /週"
|
||||
|
||||
#: src/components/earn/StakingModal.tsx
|
||||
msgid "{0} UNI-V2"
|
||||
msgstr "{0} UNI-V2 流動池代幣"
|
||||
msgstr "{0} UNI-V2"
|
||||
|
||||
#: src/pages/Earn/Manage.tsx
|
||||
msgid "{0} UNI-V2 LP tokens available"
|
||||
@@ -1915,6 +1930,9 @@ msgstr "{0} 票"
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/components/PositionPreview/index.tsx
|
||||
#: src/pages/AddLiquidity/index.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/AddLiquidityV2/PoolPriceBar.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
#: src/pages/Pool/PositionPage.tsx
|
||||
msgid "{0} per {1}"
|
||||
@@ -1957,7 +1975,7 @@ msgstr "{0}-{1} 流動資金采礦"
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "{0}/{1} LP NFT"
|
||||
msgstr "{0}/{1} 流動池 NFT 代幣"
|
||||
msgstr "{0}/{1} 流動池 NFT "
|
||||
|
||||
#: src/pages/MigrateV2/MigrateV2Pair.tsx
|
||||
msgid "{0}/{1} LP Tokens"
|
||||
@@ -1969,7 +1987,7 @@ msgstr "{SOCKS_AMOUNT} UNI 代幣"
|
||||
|
||||
#: src/components/claim/ClaimModal.tsx
|
||||
msgid "{USER_AMOUNT} UNI"
|
||||
msgstr "{USER_AMOUNT} UNI 代幣"
|
||||
msgstr "{USER_AMOUNT} UNI"
|
||||
|
||||
#: src/pages/RemoveLiquidity/V3.tsx
|
||||
msgid "{percentForSlider}%"
|
||||
|
||||
@@ -720,9 +720,11 @@ export default function AddLiquidity({
|
||||
width={showApprovalB ? '48%' : '100%'}
|
||||
>
|
||||
{approvalA === ApprovalState.PENDING ? (
|
||||
<Dots>Approving {currencies[Field.CURRENCY_A]?.symbol}</Dots>
|
||||
<Dots>
|
||||
<Trans>Approving {currencies[Field.CURRENCY_A]?.symbol}</Trans>
|
||||
</Dots>
|
||||
) : (
|
||||
'Approve ' + currencies[Field.CURRENCY_A]?.symbol
|
||||
<Trans>Approve {currencies[Field.CURRENCY_A]?.symbol}</Trans>
|
||||
)}
|
||||
</ButtonPrimary>
|
||||
)}
|
||||
@@ -735,9 +737,11 @@ export default function AddLiquidity({
|
||||
width={showApprovalA ? '48%' : '100%'}
|
||||
>
|
||||
{approvalB === ApprovalState.PENDING ? (
|
||||
<Dots>Approving {currencies[Field.CURRENCY_B]?.symbol}</Dots>
|
||||
<Dots>
|
||||
<Trans>Approving {currencies[Field.CURRENCY_B]?.symbol}</Trans>
|
||||
</Dots>
|
||||
) : (
|
||||
'Approve ' + currencies[Field.CURRENCY_B]?.symbol
|
||||
<Trans>Approve {currencies[Field.CURRENCY_B]?.symbol}</Trans>
|
||||
)}
|
||||
</ButtonPrimary>
|
||||
)}
|
||||
@@ -754,7 +758,7 @@ export default function AddLiquidity({
|
||||
}
|
||||
error={!isValid && !!parsedAmounts[Field.CURRENCY_A] && !!parsedAmounts[Field.CURRENCY_B]}
|
||||
>
|
||||
<Text fontWeight={500}>{errorMessage ? errorMessage : 'Add'}</Text>
|
||||
<Text fontWeight={500}>{errorMessage ? errorMessage : <Trans>Add</Trans>}</Text>
|
||||
</ButtonError>
|
||||
</AutoColumn>
|
||||
)}
|
||||
|
||||
@@ -7,6 +7,7 @@ import { AutoRow } from '../../components/Row'
|
||||
import { ONE_BIPS } from '../../constants/misc'
|
||||
import { Field } from '../../state/mint/actions'
|
||||
import { TYPE } from '../../theme'
|
||||
import { Trans } from '@lingui/macro'
|
||||
|
||||
export function PoolPriceBar({
|
||||
currencies,
|
||||
@@ -26,13 +27,17 @@ export function PoolPriceBar({
|
||||
<AutoColumn justify="center">
|
||||
<TYPE.black>{price?.toSignificant(6) ?? '-'}</TYPE.black>
|
||||
<Text fontWeight={500} fontSize={14} color={theme.text2} pt={1}>
|
||||
{currencies[Field.CURRENCY_B]?.symbol} per {currencies[Field.CURRENCY_A]?.symbol}
|
||||
<Trans>
|
||||
{currencies[Field.CURRENCY_B]?.symbol} per {currencies[Field.CURRENCY_A]?.symbol}
|
||||
</Trans>
|
||||
</Text>
|
||||
</AutoColumn>
|
||||
<AutoColumn justify="center">
|
||||
<TYPE.black>{price?.invert()?.toSignificant(6) ?? '-'}</TYPE.black>
|
||||
<Text fontWeight={500} fontSize={14} color={theme.text2} pt={1}>
|
||||
{currencies[Field.CURRENCY_A]?.symbol} per {currencies[Field.CURRENCY_B]?.symbol}
|
||||
<Trans>
|
||||
{currencies[Field.CURRENCY_A]?.symbol} per {currencies[Field.CURRENCY_B]?.symbol}
|
||||
</Trans>
|
||||
</Text>
|
||||
</AutoColumn>
|
||||
<AutoColumn justify="center">
|
||||
@@ -43,7 +48,7 @@ export function PoolPriceBar({
|
||||
%
|
||||
</TYPE.black>
|
||||
<Text fontWeight={500} fontSize={14} color={theme.text2} pt={1}>
|
||||
Share of Pool
|
||||
<Trans>Share of Pool</Trans>
|
||||
</Text>
|
||||
</AutoColumn>
|
||||
</AutoRow>
|
||||
|
||||
@@ -781,7 +781,12 @@ export function PositionPage({
|
||||
<Trans>Min price</Trans>
|
||||
</ExtentsText>
|
||||
<TYPE.mediumHeader textAlign="center">{priceLower?.toSignificant(5)}</TYPE.mediumHeader>
|
||||
<ExtentsText> {currencyQuote?.symbol + ' per ' + currencyBase?.symbol}</ExtentsText>
|
||||
<ExtentsText>
|
||||
{' '}
|
||||
<Trans>
|
||||
{currencyQuote?.symbol} per {currencyBase?.symbol}
|
||||
</Trans>
|
||||
</ExtentsText>
|
||||
|
||||
{inRange && (
|
||||
<TYPE.small color={theme.text3}>
|
||||
|
||||
@@ -361,7 +361,7 @@ function Remove({ tokenId }: { tokenId: BigNumber }) {
|
||||
</RowBetween>
|
||||
<RowBetween>
|
||||
<Text fontSize={16} fontWeight={500}>
|
||||
{feeValue1?.currency?.symbol} Fees Earned:
|
||||
<Trans>{feeValue1?.currency?.symbol} Fees Earned:</Trans>
|
||||
</Text>
|
||||
<RowFixed>
|
||||
<Text fontSize={16} fontWeight={500} marginLeft={'6px'}>
|
||||
|
||||
@@ -120,7 +120,8 @@ export default function Vote() {
|
||||
const toggleDelegateModal = useToggleDelegateModal()
|
||||
|
||||
// get data to list all proposals
|
||||
const allProposals: ProposalData[] = useAllProposalData()
|
||||
// TODO don't hardcode for first gov alpha
|
||||
const allProposals: ProposalData[] = useAllProposalData()[0]
|
||||
|
||||
// user data
|
||||
const availableVotes: CurrencyAmount<Token> | undefined = useUserVotes()
|
||||
@@ -248,7 +249,7 @@ export default function Vote() {
|
||||
</TYPE.subHeader>
|
||||
</EmptyProposals>
|
||||
)}
|
||||
{allProposals?.map((p: ProposalData, i) => {
|
||||
{allProposals?.reverse()?.map((p: ProposalData, i) => {
|
||||
return (
|
||||
<Proposal as={Link} to={'/vote/' + p.id} key={i}>
|
||||
<ProposalNumber>{p.id}</ProposalNumber>
|
||||
|
||||
@@ -11,6 +11,7 @@ import { AppState } from '../../index'
|
||||
import { selectPercent } from './actions'
|
||||
import { unwrappedToken } from 'utils/unwrappedToken'
|
||||
import { useAppDispatch, useAppSelector } from 'state/hooks'
|
||||
import { t } from '@lingui/macro'
|
||||
|
||||
export function useBurnV3State(): AppState['burnV3'] {
|
||||
return useAppSelector((state) => state.burnV3)
|
||||
@@ -75,10 +76,10 @@ export function useDerivedV3BurnInfo(
|
||||
|
||||
let error: string | undefined
|
||||
if (!account) {
|
||||
error = 'Connect Wallet'
|
||||
error = t`Connect Wallet`
|
||||
}
|
||||
if (percent === 0) {
|
||||
error = error ?? 'Enter a percent'
|
||||
error = error ?? t`Enter a percent`
|
||||
}
|
||||
return {
|
||||
position: positionSDK,
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import { CurrencyAmount, Token } from '@uniswap/sdk-core'
|
||||
import { isAddress } from 'ethers/lib/utils'
|
||||
import { PROPOSAL_DESCRIPTION_TEXT } from '../../constants/proposals'
|
||||
import { UNI } from '../../constants/tokens'
|
||||
import { useGovernanceContract, useUniContract } from '../../hooks/useContract'
|
||||
import { useGovernanceContracts, useUniContract } from '../../hooks/useContract'
|
||||
import { calculateGasMargin } from '../../utils/calculateGasMargin'
|
||||
import { useSingleCallResult, useSingleContractMultipleData } from '../multicall/hooks'
|
||||
import { useActiveWeb3React } from '../../hooks/web3'
|
||||
@@ -11,6 +10,7 @@ import { TransactionResponse } from '@ethersproject/providers'
|
||||
import { useTransactionAdder } from '../transactions/hooks'
|
||||
import { useState, useEffect, useCallback, useMemo } from 'react'
|
||||
import { abi as GOV_ABI } from '@uniswap/governance/build/GovernorAlpha.json'
|
||||
import { UNISWAP_GRANTS_PROPOSAL_DESCRIPTION } from 'constants/proposals/uniswap_grants_proposal_description'
|
||||
|
||||
interface ProposalDetail {
|
||||
target: string
|
||||
@@ -43,10 +43,9 @@ export enum ProposalState {
|
||||
Executed,
|
||||
}
|
||||
|
||||
// get count of all proposals made
|
||||
export function useProposalCount(): number | undefined {
|
||||
const gov = useGovernanceContract()
|
||||
const res = useSingleCallResult(gov, 'proposalCount')
|
||||
// get count of all proposals made on the given governor alpha
|
||||
function useProposalCount(govContract: ethers.Contract | null): number | undefined {
|
||||
const res = useSingleCallResult(govContract, 'proposalCount')
|
||||
if (res.result && !res.loading) {
|
||||
return parseInt(res.result[0])
|
||||
}
|
||||
@@ -58,15 +57,15 @@ export function useProposalCount(): number | undefined {
|
||||
* new proposal event.
|
||||
*/
|
||||
const eventParser = new ethers.utils.Interface(GOV_ABI)
|
||||
export function useDataFromEventLogs() {
|
||||
function useDataFromEventLogs(govContract: ethers.Contract | null) {
|
||||
const { library, chainId } = useActiveWeb3React()
|
||||
const [formattedEvents, setFormattedEvents] =
|
||||
useState<{ description: string; details: { target: string; functionSig: string; callData: string }[] }[]>()
|
||||
const govContract = useGovernanceContract()
|
||||
|
||||
// create filter for these specific events
|
||||
const filter = useMemo(
|
||||
() => (govContract ? { ...govContract.filters.ProposalCreated(), fromBlock: 0, toBlock: 'latest' } : undefined),
|
||||
() =>
|
||||
govContract ? { ...govContract.filters.ProposalCreated(), fromBlock: 10861678, toBlock: 'latest' } : undefined,
|
||||
[govContract]
|
||||
)
|
||||
|
||||
@@ -79,28 +78,25 @@ export function useDataFromEventLogs() {
|
||||
.getLogs(filter)
|
||||
.then((proposalEvents) => {
|
||||
if (stale) return
|
||||
// reverse events to get them from newest to odlest
|
||||
const formattedEventData = proposalEvents
|
||||
?.map((event) => {
|
||||
const eventParsed = eventParser.parseLog(event).args
|
||||
return {
|
||||
description: eventParsed.description,
|
||||
details: eventParsed.targets.map((target: string, i: number) => {
|
||||
const signature = eventParsed.signatures[i]
|
||||
const [name, types] = signature.substr(0, signature.length - 1).split('(')
|
||||
const formattedEventData = proposalEvents?.map((event) => {
|
||||
const eventParsed = eventParser.parseLog(event).args
|
||||
return {
|
||||
description: eventParsed.description,
|
||||
details: eventParsed.targets.map((target: string, i: number) => {
|
||||
const signature = eventParsed.signatures[i]
|
||||
const [name, types] = signature.substr(0, signature.length - 1).split('(')
|
||||
|
||||
const calldata = eventParsed.calldatas[i]
|
||||
const decoded = utils.defaultAbiCoder.decode(types.split(','), calldata)
|
||||
const calldata = eventParsed.calldatas[i]
|
||||
const decoded = utils.defaultAbiCoder.decode(types.split(','), calldata)
|
||||
|
||||
return {
|
||||
target,
|
||||
functionSig: name,
|
||||
callData: decoded.join(', '),
|
||||
}
|
||||
}),
|
||||
}
|
||||
})
|
||||
.reverse()
|
||||
return {
|
||||
target,
|
||||
functionSig: name,
|
||||
callData: decoded.join(', '),
|
||||
}
|
||||
}),
|
||||
}
|
||||
})
|
||||
setFormattedEvents(formattedEventData)
|
||||
})
|
||||
.catch((error) => {
|
||||
@@ -118,55 +114,93 @@ export function useDataFromEventLogs() {
|
||||
}
|
||||
|
||||
// get data for all past and active proposals
|
||||
export function useAllProposalData() {
|
||||
const proposalCount = useProposalCount()
|
||||
const govContract = useGovernanceContract()
|
||||
export function useAllProposalData(): ProposalData[][] {
|
||||
// fetch all governance contracts
|
||||
const govContracts = useGovernanceContracts()
|
||||
|
||||
const proposalIndexes = []
|
||||
for (let i = 1; i <= (proposalCount ?? 0); i++) {
|
||||
proposalIndexes.push([i])
|
||||
}
|
||||
// fetch the proposal count on the active contract
|
||||
const proposalCount = useProposalCount(govContracts[govContracts.length - 1])
|
||||
|
||||
// get metadata from past events
|
||||
const formattedEvents = useDataFromEventLogs()
|
||||
// get all proposals for all contracts
|
||||
const proposalsIndicesByGovContract = [
|
||||
[1, 2, 3, 4], // hardcoded for first governor alpha
|
||||
typeof proposalCount === 'number' ? new Array(proposalCount).fill(0).map((_, i) => i + 1) : [], // dynamic for current governor alpha
|
||||
]
|
||||
|
||||
// get all proposal entities
|
||||
const allProposals = useSingleContractMultipleData(govContract, 'proposals', proposalIndexes)
|
||||
const allProposalsByGovContract = [
|
||||
useSingleContractMultipleData(
|
||||
govContracts[0],
|
||||
'proposals',
|
||||
proposalsIndicesByGovContract[0].map((i) => [i])
|
||||
),
|
||||
useSingleContractMultipleData(
|
||||
govContracts[1],
|
||||
'proposals',
|
||||
proposalsIndicesByGovContract[1].map((i) => [i])
|
||||
),
|
||||
]
|
||||
|
||||
// get all proposal states
|
||||
const allProposalStates = useSingleContractMultipleData(govContract, 'state', proposalIndexes)
|
||||
const allProposalStatesByGovContract = [
|
||||
useSingleContractMultipleData(
|
||||
govContracts[0],
|
||||
'state',
|
||||
proposalsIndicesByGovContract[0].map((i) => [i])
|
||||
),
|
||||
useSingleContractMultipleData(
|
||||
govContracts[1],
|
||||
'state',
|
||||
proposalsIndicesByGovContract[1].map((i) => [i])
|
||||
),
|
||||
]
|
||||
|
||||
if (formattedEvents && allProposals && allProposalStates) {
|
||||
allProposals.reverse()
|
||||
allProposalStates.reverse()
|
||||
// get metadata from past events
|
||||
const formattedEventsByGovContract = [useDataFromEventLogs(govContracts[0]), useDataFromEventLogs(govContracts[1])]
|
||||
|
||||
return allProposals
|
||||
.filter((p, i) => {
|
||||
return Boolean(p.result) && Boolean(allProposalStates[i]?.result) && Boolean(formattedEvents[i])
|
||||
})
|
||||
.map((p, i) => {
|
||||
const description = PROPOSAL_DESCRIPTION_TEXT[allProposals.length - i - 1] || formattedEvents[i].description
|
||||
const formattedProposal: ProposalData = {
|
||||
id: allProposals[i]?.result?.id.toString(),
|
||||
title: description?.split(/# |\n/g)[1] || 'Untitled',
|
||||
description: description || 'No description.',
|
||||
proposer: allProposals[i]?.result?.proposer,
|
||||
status: allProposalStates[i]?.result?.[0] ?? ProposalState.Undetermined,
|
||||
forCount: parseFloat(ethers.utils.formatUnits(allProposals[i]?.result?.forVotes.toString(), 18)),
|
||||
againstCount: parseFloat(ethers.utils.formatUnits(allProposals[i]?.result?.againstVotes.toString(), 18)),
|
||||
startBlock: parseInt(allProposals[i]?.result?.startBlock?.toString()),
|
||||
endBlock: parseInt(allProposals[i]?.result?.endBlock?.toString()),
|
||||
details: formattedEvents[i].details,
|
||||
}
|
||||
return formattedProposal
|
||||
})
|
||||
} else {
|
||||
return []
|
||||
const returnData: ProposalData[][] = []
|
||||
|
||||
for (let governorIndex = 0; governorIndex < allProposalsByGovContract.length; governorIndex++) {
|
||||
const allProposals = allProposalsByGovContract[governorIndex]
|
||||
const allProposalStates = allProposalStatesByGovContract[governorIndex]
|
||||
const formattedEvents = formattedEventsByGovContract[governorIndex]
|
||||
|
||||
if (
|
||||
allProposals?.every((p) => Boolean(p.result)) &&
|
||||
allProposalStates?.every((p) => Boolean(p.result)) &&
|
||||
formattedEvents?.every((p) => Boolean(p))
|
||||
) {
|
||||
returnData.push(
|
||||
allProposals.map((proposal, i): ProposalData => {
|
||||
let description = formattedEvents[i].description
|
||||
// overwrite broken description
|
||||
if (governorIndex === 0 && i === 2) description = UNISWAP_GRANTS_PROPOSAL_DESCRIPTION
|
||||
|
||||
return {
|
||||
id: proposal?.result?.id.toString(),
|
||||
title: description?.split(/# |\n/g)[1] ?? 'Untitled',
|
||||
description: description ?? 'No description.',
|
||||
proposer: proposal?.result?.proposer,
|
||||
status: allProposalStates[i]?.result?.[0] ?? ProposalState.Undetermined,
|
||||
forCount: parseFloat(ethers.utils.formatUnits(proposal?.result?.forVotes.toString(), 18)),
|
||||
againstCount: parseFloat(ethers.utils.formatUnits(proposal?.result?.againstVotes.toString(), 18)),
|
||||
startBlock: parseInt(proposal?.result?.startBlock?.toString()),
|
||||
endBlock: parseInt(proposal?.result?.endBlock?.toString()),
|
||||
details: formattedEvents[i].details,
|
||||
}
|
||||
})
|
||||
)
|
||||
} else {
|
||||
returnData.push([])
|
||||
}
|
||||
}
|
||||
|
||||
return returnData
|
||||
}
|
||||
|
||||
export function useProposalData(id: string): ProposalData | undefined {
|
||||
const allProposalData = useAllProposalData()
|
||||
// TODO don't hardcode for first gov alpha
|
||||
const allProposalData = useAllProposalData()[0]
|
||||
return allProposalData?.find((p) => p.id === id)
|
||||
}
|
||||
|
||||
@@ -232,7 +266,10 @@ export function useVoteCallback(): {
|
||||
} {
|
||||
const { account } = useActiveWeb3React()
|
||||
|
||||
const govContract = useGovernanceContract()
|
||||
// we only care about voting on the active governance contract
|
||||
const govContracts = useGovernanceContracts()
|
||||
const govContract = govContracts[govContracts.length - 1]
|
||||
|
||||
const addTransaction = useTransactionAdder()
|
||||
|
||||
const voteCallback = useCallback(
|
||||
|
||||
Reference in New Issue
Block a user