From 1cafebeb4499f1dbe51cb938879fa3a363b09dc2 Mon Sep 17 00:00:00 2001 From: Mark Hinschberger Date: Wed, 4 Dec 2024 11:18:06 +0000 Subject: [PATCH 1/9] feat: user feedback [skip cypress] (#2274) --- src/layouts/MainLayout.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/layouts/MainLayout.tsx b/src/layouts/MainLayout.tsx index 382257c5e2..896d48351c 100644 --- a/src/layouts/MainLayout.tsx +++ b/src/layouts/MainLayout.tsx @@ -9,14 +9,15 @@ import { AppHeader } from './AppHeader'; import TopBarNotify from './TopBarNotify'; export function MainLayout({ children }: { children: ReactNode }) { - const APP_BANNER_VERSION = '4.0.0'; + const APP_BANNER_VERSION = '5.0.0'; return ( <> From 408571c1d7642328abb1e7752eef9fed6ed67765 Mon Sep 17 00:00:00 2001 From: Alex <101551092+alexmance@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:14:29 +0100 Subject: [PATCH 2/9] Remove staging deployment (#2272) --- .github/workflows/update-prod-staging.yml | 25 ++--------------------- README.md | 9 ++++++-- 2 files changed, 9 insertions(+), 25 deletions(-) diff --git a/.github/workflows/update-prod-staging.yml b/.github/workflows/update-prod-staging.yml index 58c6eaa345..7a41a7eedb 100644 --- a/.github/workflows/update-prod-staging.yml +++ b/.github/workflows/update-prod-staging.yml @@ -19,12 +19,6 @@ jobs: domain: 'app.aave.com', artifact: 'out', build_path: 'out' - }, - { - name: 'Staging', - domain: 'staging.aave.com', - artifact: 'out_staging', - build_path: 'out_staging' } ] environment: @@ -39,18 +33,6 @@ jobs: name: ${{ matrix.environment.artifact }} path: ${{ matrix.environment.build_path }} - # Only for staging environment - - name: pinata - id: pinata - if: matrix.environment.name == 'Staging' - uses: aave/pinata-action@35662944e92cf082457973f10aa42e48df179b47 - with: - PINATA_API_KEY: '${{ secrets.PINATA_API_KEY }}' - PINATA_SECRET_KEY: '${{ secrets.PINATA_SECRET_KEY }}' - PIN_ALIAS: 'app-aave-staging' - BUILD_LOCATION: './out_staging' - CID_VERSION: 1 - - name: Pin to primary IPFS server id: ipfs-primary uses: ./.github/actions/ipfs-pin @@ -60,25 +42,22 @@ jobs: IPFS_SERVER: '${{ secrets.IPFS_PRIMARY_SERVER }}' IPFS_SERVER_KEY: '${{ secrets.IPFS_PRIMARY_SERVER_KEY }}' BUILD_PATH: ${{ matrix.environment.build_path }} - PINATA_HASH: ${{ matrix.environment.name == 'Production' && inputs.PINATA_HASH || steps.pinata.outputs.hash }} + PINATA_HASH: ${{ inputs.PINATA_HASH }} - uses: aave/cloudflare-update-action@0f2084730a068fab162853c4e7cc40537233d34a with: CF_API_TOKEN: '${{ secrets.CF_API_TOKEN }}' CF_ZONE_ID: '${{ secrets.CF_ZONE_ID }}' - HASH: ${{ matrix.environment.name == 'Production' && inputs.PINATA_HASH || steps.pinata.outputs.hash }} + HASH: ${{ inputs.PINATA_HASH }} CF_DEPLOYMENT_DOMAIN: ${{ matrix.environment.domain }} - # Only for production environment - name: prepare release - if: matrix.environment.name == 'Production' run: | cp .github/release-template.md ./release-notes.md sed -i 's||${{ inputs.PINATA_HASH }}|g' ./release-notes.md echo "TAG=release-$(date '+%Y-%m-%d_%H-%M')" >> ${GITHUB_ENV} - name: Create GH release - if: matrix.environment.name == 'Production' uses: ncipollo/release-action@4c75f0f2e4ae5f3c807cf0904605408e319dcaac # v1.10.0 with: name: Production release diff --git a/README.md b/README.md index 473682f2b2..3fbca7b0e7 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,13 @@ There's a github action commenting the appropriate IPFS hash embedded in the Clo For ease of use: -- the DNS of [https://staging.aave.com](https://staging.aave.com) will always point to the latest main IPFS hash with all networks enabled -- the DNS of [https://app.aave.com](https://app.aave.com) will always point to the latest main IPFS hash with disabled test networks +- the DNS of [https://app.aave.com](https://app.aave.com) will always point to the latest main IPFS hash. + +### Testnet Networks Access +The interface now includes a feature toggle for testnet networks. Users can enable test networks by: +1. Opening the Settings menu +2. Toggling the "Testnet mode" switch +3. Once enabled, testnet networks (like Sepolia, Mumbai, etc.) will become available in the network selection menu ### Links known to work at some point: From 220523b54f236ddc1c9602af296de3aec825cd4a Mon Sep 17 00:00:00 2001 From: MartinGbz Date: Mon, 9 Dec 2024 15:46:23 +0100 Subject: [PATCH 3/9] =?UTF-8?q?=E2=9C=A8=20feat:=20add=20avalanche=20lm=20?= =?UTF-8?q?new=20merit=20actions=20(#2276)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../incentives/IncentivesTooltipContent.tsx | 5 +++ src/hooks/useMeritIncentives.ts | 40 ++++++++++++++++++- 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/src/components/incentives/IncentivesTooltipContent.tsx b/src/components/incentives/IncentivesTooltipContent.tsx index ce77fc87e5..04032b827d 100644 --- a/src/components/incentives/IncentivesTooltipContent.tsx +++ b/src/components/incentives/IncentivesTooltipContent.tsx @@ -43,6 +43,11 @@ const IncentivesSymbolMap: { symbol: 'aUSDT', aToken: true, }, + aAvaSAVAX: { + tokenIconSymbol: 'sAVAX', + symbol: 'asAVAX', + aToken: true, + }, }; interface IncentivesTooltipContentProps { diff --git a/src/hooks/useMeritIncentives.ts b/src/hooks/useMeritIncentives.ts index 68e77297d7..2c50d45cc8 100644 --- a/src/hooks/useMeritIncentives.ts +++ b/src/hooks/useMeritIncentives.ts @@ -1,6 +1,6 @@ import { ProtocolAction } from '@aave/contract-helpers'; import { ReserveIncentiveResponse } from '@aave/math-utils/dist/esm/formatters/incentive/calculate-reserve-incentives'; -import { AaveV3Base, AaveV3Ethereum } from '@bgd-labs/aave-address-book'; +import { AaveV3Avalanche, AaveV3Base, AaveV3Ethereum } from '@bgd-labs/aave-address-book'; import { useQuery } from '@tanstack/react-query'; import { CustomMarket } from 'src/ui-config/marketsConfig'; @@ -11,6 +11,10 @@ export enum MeritAction { BASE_SUPPLY_CBBTC = 'base-supply-cbbtc', BASE_SUPPLY_USDC = 'base-supply-usdc', BASE_BORROW_USDC = 'base-borrow-usdc', + AVALANCHE_SUPPLY_BTCB = 'avalanche-supply-btcb', + AVALANCHE_SUPPLY_USDC = 'avalanche-supply-usdc', + AVALANCHE_SUPPLY_USDT = 'avalanche-supply-usdt', + AVALANCHE_SUPPLY_SAVAX = 'avalanche-supply-savax', } type MeritIncentives = { @@ -105,6 +109,40 @@ const MERIT_DATA_MAP: Record }, ], }, + [CustomMarket.proto_avalanche_v3]: { + ['BTC.b']: [ + { + action: MeritAction.AVALANCHE_SUPPLY_BTCB, + rewardTokenAddress: AaveV3Avalanche.ASSETS.BTCb.A_TOKEN, + rewardTokenSymbol: 'aAvaSAVAX', + protocolAction: ProtocolAction.supply, + }, + ], + USDC: [ + { + action: MeritAction.AVALANCHE_SUPPLY_USDC, + rewardTokenAddress: AaveV3Avalanche.ASSETS.USDC.A_TOKEN, + rewardTokenSymbol: 'aAvaSAVAX', + protocolAction: ProtocolAction.supply, + }, + ], + USDt: [ + { + action: MeritAction.AVALANCHE_SUPPLY_USDT, + rewardTokenAddress: AaveV3Avalanche.ASSETS.USDt.A_TOKEN, + rewardTokenSymbol: 'aAvaSAVAX', + protocolAction: ProtocolAction.supply, + }, + ], + sAVAX: [ + { + action: MeritAction.AVALANCHE_SUPPLY_SAVAX, + rewardTokenAddress: AaveV3Avalanche.ASSETS.sAVAX.A_TOKEN, + rewardTokenSymbol: 'aAvaSAVAX', + protocolAction: ProtocolAction.supply, + }, + ], + }, }; export const useMeritIncentives = ({ From 5643cad12d611b3113f2894ecd917974a8972094 Mon Sep 17 00:00:00 2001 From: Mark Hinschberger Date: Mon, 9 Dec 2024 14:49:56 +0000 Subject: [PATCH 4/9] chore: update icon [skip cypress] (#2277) --- public/icons/tokens/usds.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/icons/tokens/usds.svg b/public/icons/tokens/usds.svg index a420f43153..ad6c727140 100644 --- a/public/icons/tokens/usds.svg +++ b/public/icons/tokens/usds.svg @@ -1 +1 @@ - + From 3364b1a383941b45b4334ca3bffffe3779ccadde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nandy=20B=C3=A2?= Date: Mon, 9 Dec 2024 22:34:20 +0100 Subject: [PATCH 5/9] feat: mask Merit campaign when aprs are not found (#2270) --- src/hooks/useMeritIncentives.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/hooks/useMeritIncentives.ts b/src/hooks/useMeritIncentives.ts index 2c50d45cc8..b539d37793 100644 --- a/src/hooks/useMeritIncentives.ts +++ b/src/hooks/useMeritIncentives.ts @@ -20,7 +20,7 @@ export enum MeritAction { type MeritIncentives = { totalAPR: number; actionsAPR: { - [key in MeritAction]: number; + [key in MeritAction]: number | null | undefined; }; }; @@ -179,6 +179,10 @@ export const useMeritIncentives = ({ const APR = data.actionsAPR[incentive.action]; + if (!APR) { + return null; + } + return { incentiveAPR: (APR / 100).toString(), rewardTokenAddress: incentive.rewardTokenAddress, From 6922bd1cf574e6e90560401d9ab45e3105def007 Mon Sep 17 00:00:00 2001 From: Mark Hinschberger Date: Wed, 11 Dec 2024 16:08:15 +0000 Subject: [PATCH 6/9] Revert "chore: update icon [skip cypress]" [skip cypress] (#2281) --- public/icons/tokens/usds.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/icons/tokens/usds.svg b/public/icons/tokens/usds.svg index ad6c727140..a420f43153 100644 --- a/public/icons/tokens/usds.svg +++ b/public/icons/tokens/usds.svg @@ -1 +1 @@ - + From d5a9402eb0a60ee486f6dec51f5c153c10cbecdc Mon Sep 17 00:00:00 2001 From: Mark Grothe Date: Wed, 11 Dec 2024 11:16:42 -0600 Subject: [PATCH 7/9] chore: update spark icon [skip cypress] (#2286) --- public/icons/other/spark.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/icons/other/spark.svg b/public/icons/other/spark.svg index 944c3e5d14..a8fbab4b38 100644 --- a/public/icons/other/spark.svg +++ b/public/icons/other/spark.svg @@ -1 +1 @@ - + From 681a94caf550b76df04f4fd074a53ace1e0f30ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nandy=20B=C3=A2?= Date: Wed, 11 Dec 2024 18:18:22 +0100 Subject: [PATCH 8/9] feat: add pyusd Merit campaign [skip cypress] (#2269) --- .../incentives/IncentivesTooltipContent.tsx | 5 +++++ .../incentives/MeritIncentivesTooltipContent.tsx | 8 ++++++-- src/hooks/useMeritIncentives.ts | 16 ++++++++++++++++ src/locales/en/messages.js | 2 +- src/locales/en/messages.po | 4 ++-- 5 files changed, 30 insertions(+), 5 deletions(-) diff --git a/src/components/incentives/IncentivesTooltipContent.tsx b/src/components/incentives/IncentivesTooltipContent.tsx index 04032b827d..3a46bcc9d7 100644 --- a/src/components/incentives/IncentivesTooltipContent.tsx +++ b/src/components/incentives/IncentivesTooltipContent.tsx @@ -43,6 +43,11 @@ const IncentivesSymbolMap: { symbol: 'aUSDT', aToken: true, }, + aEthPYUSD: { + tokenIconSymbol: 'PYUSD', + symbol: 'aPYUSD', + aToken: true, + }, aAvaSAVAX: { tokenIconSymbol: 'sAVAX', symbol: 'asAVAX', diff --git a/src/components/incentives/MeritIncentivesTooltipContent.tsx b/src/components/incentives/MeritIncentivesTooltipContent.tsx index a0490aa686..87f2c35deb 100644 --- a/src/components/incentives/MeritIncentivesTooltipContent.tsx +++ b/src/components/incentives/MeritIncentivesTooltipContent.tsx @@ -27,7 +27,7 @@ export const MeritIncentivesTooltipContent = ({ }} > - Eligible for the merit program. + Eligible for the Merit program. @@ -36,7 +36,11 @@ export const MeritIncentivesTooltipContent = ({ does not guarantee the program and accepts no liability. {' '} @@ -84,6 +87,18 @@ const MERIT_DATA_MAP: Record customMessage: 'You must supply wBTC and borrow USDT in order to receive merit rewards.', }, ], + PYUSD: [ + { + action: MeritAction.ETHEREUM_SUPPLY_PYUSD, + rewardTokenAddress: AaveV3Ethereum.ASSETS.PYUSD.A_TOKEN, + rewardTokenSymbol: 'aEthPYUSD', + protocolAction: ProtocolAction.supply, + customForumLink: + 'https://governance.aave.com/t/arfc-pyusd-reserve-configuration-update-incentive-campaign/19573', + customMessage: + 'Borrowing of some assets may impact the amount of rewards you are eligible for. Please check the forum post for the full eligibility criteria.' + }, + ], }, [CustomMarket.proto_base_v3]: { cbBTC: [ @@ -188,6 +203,7 @@ export const useMeritIncentives = ({ rewardTokenAddress: incentive.rewardTokenAddress, rewardTokenSymbol: incentive.rewardTokenSymbol, customMessage: incentive.customMessage, + customForumLink: incentive.customForumLink, } as ExtendedReserveIncentiveResponse; }, }); diff --git a/src/locales/en/messages.js b/src/locales/en/messages.js index 34ab2b4750..000339a0e0 100644 --- a/src/locales/en/messages.js +++ b/src/locales/en/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":".CSV",".JSON":".JSON","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Add stkAAVE to see borrow rate with discount","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>Slippage tolerance <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.","APR":"APR","APY":"APY","APY change":"APY change","APY type":"APY type","APY type change":"APY type change","APY with discount applied":"APY with discount applied","APY, borrow rate":"APY, borrow rate","APY, variable":"APY, variable","AToken supply is not zero":"AToken supply is not zero","Aave Governance":"Aave Governance","Aave aToken":"Aave aToken","Aave debt token":"Aave debt token","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance","Aave per month":"Aave per month","About GHO":"About GHO","Account":"Account","Action cannot be performed because the reserve is frozen":"Action cannot be performed because the reserve is frozen","Action cannot be performed because the reserve is paused":"Action cannot be performed because the reserve is paused","Action requires an active reserve":"Action requires an active reserve","Activate Cooldown":"Activate Cooldown","Add stkAAVE to see borrow APY with the discount":"Add stkAAVE to see borrow APY with the discount","Add to wallet":"Add to wallet","Add {0} to wallet to track your balance.":["Add ",["0"]," to wallet to track your balance."],"Address is not a contract":"Address is not a contract","Addresses":"Addresses","Addresses ({0})":["Addresses (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"All done!","All proposals":"All proposals","All transactions":"All transactions","Allowance required action":"Allowance required action","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.","Amount":"Amount","Amount After Fee":"Amount After Fee","Amount claimable":"Amount claimable","Amount in cooldown":"Amount in cooldown","Amount must be greater than 0":"Amount must be greater than 0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Amount to migrate","Amount to unstake":"Amount to unstake","An error has occurred fetching the proposal.":"An error has occurred fetching the proposal.","Approve Confirmed":"Approve Confirmed","Approve with":"Approve with","Approve {symbol} to continue":["Approve ",["symbol"]," to continue"],"Approving {symbol}...":["Approving ",["symbol"],"..."],"Array parameters that should be equal length are not":"Array parameters that should be equal length are not","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.","Asset":"Asset","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.","Asset can only be used as collateral in isolation mode only.":"Asset can only be used as collateral in isolation mode only.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["Asset cannot be migrated because you have isolated collateral in ",["marketName"]," v3 Market which limits borrowable assets. You can manage your collateral in <0>",["marketName"]," V3 Dashboard"],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in ",["marketName"]," v3 market."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["Asset cannot be migrated due to supply cap restriction in ",["marketName"]," v3 market."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["Asset cannot be migrated to ",["marketName"]," V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["Asset cannot be migrated to ",["marketName"]," v3 Market since collateral asset will enable isolation mode."],"Asset cannot be used as collateral.":"Asset cannot be used as collateral.","Asset category":"Asset category","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["Asset is frozen in ",["marketName"]," v3 market, hence this position cannot be migrated."],"Asset is not borrowable in isolation mode":"Asset is not borrowable in isolation mode","Asset is not listed":"Asset is not listed","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.","Assets":"Assets","Assets to borrow":"Assets to borrow","Assets to supply":"Assets to supply","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"At a discount","Available":"Available","Available liquidity":"Available liquidity","Available on":"Available on","Available rewards":"Available rewards","Available to borrow":"Available to borrow","Available to supply":"Available to supply","Back to Dashboard":"Back to Dashboard","Balance":"Balance","Balance to revoke":"Balance to revoke","Balancer Pool":"Balancer Pool","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions","Be mindful of the network congestion and gas prices.":"Be mindful of the network congestion and gas prices.","Because this asset is paused, no actions can be taken until further notice":"Because this asset is paused, no actions can be taken until further notice","Before supplying":"Before supplying","Blocked Address":"Blocked Address","Borrow":"Borrow","Borrow APY":"Borrow APY","Borrow APY, variable":"Borrow APY, variable","Borrow amount to reach {0}% utilization":["Borrow amount to reach ",["0"],"% utilization"],"Borrow and repay in same block is not allowed":"Borrow and repay in same block is not allowed","Borrow apy":"Borrow apy","Borrow balance":"Borrow balance","Borrow balance after repay":"Borrow balance after repay","Borrow balance after switch":"Borrow balance after switch","Borrow cap":"Borrow cap","Borrow cap is exceeded":"Borrow cap is exceeded","Borrow info":"Borrow info","Borrow power used":"Borrow power used","Borrow rate":"Borrow rate","Borrow rate change":"Borrow rate change","Borrow {symbol}":["Borrow ",["symbol"]],"Borrowable":"Borrowable","Borrowed":"Borrowed","Borrowed asset amount":"Borrowed asset amount","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["Borrowing is currently unavailable for ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"Borrowing is disabled due to an Aave community decision. <0>More details","Borrowing is not enabled":"Borrowing is not enabled","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for ",["0"]," category. To manage E-Mode categories visit your <0>Dashboard."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.","Borrowing power and assets are limited due to Isolation mode.":"Borrowing power and assets are limited due to Isolation mode.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Borrowing this amount will reduce your health factor and increase risk of liquidation.","Borrowing {symbol}":["Borrowing ",["symbol"]],"Both":"Both","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Buy Crypto With Fiat","Buy Crypto with Fiat":"Buy Crypto with Fiat","Buy {cryptoSymbol} with Fiat":["Buy ",["cryptoSymbol"]," with Fiat"],"COPIED!":"COPIED!","COPY IMAGE":"COPY IMAGE","Can be collateral":"Can be collateral","Can be executed":"Can be executed","Can't validate the wallet address. Try again.":"Can't validate the wallet address. Try again.","Cancel":"Cancel","Cannot disable E-Mode":"Cannot disable E-Mode","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.","Choose one of the on-ramp services":"Choose one of the on-ramp services","Claim":"Claim","Claim all":"Claim all","Claim all rewards":"Claim all rewards","Claim {0}":["Claim ",["0"]],"Claim {symbol}":["Claim ",["symbol"]],"Claimable AAVE":"Claimable AAVE","Claimed":"Claimed","Claiming":"Claiming","Claiming {symbol}":["Claiming ",["symbol"]],"Close":"Close","Collateral":"Collateral","Collateral balance after repay":"Collateral balance after repay","Collateral change":"Collateral change","Collateral is (mostly) the same currency that is being borrowed":"Collateral is (mostly) the same currency that is being borrowed","Collateral to repay with":"Collateral to repay with","Collateral usage":"Collateral usage","Collateral usage is limited because of Isolation mode.":"Collateral usage is limited because of Isolation mode.","Collateral usage is limited because of isolation mode.":"Collateral usage is limited because of isolation mode.","Collateral usage is limited because of isolation mode. <0>Learn More":"Collateral usage is limited because of isolation mode. <0>Learn More","Collateralization":"Collateralization","Collector Contract":"Collector Contract","Collector Info":"Collector Info","Confirm transaction":"Confirm transaction","Confirming transaction":"Confirming transaction","Connect":"Connect","Connect wallet":"Connect wallet","Cooldown period":"Cooldown period","Cooldown period warning":"Cooldown period warning","Cooldown time left":"Cooldown time left","Cooldown to unstake":"Cooldown to unstake","Cooling down...":"Cooling down...","Copy address":"Copy address","Copy error message":"Copy error message","Copy error text":"Copy error text","Covered debt":"Covered debt","Current LTV":"Current LTV","Current differential":"Current differential","Current v2 Balance":"Current v2 Balance","Current v2 balance":"Current v2 balance","Current votes":"Current votes","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.","Dark mode":"Dark mode","Dashboard":"Dashboard","Data couldn't be fetched, please reload graph.":"Data couldn't be fetched, please reload graph.","Debt":"Debt","Debt ceiling is exceeded":"Debt ceiling is exceeded","Debt ceiling is not zero":"Debt ceiling is not zero","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.","Delegated power":"Delegated power","Destination":"Destination","Details":"Details","Developers":"Developers","Differential":"Differential","Disable E-Mode":"Disable E-Mode","Disable fork":"Disable fork","Disable testnet":"Disable testnet","Disable {symbol} as collateral":["Disable ",["symbol"]," as collateral"],"Disabled":"Disabled","Disabling E-Mode":"Disabling E-Mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"Disabling this asset as collateral affects your borrowing power and Health Factor.","Disconnect Wallet":"Disconnect Wallet","Discord channel":"Discord channel","Discount":"Discount","Discount applied for <0/> staking AAVE":"Discount applied for <0/> staking AAVE","Discount model parameters":"Discount model parameters","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more","Discountable amount":"Discountable amount","Docs":"Docs","Download":"Download","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Edit","Effective interest rate":"Effective interest rate","Efficiency mode (E-Mode)":"Efficiency mode (E-Mode)","Eligible for the merit program.":"Eligible for the merit program.","Email":"Email","Emode":"Emode","Enable E-Mode":"Enable E-Mode","Enable {symbol} as collateral":["Enable ",["symbol"]," as collateral"],"Enabled":"Enabled","Enabling E-Mode":"Enabling E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.","English":"English","Enter ETH address":"Enter ETH address","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"Enter an amount","Error connecting. Try refreshing the page.":"Error connecting. Try refreshing the page.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["Estimated compounding interest, including discount for Staking ",["0"],"AAVE in Safety Module."],"Estimated time":"Estimated time","Exceeds the discount":"Exceeds the discount","Exchange rate":"Exchange rate","Expected amount to repay":"Expected amount to repay","Expires":"Expires","Export data to":"Export data to","FAQ":"FAQ","FAQS":"FAQS","Failed to load proposal voters. Please refresh the page.":"Failed to load proposal voters. Please refresh the page.","Faucet":"Faucet","Faucet {0}":["Faucet ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"Fetching data...","Filter":"Filter","Fixed rate":"Fixed rate","Flashloan is disabled for this asset, hence this position cannot be migrated.":"Flashloan is disabled for this asset, hence this position cannot be migrated.","For repayment of a specific type of debt, the user needs to have debt that type":"For repayment of a specific type of debt, the user needs to have debt that type","Fork mode is ON":"Fork mode is ON","Forum discussion":"Forum discussion","French":"French","Funds in the Safety Module":"Funds in the Safety Module","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.","Get ABP Token":"Get ABP Token","Get ABP v2 Token":"Get ABP v2 Token","Get GHO":"Get GHO","Global settings":"Global settings","Go Back":"Go Back","Go to Balancer Pool":"Go to Balancer Pool","Go to V3 Dashboard":"Go to V3 Dashboard","Governance":"Governance","Greek":"Greek","Health factor":"Health factor","Health factor is lesser than the liquidation threshold":"Health factor is lesser than the liquidation threshold","Health factor is not below the threshold":"Health factor is not below the threshold","Hide":"Hide","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Holders of stkAAVE receive a discount on the GHO borrowing rate","I acknowledge the risks involved.":"I acknowledge the risks involved.","I fully understand the risks of migrating.":"I fully understand the risks of migrating.","I understand how cooldown ({0}) and unstaking ({1}) work":["I understand how cooldown (",["0"],") and unstaking (",["1"],") work"],"If the error continues to happen,<0/> you may report it to this":"If the error continues to happen,<0/> you may report it to this","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"If the health factor goes below 1, the liquidation of your collateral might be triggered.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["If you DO NOT unstake within ",["0"]," of unstake window, you will need to activate cooldown process again."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable ",["0"]," as collateral before borrowing another asset. Read more in our <0>FAQ"],"Inconsistent flashloan parameters":"Inconsistent flashloan parameters","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.","Interest accrued":"Interest accrued","Interest rate rebalance conditions were not met":"Interest rate rebalance conditions were not met","Interest rate strategy":"Interest rate strategy","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more","Invalid amount to burn":"Invalid amount to burn","Invalid amount to mint":"Invalid amount to mint","Invalid bridge protocol fee":"Invalid bridge protocol fee","Invalid expiration":"Invalid expiration","Invalid flashloan premium":"Invalid flashloan premium","Invalid return value of the flashloan executor function":"Invalid return value of the flashloan executor function","Invalid signature":"Invalid signature","Isolated":"Isolated","Isolated Debt Ceiling":"Isolated Debt Ceiling","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"Isolated assets have limited borrowing power and other assets cannot be used as collateral.","Join the community discussion":"Join the community discussion","Language":"Language","Learn more":"Learn more","Learn more about risks involved":"Learn more about risks involved","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"Learn more in our <0>FAQ guide","Learn more.":"Learn more.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Linked addresses","Links":"Links","Liquidated collateral":"Liquidated collateral","Liquidation":"Liquidation","Liquidation <0/> threshold":"Liquidation <0/> threshold","Liquidation Threshold":"Liquidation Threshold","Liquidation at":"Liquidation at","Liquidation penalty":"Liquidation penalty","Liquidation risk":"Liquidation risk","Liquidation risk parameters":"Liquidation risk parameters","Liquidation threshold":"Liquidation threshold","Liquidation value":"Liquidation value","Loading data...":"Loading data...","Ltv validation failed":"Ltv validation failed","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details","MAX":"MAX","Manage E-Mode":"Manage E-Mode","Manage analytics":"Manage analytics","Market":"Market","Markets":"Markets","Max":"Max","Max LTV":"Max LTV","Max slashing":"Max slashing","Max slippage":"Max slippage","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["Maximum amount available to borrow against this asset is limited because debt ceiling is at ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["Maximum amount available to borrow is <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.","Maximum amount available to supply is <0/> {0} (<1/>).":["Maximum amount available to supply is <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["Maximum amount available to supply is limited because protocol supply cap is at ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"Maximum available to borrow","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Meet GHO","Menu":"Menu","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Migrate","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrate to V3","Migrate to stkABPT v2":"Migrate to stkABPT v2","Migrate to v3":"Migrate to v3","Migrate to {0} v3 Market":["Migrate to ",["0"]," v3 Market"],"Migrate your assets":"Migrate your assets","Migrated":"Migrated","Migrating":"Migrating","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.","Migration risks":"Migration risks","Minimum GHO borrow amount":"Minimum GHO borrow amount","Minimum USD value received":"Minimum USD value received","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Minimum amount received","Minimum staked Aave amount":"Minimum staked Aave amount","Minimum {0} received":["Minimum ",["0"]," received"],"More":"More","NAY":"NAY","Need help connecting a wallet? <0>Read our FAQ":"Need help connecting a wallet? <0>Read our FAQ","Net APR":"Net APR","Net APY":"Net APY","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.","Net worth":"Net worth","Network":"Network","Network not supported for this wallet":"Network not supported for this wallet","No assets selected to migrate.":"No assets selected to migrate.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"No rewards to claim","No search results{0}":["No search results",["0"]],"No transactions yet.":"No transactions yet.","No voting power":"No voting power","None":"None","Not a valid address":"Not a valid address","Not enough balance on your wallet":"Not enough balance on your wallet","Not enough collateral to repay this amount of debt with":"Not enough collateral to repay this amount of debt with","Not enough staked balance":"Not enough staked balance","Not enough voting power to participate in this proposal":"Not enough voting power to participate in this proposal","Not reached":"Not reached","Nothing borrowed yet":"Nothing borrowed yet","Nothing found":"Nothing found","Nothing staked":"Nothing staked","Nothing supplied yet":"Nothing supplied yet","Ok, Close":"Ok, Close","Operation not supported":"Operation not supported","Oracle price":"Oracle price","Overview":"Overview","Page not found":"Page not found","Participating in this {symbol} reserve gives annualized rewards.":["Participating in this ",["symbol"]," reserve gives annualized rewards."],"Pending...":"Pending...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.","Please connect a wallet to view your personal information here.":"Please connect a wallet to view your personal information here.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Please connect your wallet to be able to switch your tokens.","Please connect your wallet to get free testnet assets.":"Please connect your wallet to get free testnet assets.","Please connect your wallet to see migration tool.":"Please connect your wallet to see migration tool.","Please connect your wallet to see your supplies, borrowings, and open positions.":"Please connect your wallet to see your supplies, borrowings, and open positions.","Please connect your wallet to view transaction history.":"Please connect your wallet to view transaction history.","Please enter a valid wallet address.":"Please enter a valid wallet address.","Please switch to {networkName}.":["Please switch to ",["networkName"],"."],"Please, connect your wallet":"Please, connect your wallet","Pool addresses provider is not registered":"Pool addresses provider is not registered","Powered by":"Powered by","Preview tx and migrate":"Preview tx and migrate","Price":"Price","Price data is not currently available for this reserve on the protocol subgraph":"Price data is not currently available for this reserve on the protocol subgraph","Price impact":"Price impact","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.","Price impact {0}%":["Price impact ",["0"],"%"],"Privacy":"Privacy","Proposal details":"Proposal details","Proposal overview":"Proposal overview","Proposals":"Proposals","Proposition":"Proposition","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"Protocol supply cap at 100% for this asset. Further supply unavailable.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"Protocol supply cap is at 100% for this asset. Further supply unavailable.","Quorum":"Quorum","Rate change":"Rate change","Raw-Ipfs":"Raw-Ipfs","Reached":"Reached","Reactivate cooldown period to unstake {0} {stakedToken}":["Reactivate cooldown period to unstake ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.","Read-only mode.":"Read-only mode.","Read-only mode. Connect to a wallet to perform transactions.":"Read-only mode. Connect to a wallet to perform transactions.","Receive (est.)":"Receive (est.)","Received":"Received","Recent Transactions":"Recent Transactions","Recipient address":"Recipient address","Rejected connection request":"Rejected connection request","Reload":"Reload","Reload the page":"Reload the page","Remaining debt":"Remaining debt","Remaining supply":"Remaining supply","Remind me":"Remind me","Remove":"Remove","Repaid":"Repaid","Repay":"Repay","Repay with":"Repay with","Repay {symbol}":["Repay ",["symbol"]],"Repaying {symbol}":["Repaying ",["symbol"]],"Repayment amount to reach {0}% utilization":["Repayment amount to reach ",["0"],"% utilization"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Representative smart contract wallet (ie. Safe) addresses on other chains.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Representing smart contract wallet (ie. Safe) addresses on other chains.","Reserve Size":"Reserve Size","Reserve factor":"Reserve factor","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["Reserve factor is a percentage of interest which goes to a ",["0"]," that is controlled by Aave governance to promote ecosystem growth."],"Reserve status & configuration":"Reserve status & configuration","Reset":"Reset","Restake":"Restake","Restake {symbol}":["Restake ",["symbol"]],"Restaked":"Restaked","Restaking {symbol}":["Restaking ",["symbol"]],"Review approval tx details":"Review approval tx details","Review tx":"Review tx","Review tx details":"Review tx details","Revoke power":"Revoke power","Reward(s) to claim":"Reward(s) to claim","Rewards APR":"Rewards APR","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"Risk details","Safety of your deposited collateral against the borrowed assets and its underlying value.":"Safety of your deposited collateral against the borrowed assets and its underlying value.","Save and share":"Save and share","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"Seems like we can't switch the network automatically. Please check if you can change it from the wallet.","Select an asset":"Select an asset","Select language":"Select language","Select slippage tolerance":"Select slippage tolerance","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Selected assets have successfully migrated. Visit the Market Dashboard to see them.","Selected borrow assets":"Selected borrow assets","Selected supply assets":"Selected supply assets","Send Feedback":"Send Feedback","Send feedback":"Send feedback","Set up delegation":"Set up delegation","Share on Lens":"Share on Lens","Share on twitter":"Share on twitter","Show":"Show","Show Frozen or paused assets":"Show Frozen or paused assets","Show assets with 0 balance":"Show assets with 0 balance","Sign to continue":"Sign to continue","Signatures ready":"Signatures ready","Signing":"Signing","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Since this is a test network, you can get any of the assets if you have ETH on your wallet","Slippage":"Slippage","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Some migrated assets will not be used as collateral due to enabled isolation mode in ",["marketName"]," V3 Market. Visit <0>",["marketName"]," V3 Dashboard to manage isolation mode."],"Something went wrong":"Something went wrong","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.","Sorry, we couldn't find the page you were looking for.":"Sorry, we couldn't find the page you were looking for.","Source":"Source","Spanish":"Spanish","Stable":"Stable","Stable borrowing is enabled":"Stable borrowing is enabled","Stable borrowing is not enabled":"Stable borrowing is not enabled","Stable debt supply is not zero":"Stable debt supply is not zero","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.","Stablecoin":"Stablecoin","Stake":"Stake","Stake AAVE":"Stake AAVE","Stake ABPT":"Stake ABPT","Stake GHO":"Stake GHO","Stake cooldown activated":"Stake cooldown activated","Staked":"Staked","Staking":"Staking","Staking APR":"Staking APR","Staking Rewards":"Staking Rewards","Staking balance":"Staking balance","Staking discount":"Staking discount","State":"State","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Supplied","Supplied asset amount":"Supplied asset amount","Supplied assets":"Supplied assets","Supply":"Supply","Supply APY":"Supply APY","Supply apy":"Supply apy","Supply balance":"Supply balance","Supply balance after switch":"Supply balance after switch","Supply cap is exceeded":"Supply cap is exceeded","Supply cap on target reserve reached. Try lowering the amount.":"Supply cap on target reserve reached. Try lowering the amount.","Supply {symbol}":["Supply ",["symbol"]],"Supplying your":"Supplying your","Supplying {symbol}":["Supplying ",["symbol"]],"Switch":"Switch","Switch E-Mode":"Switch E-Mode","Switch Network":"Switch Network","Switch borrow position":"Switch borrow position","Switch to":"Switch to","Switched":"Switched","Switching":"Switching","Switching E-Mode":"Switching E-Mode","Techpaper":"Techpaper","Terms":"Terms","Test Assets":"Test Assets","Testnet mode":"Testnet mode","Testnet mode is ON":"Testnet mode is ON","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"Thank you for voting!!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.","The address of the pool addresses provider is invalid":"The address of the pool addresses provider is invalid","The app is running in fork mode.":"The app is running in fork mode.","The app is running in testnet mode. Learn how it works in":"The app is running in testnet mode. Learn how it works in","The caller of the function is not an AToken":"The caller of the function is not an AToken","The caller of this function must be a pool":"The caller of this function must be a pool","The collateral balance is 0":"The collateral balance is 0","The collateral chosen cannot be liquidated":"The collateral chosen cannot be liquidated","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["The cooldown period is ",["0"],". After ",["1"]," of cooldown, you will enter unstake window of ",["2"],". You will continue receiving rewards during cooldown and unstake window."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.","The requested amount is greater than the max loan size in stable rate mode":"The requested amount is greater than the max loan size in stable rate mode","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.","The underlying asset cannot be rescued":"The underlying asset cannot be rescued","The underlying balance needs to be greater than 0":"The underlying balance needs to be greater than 0","The weighted average of APY for all borrowed assets, including incentives.":"The weighted average of APY for all borrowed assets, including incentives.","The weighted average of APY for all supplied assets, including incentives.":"The weighted average of APY for all supplied assets, including incentives.","There are not enough funds in the{0}reserve to borrow":["There are not enough funds in the",["0"],"reserve to borrow"],"There is not enough collateral to cover a new borrow":"There is not enough collateral to cover a new borrow","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.","There was some error. Please try changing the parameters or <0><1>copy the error":"There was some error. Please try changing the parameters or <0><1>copy the error","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.","These funds have been borrowed and are not available for withdrawal at this time.":"These funds have been borrowed and are not available for withdrawal at this time.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.","This address is blocked on app.aave.com because it is associated with one or more":"This address is blocked on app.aave.com because it is associated with one or more","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["This asset has almost reached its borrow cap. There is only ",["messageValue"]," available to be borrowed from this market."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["This asset has almost reached its supply cap. There can only be ",["messageValue"]," supplied to this market."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"This asset has reached its supply cap. Nothing is available to be supplied from this market.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. <0>More details","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details","This asset is frozen due to an Aave community decision. <0>More details":"This asset is frozen due to an Aave community decision. <0>More details","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.","Time left to unstake":"Time left to unstake","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Tip: Try increasing slippage or reduce input amount","To":"To","To borrow you need to supply any asset to be used as collateral.":"To borrow you need to supply any asset to be used as collateral.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more","To repay on behalf of a user an explicit amount to repay is needed":"To repay on behalf of a user an explicit amount to repay is needed","To request access for this permissioned market, please visit: <0>Acces Provider Name":"To request access for this permissioned market, please visit: <0>Acces Provider Name","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.","Top 10 addresses":"Top 10 addresses","Total available":"Total available","Total borrowed":"Total borrowed","Total borrows":"Total borrows","Total emission per day":"Total emission per day","Total interest accrued":"Total interest accrued","Total market size":"Total market size","Total supplied":"Total supplied","Total worth":"Total worth","Track wallet":"Track wallet","Track wallet balance in read-only mode":"Track wallet balance in read-only mode","Transaction failed":"Transaction failed","Transaction history":"Transaction history","Transaction history is not currently available for this market":"Transaction history is not currently available for this market","Transaction overview":"Transaction overview","Transactions":"Transactions","Unavailable":"Unavailable","Unbacked":"Unbacked","Unbacked mint cap is exceeded":"Unbacked mint cap is exceeded","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["Underlying asset does not exist in ",["marketName"]," v3 Market, hence this position cannot be migrated."],"Underlying token":"Underlying token","Unstake":"Unstake","Unstake now":"Unstake now","Unstake window":"Unstake window","Unstake {symbol}":["Unstake ",["symbol"]],"Unstaked":"Unstaked","Unstaking {symbol}":["Unstaking ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Use it to vote for or against active proposals.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.","Used as collateral":"Used as collateral","User cannot withdraw more than the available balance":"User cannot withdraw more than the available balance","User did not borrow the specified currency":"User did not borrow the specified currency","User does not have outstanding stable rate debt on this reserve":"User does not have outstanding stable rate debt on this reserve","User does not have outstanding variable rate debt on this reserve":"User does not have outstanding variable rate debt on this reserve","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"User is trying to borrow multiple assets including a siloed one","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.","Utilization Rate":"Utilization Rate","VIEW TX":"VIEW TX","VOTE NAY":"VOTE NAY","VOTE YAE":"VOTE YAE","Variable":"Variable","Variable debt supply is not zero":"Variable debt supply is not zero","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Variable rate","Version 2":"Version 2","Version 3":"Version 3","View":"View","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"View Transactions","View all":"View all","View all votes":"View all votes","View contract":"View contract","View details":"View details","View on Explorer":"View on Explorer","Vote NAY":"Vote NAY","Vote YAE":"Vote YAE","Voted NAY":"Voted NAY","Voted YAE":"Voted YAE","Votes":"Votes","Voting":"Voting","Voting is on":"Voting is on","Voting power":"Voting power","Voting results":"Voting results","Wallet Balance":"Wallet Balance","Wallet balance":"Wallet balance","Wallet not detected. Connect or install wallet and retry":"Wallet not detected. Connect or install wallet and retry","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"We couldn’t detect a wallet. Connect a wallet to stake and view your balance.","We suggest you go back to the Dashboard.":"We suggest you go back to the Dashboard.","Website":"Website","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.","With a voting power of <0/>":"With a voting power of <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more","Withdraw":"Withdraw","Withdraw & Switch":"Withdraw & Switch","Withdraw and Switch":"Withdraw and Switch","Withdraw {symbol}":["Withdraw ",["symbol"]],"Withdrawing":"Withdrawing","Withdrawing and Switching":"Withdrawing and Switching","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Withdrawing this amount will reduce your health factor and increase risk of liquidation.","Withdrawing {symbol}":["Withdrawing ",["symbol"]],"Wrong Network":"Wrong Network","YAE":"YAE","You are entering Isolation mode":"You are entering Isolation mode","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"You can not switch usage as collateral mode for this currency, because it will cause collateral call","You can not use this currency as collateral":"You can not use this currency as collateral","You can not withdraw this amount because it will cause collateral call":"You can not withdraw this amount because it will cause collateral call","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.","You can report incident to our <0>Discord or<1>Github.":"You can report incident to our <0>Discord or<1>Github.","You cancelled the transaction.":"You cancelled the transaction.","You did not participate in this proposal":"You did not participate in this proposal","You do not have supplies in this currency":"You do not have supplies in this currency","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.","You have no AAVE/stkAAVE/aAave balance to delegate.":"You have no AAVE/stkAAVE/aAave balance to delegate.","You may borrow up to <0/> GHO at <1/> (max discount)":"You may borrow up to <0/> GHO at <1/> (max discount)","You may enter a custom amount in the field.":"You may enter a custom amount in the field.","You switched to {0} rate":["You switched to ",["0"]," rate"],"You unstake here":"You unstake here","You voted {0}":["You voted ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"You will exit isolation mode and other tokens can now be used as collateral","You {action} <0/> {symbol}":["You ",["action"]," <0/> ",["symbol"]],"You've successfully switched borrow position.":"You've successfully switched borrow position.","You've successfully switched tokens.":"You've successfully switched tokens.","You've successfully withdrew & switched tokens.":"You've successfully withdrew & switched tokens.","Your balance is lower than the selected amount.":"Your balance is lower than the selected amount.","Your borrows":"Your borrows","Your current loan to value based on your collateral supplied.":"Your current loan to value based on your collateral supplied.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.","Your info":"Your info","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.","Your reward balance is 0":"Your reward balance is 0","Your supplies":"Your supplies","Your voting info":"Your voting info","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Your voting power is based on your AAVE/stkAAVE balance and received delegations.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Your ",["name"]," wallet is empty. Purchase or transfer assets or use <0>",["0"]," to transfer your ",["network"]," assets."],"Your {name} wallet is empty. Purchase or transfer assets.":["Your ",["name"]," wallet is empty. Purchase or transfer assets."],"Your {networkName} wallet is empty. Get free test assets at":["Your ",["networkName"]," wallet is empty. Get free test assets at"],"Your {networkName} wallet is empty. Get free test {0} at":["Your ",["networkName"]," wallet is empty. Get free test ",["0"]," at"],"Zero address not valid":"Zero address not valid","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"assets","blocked activities":"blocked activities","copy the error":"copy the error","disabled":"disabled","documentation":"documentation","enabled":"enabled","ends":"ends","for":"for","of":"of","on":"on","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.","repaid":"repaid","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: ",["0"]],"staking view":"staking view","starts":"starts","stkAAVE holders get a discount on GHO borrow rate":"stkAAVE holders get a discount on GHO borrow rate","to":"to","tokens is not the same as staking them. If you wish to stake your":"tokens is not the same as staking them. If you wish to stake your","tokens, please go to the":"tokens, please go to the","withdrew":"withdrew","{0}":[["0"]],"{0} Balance":[["0"]," Balance"],"{0} Faucet":[["0"]," Faucet"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"d"],"{h}h":[["h"],"h"],"{label}":[["label"]],"{m}m":[["m"],"m"],"{networkName} Faucet":[["networkName"]," Faucet"],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," assets selected"],"{stepName}":[["stepName"]],"{s}s":[["s"],"s"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":".CSV",".JSON":".JSON","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Add stkAAVE to see borrow rate with discount","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>Slippage tolerance <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.","APR":"APR","APY":"APY","APY change":"APY change","APY type":"APY type","APY type change":"APY type change","APY with discount applied":"APY with discount applied","APY, borrow rate":"APY, borrow rate","APY, variable":"APY, variable","AToken supply is not zero":"AToken supply is not zero","Aave Governance":"Aave Governance","Aave aToken":"Aave aToken","Aave debt token":"Aave debt token","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance","Aave per month":"Aave per month","About GHO":"About GHO","Account":"Account","Action cannot be performed because the reserve is frozen":"Action cannot be performed because the reserve is frozen","Action cannot be performed because the reserve is paused":"Action cannot be performed because the reserve is paused","Action requires an active reserve":"Action requires an active reserve","Activate Cooldown":"Activate Cooldown","Add stkAAVE to see borrow APY with the discount":"Add stkAAVE to see borrow APY with the discount","Add to wallet":"Add to wallet","Add {0} to wallet to track your balance.":["Add ",["0"]," to wallet to track your balance."],"Address is not a contract":"Address is not a contract","Addresses":"Addresses","Addresses ({0})":["Addresses (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"All done!","All proposals":"All proposals","All transactions":"All transactions","Allowance required action":"Allowance required action","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.","Amount":"Amount","Amount After Fee":"Amount After Fee","Amount claimable":"Amount claimable","Amount in cooldown":"Amount in cooldown","Amount must be greater than 0":"Amount must be greater than 0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Amount to migrate","Amount to unstake":"Amount to unstake","An error has occurred fetching the proposal.":"An error has occurred fetching the proposal.","Approve Confirmed":"Approve Confirmed","Approve with":"Approve with","Approve {symbol} to continue":["Approve ",["symbol"]," to continue"],"Approving {symbol}...":["Approving ",["symbol"],"..."],"Array parameters that should be equal length are not":"Array parameters that should be equal length are not","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.","Asset":"Asset","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.","Asset can only be used as collateral in isolation mode only.":"Asset can only be used as collateral in isolation mode only.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["Asset cannot be migrated because you have isolated collateral in ",["marketName"]," v3 Market which limits borrowable assets. You can manage your collateral in <0>",["marketName"]," V3 Dashboard"],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in ",["marketName"]," v3 market."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["Asset cannot be migrated due to supply cap restriction in ",["marketName"]," v3 market."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["Asset cannot be migrated to ",["marketName"]," V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["Asset cannot be migrated to ",["marketName"]," v3 Market since collateral asset will enable isolation mode."],"Asset cannot be used as collateral.":"Asset cannot be used as collateral.","Asset category":"Asset category","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["Asset is frozen in ",["marketName"]," v3 market, hence this position cannot be migrated."],"Asset is not borrowable in isolation mode":"Asset is not borrowable in isolation mode","Asset is not listed":"Asset is not listed","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.","Assets":"Assets","Assets to borrow":"Assets to borrow","Assets to supply":"Assets to supply","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"At a discount","Available":"Available","Available liquidity":"Available liquidity","Available on":"Available on","Available rewards":"Available rewards","Available to borrow":"Available to borrow","Available to supply":"Available to supply","Back to Dashboard":"Back to Dashboard","Balance":"Balance","Balance to revoke":"Balance to revoke","Balancer Pool":"Balancer Pool","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions","Be mindful of the network congestion and gas prices.":"Be mindful of the network congestion and gas prices.","Because this asset is paused, no actions can be taken until further notice":"Because this asset is paused, no actions can be taken until further notice","Before supplying":"Before supplying","Blocked Address":"Blocked Address","Borrow":"Borrow","Borrow APY":"Borrow APY","Borrow APY, variable":"Borrow APY, variable","Borrow amount to reach {0}% utilization":["Borrow amount to reach ",["0"],"% utilization"],"Borrow and repay in same block is not allowed":"Borrow and repay in same block is not allowed","Borrow apy":"Borrow apy","Borrow balance":"Borrow balance","Borrow balance after repay":"Borrow balance after repay","Borrow balance after switch":"Borrow balance after switch","Borrow cap":"Borrow cap","Borrow cap is exceeded":"Borrow cap is exceeded","Borrow info":"Borrow info","Borrow power used":"Borrow power used","Borrow rate":"Borrow rate","Borrow rate change":"Borrow rate change","Borrow {symbol}":["Borrow ",["symbol"]],"Borrowable":"Borrowable","Borrowed":"Borrowed","Borrowed asset amount":"Borrowed asset amount","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["Borrowing is currently unavailable for ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"Borrowing is disabled due to an Aave community decision. <0>More details","Borrowing is not enabled":"Borrowing is not enabled","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for ",["0"]," category. To manage E-Mode categories visit your <0>Dashboard."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.","Borrowing power and assets are limited due to Isolation mode.":"Borrowing power and assets are limited due to Isolation mode.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Borrowing this amount will reduce your health factor and increase risk of liquidation.","Borrowing {symbol}":["Borrowing ",["symbol"]],"Both":"Both","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Buy Crypto With Fiat","Buy Crypto with Fiat":"Buy Crypto with Fiat","Buy {cryptoSymbol} with Fiat":["Buy ",["cryptoSymbol"]," with Fiat"],"COPIED!":"COPIED!","COPY IMAGE":"COPY IMAGE","Can be collateral":"Can be collateral","Can be executed":"Can be executed","Can't validate the wallet address. Try again.":"Can't validate the wallet address. Try again.","Cancel":"Cancel","Cannot disable E-Mode":"Cannot disable E-Mode","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.","Choose one of the on-ramp services":"Choose one of the on-ramp services","Claim":"Claim","Claim all":"Claim all","Claim all rewards":"Claim all rewards","Claim {0}":["Claim ",["0"]],"Claim {symbol}":["Claim ",["symbol"]],"Claimable AAVE":"Claimable AAVE","Claimed":"Claimed","Claiming":"Claiming","Claiming {symbol}":["Claiming ",["symbol"]],"Close":"Close","Collateral":"Collateral","Collateral balance after repay":"Collateral balance after repay","Collateral change":"Collateral change","Collateral is (mostly) the same currency that is being borrowed":"Collateral is (mostly) the same currency that is being borrowed","Collateral to repay with":"Collateral to repay with","Collateral usage":"Collateral usage","Collateral usage is limited because of Isolation mode.":"Collateral usage is limited because of Isolation mode.","Collateral usage is limited because of isolation mode.":"Collateral usage is limited because of isolation mode.","Collateral usage is limited because of isolation mode. <0>Learn More":"Collateral usage is limited because of isolation mode. <0>Learn More","Collateralization":"Collateralization","Collector Contract":"Collector Contract","Collector Info":"Collector Info","Confirm transaction":"Confirm transaction","Confirming transaction":"Confirming transaction","Connect":"Connect","Connect wallet":"Connect wallet","Cooldown period":"Cooldown period","Cooldown period warning":"Cooldown period warning","Cooldown time left":"Cooldown time left","Cooldown to unstake":"Cooldown to unstake","Cooling down...":"Cooling down...","Copy address":"Copy address","Copy error message":"Copy error message","Copy error text":"Copy error text","Covered debt":"Covered debt","Current LTV":"Current LTV","Current differential":"Current differential","Current v2 Balance":"Current v2 Balance","Current v2 balance":"Current v2 balance","Current votes":"Current votes","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.","Dark mode":"Dark mode","Dashboard":"Dashboard","Data couldn't be fetched, please reload graph.":"Data couldn't be fetched, please reload graph.","Debt":"Debt","Debt ceiling is exceeded":"Debt ceiling is exceeded","Debt ceiling is not zero":"Debt ceiling is not zero","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.","Delegated power":"Delegated power","Destination":"Destination","Details":"Details","Developers":"Developers","Differential":"Differential","Disable E-Mode":"Disable E-Mode","Disable fork":"Disable fork","Disable testnet":"Disable testnet","Disable {symbol} as collateral":["Disable ",["symbol"]," as collateral"],"Disabled":"Disabled","Disabling E-Mode":"Disabling E-Mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"Disabling this asset as collateral affects your borrowing power and Health Factor.","Disconnect Wallet":"Disconnect Wallet","Discord channel":"Discord channel","Discount":"Discount","Discount applied for <0/> staking AAVE":"Discount applied for <0/> staking AAVE","Discount model parameters":"Discount model parameters","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more","Discountable amount":"Discountable amount","Docs":"Docs","Download":"Download","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Edit","Effective interest rate":"Effective interest rate","Efficiency mode (E-Mode)":"Efficiency mode (E-Mode)","Eligible for the Merit program.":"Eligible for the Merit program.","Email":"Email","Emode":"Emode","Enable E-Mode":"Enable E-Mode","Enable {symbol} as collateral":["Enable ",["symbol"]," as collateral"],"Enabled":"Enabled","Enabling E-Mode":"Enabling E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.","English":"English","Enter ETH address":"Enter ETH address","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"Enter an amount","Error connecting. Try refreshing the page.":"Error connecting. Try refreshing the page.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["Estimated compounding interest, including discount for Staking ",["0"],"AAVE in Safety Module."],"Estimated time":"Estimated time","Exceeds the discount":"Exceeds the discount","Exchange rate":"Exchange rate","Expected amount to repay":"Expected amount to repay","Expires":"Expires","Export data to":"Export data to","FAQ":"FAQ","FAQS":"FAQS","Failed to load proposal voters. Please refresh the page.":"Failed to load proposal voters. Please refresh the page.","Faucet":"Faucet","Faucet {0}":["Faucet ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"Fetching data...","Filter":"Filter","Fixed rate":"Fixed rate","Flashloan is disabled for this asset, hence this position cannot be migrated.":"Flashloan is disabled for this asset, hence this position cannot be migrated.","For repayment of a specific type of debt, the user needs to have debt that type":"For repayment of a specific type of debt, the user needs to have debt that type","Fork mode is ON":"Fork mode is ON","Forum discussion":"Forum discussion","French":"French","Funds in the Safety Module":"Funds in the Safety Module","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.","Get ABP Token":"Get ABP Token","Get ABP v2 Token":"Get ABP v2 Token","Get GHO":"Get GHO","Global settings":"Global settings","Go Back":"Go Back","Go to Balancer Pool":"Go to Balancer Pool","Go to V3 Dashboard":"Go to V3 Dashboard","Governance":"Governance","Greek":"Greek","Health factor":"Health factor","Health factor is lesser than the liquidation threshold":"Health factor is lesser than the liquidation threshold","Health factor is not below the threshold":"Health factor is not below the threshold","Hide":"Hide","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Holders of stkAAVE receive a discount on the GHO borrowing rate","I acknowledge the risks involved.":"I acknowledge the risks involved.","I fully understand the risks of migrating.":"I fully understand the risks of migrating.","I understand how cooldown ({0}) and unstaking ({1}) work":["I understand how cooldown (",["0"],") and unstaking (",["1"],") work"],"If the error continues to happen,<0/> you may report it to this":"If the error continues to happen,<0/> you may report it to this","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"If the health factor goes below 1, the liquidation of your collateral might be triggered.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["If you DO NOT unstake within ",["0"]," of unstake window, you will need to activate cooldown process again."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable ",["0"]," as collateral before borrowing another asset. Read more in our <0>FAQ"],"Inconsistent flashloan parameters":"Inconsistent flashloan parameters","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.","Interest accrued":"Interest accrued","Interest rate rebalance conditions were not met":"Interest rate rebalance conditions were not met","Interest rate strategy":"Interest rate strategy","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more","Invalid amount to burn":"Invalid amount to burn","Invalid amount to mint":"Invalid amount to mint","Invalid bridge protocol fee":"Invalid bridge protocol fee","Invalid expiration":"Invalid expiration","Invalid flashloan premium":"Invalid flashloan premium","Invalid return value of the flashloan executor function":"Invalid return value of the flashloan executor function","Invalid signature":"Invalid signature","Isolated":"Isolated","Isolated Debt Ceiling":"Isolated Debt Ceiling","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"Isolated assets have limited borrowing power and other assets cannot be used as collateral.","Join the community discussion":"Join the community discussion","Language":"Language","Learn more":"Learn more","Learn more about risks involved":"Learn more about risks involved","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"Learn more in our <0>FAQ guide","Learn more.":"Learn more.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Linked addresses","Links":"Links","Liquidated collateral":"Liquidated collateral","Liquidation":"Liquidation","Liquidation <0/> threshold":"Liquidation <0/> threshold","Liquidation Threshold":"Liquidation Threshold","Liquidation at":"Liquidation at","Liquidation penalty":"Liquidation penalty","Liquidation risk":"Liquidation risk","Liquidation risk parameters":"Liquidation risk parameters","Liquidation threshold":"Liquidation threshold","Liquidation value":"Liquidation value","Loading data...":"Loading data...","Ltv validation failed":"Ltv validation failed","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details","MAX":"MAX","Manage E-Mode":"Manage E-Mode","Manage analytics":"Manage analytics","Market":"Market","Markets":"Markets","Max":"Max","Max LTV":"Max LTV","Max slashing":"Max slashing","Max slippage":"Max slippage","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["Maximum amount available to borrow against this asset is limited because debt ceiling is at ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["Maximum amount available to borrow is <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.","Maximum amount available to supply is <0/> {0} (<1/>).":["Maximum amount available to supply is <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["Maximum amount available to supply is limited because protocol supply cap is at ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"Maximum available to borrow","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Meet GHO","Menu":"Menu","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Migrate","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrate to V3","Migrate to stkABPT v2":"Migrate to stkABPT v2","Migrate to v3":"Migrate to v3","Migrate to {0} v3 Market":["Migrate to ",["0"]," v3 Market"],"Migrate your assets":"Migrate your assets","Migrated":"Migrated","Migrating":"Migrating","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.","Migration risks":"Migration risks","Minimum GHO borrow amount":"Minimum GHO borrow amount","Minimum USD value received":"Minimum USD value received","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Minimum amount received","Minimum staked Aave amount":"Minimum staked Aave amount","Minimum {0} received":["Minimum ",["0"]," received"],"More":"More","NAY":"NAY","Need help connecting a wallet? <0>Read our FAQ":"Need help connecting a wallet? <0>Read our FAQ","Net APR":"Net APR","Net APY":"Net APY","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.","Net worth":"Net worth","Network":"Network","Network not supported for this wallet":"Network not supported for this wallet","No assets selected to migrate.":"No assets selected to migrate.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"No rewards to claim","No search results{0}":["No search results",["0"]],"No transactions yet.":"No transactions yet.","No voting power":"No voting power","None":"None","Not a valid address":"Not a valid address","Not enough balance on your wallet":"Not enough balance on your wallet","Not enough collateral to repay this amount of debt with":"Not enough collateral to repay this amount of debt with","Not enough staked balance":"Not enough staked balance","Not enough voting power to participate in this proposal":"Not enough voting power to participate in this proposal","Not reached":"Not reached","Nothing borrowed yet":"Nothing borrowed yet","Nothing found":"Nothing found","Nothing staked":"Nothing staked","Nothing supplied yet":"Nothing supplied yet","Ok, Close":"Ok, Close","Operation not supported":"Operation not supported","Oracle price":"Oracle price","Overview":"Overview","Page not found":"Page not found","Participating in this {symbol} reserve gives annualized rewards.":["Participating in this ",["symbol"]," reserve gives annualized rewards."],"Pending...":"Pending...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.","Please connect a wallet to view your personal information here.":"Please connect a wallet to view your personal information here.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Please connect your wallet to be able to switch your tokens.","Please connect your wallet to get free testnet assets.":"Please connect your wallet to get free testnet assets.","Please connect your wallet to see migration tool.":"Please connect your wallet to see migration tool.","Please connect your wallet to see your supplies, borrowings, and open positions.":"Please connect your wallet to see your supplies, borrowings, and open positions.","Please connect your wallet to view transaction history.":"Please connect your wallet to view transaction history.","Please enter a valid wallet address.":"Please enter a valid wallet address.","Please switch to {networkName}.":["Please switch to ",["networkName"],"."],"Please, connect your wallet":"Please, connect your wallet","Pool addresses provider is not registered":"Pool addresses provider is not registered","Powered by":"Powered by","Preview tx and migrate":"Preview tx and migrate","Price":"Price","Price data is not currently available for this reserve on the protocol subgraph":"Price data is not currently available for this reserve on the protocol subgraph","Price impact":"Price impact","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.","Price impact {0}%":["Price impact ",["0"],"%"],"Privacy":"Privacy","Proposal details":"Proposal details","Proposal overview":"Proposal overview","Proposals":"Proposals","Proposition":"Proposition","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"Protocol supply cap at 100% for this asset. Further supply unavailable.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"Protocol supply cap is at 100% for this asset. Further supply unavailable.","Quorum":"Quorum","Rate change":"Rate change","Raw-Ipfs":"Raw-Ipfs","Reached":"Reached","Reactivate cooldown period to unstake {0} {stakedToken}":["Reactivate cooldown period to unstake ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.","Read-only mode.":"Read-only mode.","Read-only mode. Connect to a wallet to perform transactions.":"Read-only mode. Connect to a wallet to perform transactions.","Receive (est.)":"Receive (est.)","Received":"Received","Recent Transactions":"Recent Transactions","Recipient address":"Recipient address","Rejected connection request":"Rejected connection request","Reload":"Reload","Reload the page":"Reload the page","Remaining debt":"Remaining debt","Remaining supply":"Remaining supply","Remind me":"Remind me","Remove":"Remove","Repaid":"Repaid","Repay":"Repay","Repay with":"Repay with","Repay {symbol}":["Repay ",["symbol"]],"Repaying {symbol}":["Repaying ",["symbol"]],"Repayment amount to reach {0}% utilization":["Repayment amount to reach ",["0"],"% utilization"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Representative smart contract wallet (ie. Safe) addresses on other chains.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Representing smart contract wallet (ie. Safe) addresses on other chains.","Reserve Size":"Reserve Size","Reserve factor":"Reserve factor","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["Reserve factor is a percentage of interest which goes to a ",["0"]," that is controlled by Aave governance to promote ecosystem growth."],"Reserve status & configuration":"Reserve status & configuration","Reset":"Reset","Restake":"Restake","Restake {symbol}":["Restake ",["symbol"]],"Restaked":"Restaked","Restaking {symbol}":["Restaking ",["symbol"]],"Review approval tx details":"Review approval tx details","Review tx":"Review tx","Review tx details":"Review tx details","Revoke power":"Revoke power","Reward(s) to claim":"Reward(s) to claim","Rewards APR":"Rewards APR","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"Risk details","Safety of your deposited collateral against the borrowed assets and its underlying value.":"Safety of your deposited collateral against the borrowed assets and its underlying value.","Save and share":"Save and share","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"Seems like we can't switch the network automatically. Please check if you can change it from the wallet.","Select an asset":"Select an asset","Select language":"Select language","Select slippage tolerance":"Select slippage tolerance","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Selected assets have successfully migrated. Visit the Market Dashboard to see them.","Selected borrow assets":"Selected borrow assets","Selected supply assets":"Selected supply assets","Send Feedback":"Send Feedback","Send feedback":"Send feedback","Set up delegation":"Set up delegation","Share on Lens":"Share on Lens","Share on twitter":"Share on twitter","Show":"Show","Show Frozen or paused assets":"Show Frozen or paused assets","Show assets with 0 balance":"Show assets with 0 balance","Sign to continue":"Sign to continue","Signatures ready":"Signatures ready","Signing":"Signing","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Since this is a test network, you can get any of the assets if you have ETH on your wallet","Slippage":"Slippage","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Some migrated assets will not be used as collateral due to enabled isolation mode in ",["marketName"]," V3 Market. Visit <0>",["marketName"]," V3 Dashboard to manage isolation mode."],"Something went wrong":"Something went wrong","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.","Sorry, we couldn't find the page you were looking for.":"Sorry, we couldn't find the page you were looking for.","Source":"Source","Spanish":"Spanish","Stable":"Stable","Stable borrowing is enabled":"Stable borrowing is enabled","Stable borrowing is not enabled":"Stable borrowing is not enabled","Stable debt supply is not zero":"Stable debt supply is not zero","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.","Stablecoin":"Stablecoin","Stake":"Stake","Stake AAVE":"Stake AAVE","Stake ABPT":"Stake ABPT","Stake GHO":"Stake GHO","Stake cooldown activated":"Stake cooldown activated","Staked":"Staked","Staking":"Staking","Staking APR":"Staking APR","Staking Rewards":"Staking Rewards","Staking balance":"Staking balance","Staking discount":"Staking discount","State":"State","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Supplied","Supplied asset amount":"Supplied asset amount","Supplied assets":"Supplied assets","Supply":"Supply","Supply APY":"Supply APY","Supply apy":"Supply apy","Supply balance":"Supply balance","Supply balance after switch":"Supply balance after switch","Supply cap is exceeded":"Supply cap is exceeded","Supply cap on target reserve reached. Try lowering the amount.":"Supply cap on target reserve reached. Try lowering the amount.","Supply {symbol}":["Supply ",["symbol"]],"Supplying your":"Supplying your","Supplying {symbol}":["Supplying ",["symbol"]],"Switch":"Switch","Switch E-Mode":"Switch E-Mode","Switch Network":"Switch Network","Switch borrow position":"Switch borrow position","Switch to":"Switch to","Switched":"Switched","Switching":"Switching","Switching E-Mode":"Switching E-Mode","Techpaper":"Techpaper","Terms":"Terms","Test Assets":"Test Assets","Testnet mode":"Testnet mode","Testnet mode is ON":"Testnet mode is ON","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"Thank you for voting!!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.","The address of the pool addresses provider is invalid":"The address of the pool addresses provider is invalid","The app is running in fork mode.":"The app is running in fork mode.","The app is running in testnet mode. Learn how it works in":"The app is running in testnet mode. Learn how it works in","The caller of the function is not an AToken":"The caller of the function is not an AToken","The caller of this function must be a pool":"The caller of this function must be a pool","The collateral balance is 0":"The collateral balance is 0","The collateral chosen cannot be liquidated":"The collateral chosen cannot be liquidated","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["The cooldown period is ",["0"],". After ",["1"]," of cooldown, you will enter unstake window of ",["2"],". You will continue receiving rewards during cooldown and unstake window."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.","The requested amount is greater than the max loan size in stable rate mode":"The requested amount is greater than the max loan size in stable rate mode","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.","The underlying asset cannot be rescued":"The underlying asset cannot be rescued","The underlying balance needs to be greater than 0":"The underlying balance needs to be greater than 0","The weighted average of APY for all borrowed assets, including incentives.":"The weighted average of APY for all borrowed assets, including incentives.","The weighted average of APY for all supplied assets, including incentives.":"The weighted average of APY for all supplied assets, including incentives.","There are not enough funds in the{0}reserve to borrow":["There are not enough funds in the",["0"],"reserve to borrow"],"There is not enough collateral to cover a new borrow":"There is not enough collateral to cover a new borrow","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.","There was some error. Please try changing the parameters or <0><1>copy the error":"There was some error. Please try changing the parameters or <0><1>copy the error","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.","These funds have been borrowed and are not available for withdrawal at this time.":"These funds have been borrowed and are not available for withdrawal at this time.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.","This address is blocked on app.aave.com because it is associated with one or more":"This address is blocked on app.aave.com because it is associated with one or more","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["This asset has almost reached its borrow cap. There is only ",["messageValue"]," available to be borrowed from this market."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["This asset has almost reached its supply cap. There can only be ",["messageValue"]," supplied to this market."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"This asset has reached its supply cap. Nothing is available to be supplied from this market.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. <0>More details","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details","This asset is frozen due to an Aave community decision. <0>More details":"This asset is frozen due to an Aave community decision. <0>More details","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.","Time left to unstake":"Time left to unstake","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Tip: Try increasing slippage or reduce input amount","To":"To","To borrow you need to supply any asset to be used as collateral.":"To borrow you need to supply any asset to be used as collateral.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more","To repay on behalf of a user an explicit amount to repay is needed":"To repay on behalf of a user an explicit amount to repay is needed","To request access for this permissioned market, please visit: <0>Acces Provider Name":"To request access for this permissioned market, please visit: <0>Acces Provider Name","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.","Top 10 addresses":"Top 10 addresses","Total available":"Total available","Total borrowed":"Total borrowed","Total borrows":"Total borrows","Total emission per day":"Total emission per day","Total interest accrued":"Total interest accrued","Total market size":"Total market size","Total supplied":"Total supplied","Total worth":"Total worth","Track wallet":"Track wallet","Track wallet balance in read-only mode":"Track wallet balance in read-only mode","Transaction failed":"Transaction failed","Transaction history":"Transaction history","Transaction history is not currently available for this market":"Transaction history is not currently available for this market","Transaction overview":"Transaction overview","Transactions":"Transactions","Unavailable":"Unavailable","Unbacked":"Unbacked","Unbacked mint cap is exceeded":"Unbacked mint cap is exceeded","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["Underlying asset does not exist in ",["marketName"]," v3 Market, hence this position cannot be migrated."],"Underlying token":"Underlying token","Unstake":"Unstake","Unstake now":"Unstake now","Unstake window":"Unstake window","Unstake {symbol}":["Unstake ",["symbol"]],"Unstaked":"Unstaked","Unstaking {symbol}":["Unstaking ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Use it to vote for or against active proposals.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.","Used as collateral":"Used as collateral","User cannot withdraw more than the available balance":"User cannot withdraw more than the available balance","User did not borrow the specified currency":"User did not borrow the specified currency","User does not have outstanding stable rate debt on this reserve":"User does not have outstanding stable rate debt on this reserve","User does not have outstanding variable rate debt on this reserve":"User does not have outstanding variable rate debt on this reserve","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"User is trying to borrow multiple assets including a siloed one","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.","Utilization Rate":"Utilization Rate","VIEW TX":"VIEW TX","VOTE NAY":"VOTE NAY","VOTE YAE":"VOTE YAE","Variable":"Variable","Variable debt supply is not zero":"Variable debt supply is not zero","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Variable rate","Version 2":"Version 2","Version 3":"Version 3","View":"View","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"View Transactions","View all":"View all","View all votes":"View all votes","View contract":"View contract","View details":"View details","View on Explorer":"View on Explorer","Vote NAY":"Vote NAY","Vote YAE":"Vote YAE","Voted NAY":"Voted NAY","Voted YAE":"Voted YAE","Votes":"Votes","Voting":"Voting","Voting is on":"Voting is on","Voting power":"Voting power","Voting results":"Voting results","Wallet Balance":"Wallet Balance","Wallet balance":"Wallet balance","Wallet not detected. Connect or install wallet and retry":"Wallet not detected. Connect or install wallet and retry","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"We couldn’t detect a wallet. Connect a wallet to stake and view your balance.","We suggest you go back to the Dashboard.":"We suggest you go back to the Dashboard.","Website":"Website","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.","With a voting power of <0/>":"With a voting power of <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more","Withdraw":"Withdraw","Withdraw & Switch":"Withdraw & Switch","Withdraw and Switch":"Withdraw and Switch","Withdraw {symbol}":["Withdraw ",["symbol"]],"Withdrawing":"Withdrawing","Withdrawing and Switching":"Withdrawing and Switching","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Withdrawing this amount will reduce your health factor and increase risk of liquidation.","Withdrawing {symbol}":["Withdrawing ",["symbol"]],"Wrong Network":"Wrong Network","YAE":"YAE","You are entering Isolation mode":"You are entering Isolation mode","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"You can not switch usage as collateral mode for this currency, because it will cause collateral call","You can not use this currency as collateral":"You can not use this currency as collateral","You can not withdraw this amount because it will cause collateral call":"You can not withdraw this amount because it will cause collateral call","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.","You can report incident to our <0>Discord or<1>Github.":"You can report incident to our <0>Discord or<1>Github.","You cancelled the transaction.":"You cancelled the transaction.","You did not participate in this proposal":"You did not participate in this proposal","You do not have supplies in this currency":"You do not have supplies in this currency","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.","You have no AAVE/stkAAVE/aAave balance to delegate.":"You have no AAVE/stkAAVE/aAave balance to delegate.","You may borrow up to <0/> GHO at <1/> (max discount)":"You may borrow up to <0/> GHO at <1/> (max discount)","You may enter a custom amount in the field.":"You may enter a custom amount in the field.","You switched to {0} rate":["You switched to ",["0"]," rate"],"You unstake here":"You unstake here","You voted {0}":["You voted ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"You will exit isolation mode and other tokens can now be used as collateral","You {action} <0/> {symbol}":["You ",["action"]," <0/> ",["symbol"]],"You've successfully switched borrow position.":"You've successfully switched borrow position.","You've successfully switched tokens.":"You've successfully switched tokens.","You've successfully withdrew & switched tokens.":"You've successfully withdrew & switched tokens.","Your balance is lower than the selected amount.":"Your balance is lower than the selected amount.","Your borrows":"Your borrows","Your current loan to value based on your collateral supplied.":"Your current loan to value based on your collateral supplied.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.","Your info":"Your info","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.","Your reward balance is 0":"Your reward balance is 0","Your supplies":"Your supplies","Your voting info":"Your voting info","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Your voting power is based on your AAVE/stkAAVE balance and received delegations.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Your ",["name"]," wallet is empty. Purchase or transfer assets or use <0>",["0"]," to transfer your ",["network"]," assets."],"Your {name} wallet is empty. Purchase or transfer assets.":["Your ",["name"]," wallet is empty. Purchase or transfer assets."],"Your {networkName} wallet is empty. Get free test assets at":["Your ",["networkName"]," wallet is empty. Get free test assets at"],"Your {networkName} wallet is empty. Get free test {0} at":["Your ",["networkName"]," wallet is empty. Get free test ",["0"]," at"],"Zero address not valid":"Zero address not valid","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"assets","blocked activities":"blocked activities","copy the error":"copy the error","disabled":"disabled","documentation":"documentation","enabled":"enabled","ends":"ends","for":"for","of":"of","on":"on","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.","repaid":"repaid","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: ",["0"]],"staking view":"staking view","starts":"starts","stkAAVE holders get a discount on GHO borrow rate":"stkAAVE holders get a discount on GHO borrow rate","to":"to","tokens is not the same as staking them. If you wish to stake your":"tokens is not the same as staking them. If you wish to stake your","tokens, please go to the":"tokens, please go to the","withdrew":"withdrew","{0}":[["0"]],"{0} Balance":[["0"]," Balance"],"{0} Faucet":[["0"]," Faucet"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"d"],"{h}h":[["h"],"h"],"{label}":[["label"]],"{m}m":[["m"],"m"],"{networkName} Faucet":[["networkName"]," Faucet"],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," assets selected"],"{stepName}":[["stepName"]],"{s}s":[["s"],"s"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file diff --git a/src/locales/en/messages.po b/src/locales/en/messages.po index 81e3d6de04..0863138b52 100644 --- a/src/locales/en/messages.po +++ b/src/locales/en/messages.po @@ -1001,8 +1001,8 @@ msgid "Efficiency mode (E-Mode)" msgstr "Efficiency mode (E-Mode)" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." -msgstr "Eligible for the merit program." +msgid "Eligible for the Merit program." +msgstr "Eligible for the Merit program." #: src/layouts/FeedbackDialog.tsx msgid "Email" From f73b2cd0a013f531e38ff9df6d2d85f4c663f687 Mon Sep 17 00:00:00 2001 From: Crowdin bot Date: Wed, 11 Dec 2024 18:08:19 +0000 Subject: [PATCH 9/9] chore(i18n): synchronize translations from crowdin [skip cypress] --- src/locales/de/messages.po | 4 ++-- src/locales/el/messages.js | 2 +- src/locales/el/messages.po | 4 ++-- src/locales/es/messages.js | 2 +- src/locales/es/messages.po | 4 ++-- src/locales/fr/messages.js | 2 +- src/locales/fr/messages.po | 4 ++-- src/locales/ru/messages.po | 4 ++-- src/locales/zh/messages.po | 4 ++-- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/locales/de/messages.po b/src/locales/de/messages.po index fc9688a2c2..995325ef10 100644 --- a/src/locales/de/messages.po +++ b/src/locales/de/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: aave-interface\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-11-27 18:06\n" +"PO-Revision-Date: 2024-12-11 18:06\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1006,7 +1006,7 @@ msgid "Efficiency mode (E-Mode)" msgstr "Effizienz-Modus (E-Modus)" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." +msgid "Eligible for the Merit program." msgstr "" #: src/layouts/FeedbackDialog.tsx diff --git a/src/locales/el/messages.js b/src/locales/el/messages.js index afc704ff63..9af3e62a15 100644 --- a/src/locales/el/messages.js +++ b/src/locales/el/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":".CSV",".JSON":".JSON","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Add stkAAVE to see borrow rate with discount","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>Slippage tolerance <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.","APR":"APR","APY":"APY","APY change":"APY change","APY type":"Î€ÏÏ€ÎżÏ‚ APY","APY type change":"APY type change","APY with discount applied":"APY with discount applied","APY, borrow rate":"APY, borrow rate","APY, variable":"APY, ΌΔταÎČλητό","AToken supply is not zero":"Η Ï€ÏÎżÏƒÏ†ÎżÏÎŹ AToken ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșÎź","Aave Governance":"ΔÎčαÎșυÎČέρΜηση Aave","Aave aToken":"Aave aToken","Aave debt token":"Aave debt token","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance","Aave per month":"Aave Î±ÎœÎŹ ÎŒÎźÎœÎ±","About GHO":"About GHO","Account":"Î›ÎżÎłÎ±ÏÎčασΌός","Action cannot be performed because the reserve is frozen":"Η Î”ÎœÎ­ÏÎłÎ”Îčα ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ΔÎșÏ„Î”Î»Î”ÏƒÏ„Î”ÎŻ ΔπΔÎčÎŽÎź Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό έχΔÎč Ï€Î±ÎłÏŽÏƒÎ”Îč","Action cannot be performed because the reserve is paused":"Η Î”ÎœÎ­ÏÎłÎ”Îčα ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ΔÎșÏ„Î”Î»Î”ÏƒÏ„Î”ÎŻ ΔπΔÎčÎŽÎź η Î”Ï†Î”ÎŽÏÎ”ÎŻÎ± ÎČÏÎŻÏƒÎșΔταÎč σΔ παύση","Action requires an active reserve":"Η ÎŽÏÎŹÏƒÎ· απαÎčÏ„Î”ÎŻ Î”ÎœÎ”ÏÎłÏŒ απόΞΔΌα","Activate Cooldown":"Activate Cooldown","Add stkAAVE to see borrow APY with the discount":"Add stkAAVE to see borrow APY with the discount","Add to wallet":"Add to wallet","Add {0} to wallet to track your balance.":["Add ",["0"]," to wallet to track your balance."],"Address is not a contract":"Η ÎŽÎčΔύΞυΜση ΎΔΜ Î”ÎŻÎœÎ±Îč συΌÎČόλαÎčÎż","Addresses":"Addresses","Addresses ({0})":["Addresses (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"Όλα Î­Ï„ÎżÎčΌα!","All proposals":"ΌλΔς ÎżÎč Ï€ÏÎżÏ„ÎŹÏƒÎ”Îčς","All transactions":"All transactions","Allowance required action":"ΑπαÎčÏ„ÎżÏÎŒÎ”ÎœÎ· ÎŽÏÎŹÏƒÎ· ΔπÎčΎότησης","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"ÎŁÎ±Ï‚ ΔπÎčτρέπΔÎč Μα Î±Ï€ÎżÏ†Î±ÏƒÎŻÏƒÎ”Ï„Î” αΜ Ξα χρησÎčÎŒÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” έΜα Ï€Î±ÏÎ”Ï‡ÏŒÎŒÎ”ÎœÎż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ως Î”ÎłÎłÏÎ·ÏƒÎ·. ΈΜα πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż Ï€ÎżÏ… χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ως Î”ÎłÎłÏÎ·ÏƒÎ· Ξα Î”Ï€Î·ÏÎ”ÎŹÏƒÎ”Îč τη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź σας ÎčÎșαΜότητα ÎșαÎč Ï„ÎżÎœ ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„Îź Ï…ÎłÎ”ÎŻÎ±Ï‚.","Amount":"Î ÎżÏƒÏŒ","Amount After Fee":"Amount After Fee","Amount claimable":"Amount claimable","Amount in cooldown":"Amount in cooldown","Amount must be greater than 0":"΀ο Ï€ÎżÏƒÏŒ πρέπΔÎč Μα Î”ÎŻÎœÎ±Îč ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎż από 0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Amount to migrate","Amount to unstake":"Amount to unstake","An error has occurred fetching the proposal.":"An error has occurred fetching the proposal.","Approve Confirmed":"Approve Confirmed","Approve with":"Approve with","Approve {symbol} to continue":["Approve ",["symbol"]," to continue"],"Approving {symbol}...":["ΈγÎșρÎčση Ï„ÎżÏ… ",["symbol"],"..."],"Array parameters that should be equal length are not":"ΟÎč Ï€Î±ÏÎŹÎŒÎ”Ï„ÏÎżÎč της ÏƒÏ…ÏƒÏ„ÎżÎčÏ‡ÎŻÎ±Ï‚ Ï€ÎżÏ… Ξα έπρΔπΔ Μα Î”ÎŻÎœÎ±Îč ÎŻÏƒÎżÏ… ÎŒÎźÎșÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.","Asset":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.","Asset can only be used as collateral in isolation mode only.":"To πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ÎŒÏ€ÎżÏÎ”ÎŻ Μα χρησÎčÎŒÎżÏ€ÎżÎčηΞΔί ως Î”ÎłÎłÏÎ·ÏƒÎ· ÎŒÏŒÎœÎż σΔ λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["Asset cannot be migrated because you have isolated collateral in ",["marketName"]," v3 Market which limits borrowable assets. You can manage your collateral in <0>",["marketName"]," V3 Dashboard"],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in ",["marketName"]," v3 market."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["Asset cannot be migrated due to supply cap restriction in ",["marketName"]," v3 market."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["Asset cannot be migrated to ",["marketName"]," V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["Asset cannot be migrated to ",["marketName"]," v3 Market since collateral asset will enable isolation mode."],"Asset cannot be used as collateral.":"΀ο πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα χρησÎčÎŒÎżÏ€ÎżÎčηΞΔί ως Î”ÎłÎłÏÎ·ÏƒÎ·.","Asset category":"ÎšÎ±Ï„Î·ÎłÎżÏÎŻÎ± πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["Asset is frozen in ",["marketName"]," v3 market, hence this position cannot be migrated."],"Asset is not borrowable in isolation mode":"΀ο πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎ±ÎœÎ”ÎŻÏƒÎčÎŒÎż σΔ λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚","Asset is not listed":"΀ο πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ πΔρÎčλαΌÎČÎŹÎœÎ”Ï„Î±Îč ÏƒÏ„ÎżÎœ ÎșÎ±Ï„ÎŹÎ»ÎżÎłÎż","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.","Assets":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÎŁÏ„ÎżÎčÏ‡Î”ÎŻÎ±","Assets to borrow":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Ï€ÏÎżÏ‚ ΎαΜΔÎčσΌό","Assets to supply":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Ï€ÏÎżÏ‚ Ï€ÏÎżÎŒÎźÎžÎ”Îčα","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"At a discount","Available":"ΔÎčαΞέσÎčÎŒÎż","Available liquidity":"ΔÎčαΞέσÎčΌη ρΔυστότητα","Available on":"Available on","Available rewards":"ΔÎčαΞέσÎčΌΔς Î±ÎœÏ„Î±ÎŒÎżÎčÎČές","Available to borrow":"ΔÎčαΞέσÎčÎŒÎż ÎłÎčα ΎαΜΔÎčσΌό","Available to supply":"ΔÎčαΞέσÎčÎŒÎż ÎłÎčα Ï€ÏÎżÎŒÎźÎžÎ”Îčα","Back to Dashboard":"Back to Dashboard","Balance":"Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż","Balance to revoke":"Balance to revoke","Balancer Pool":"Balancer Pool","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Î ÏÎżÏƒÎżÏ‡Îź - Î•ÎŻÏƒÏ„Î” Ï€ÎżÎ»Ï ÎșÎżÎœÏ„ÎŹ στηΜ ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·. Î•ÎŸÎ”Ï„ÎŹÏƒÏ„Î” Ï„Îż Î”ÎœÎŽÎ”Ï‡ÏŒÎŒÎ”ÎœÎż Μα ÎșαταΞέσΔτΔ πΔρÎčσσότΔρΔς Î”ÎłÎłÏ…ÎźÏƒÎ”Îčς Îź Μα Î”ÎŸÎżÏ†Î»ÎźÏƒÎ”Ï„Î” ÎșÎŹÏ€ÎżÎčΔς από τÎčς ΎαΜΔÎčαÎșές σας ΞέσΔÎčς","Be mindful of the network congestion and gas prices.":"Be mindful of the network congestion and gas prices.","Because this asset is paused, no actions can be taken until further notice":"Because this asset is paused, no actions can be taken until further notice","Before supplying":"ΠρÎčÎœ από τηΜ Ï€ÏÎżÎŒÎźÎžÎ”Îčα","Blocked Address":"Blocked Address","Borrow":"ΔαΜΔÎčσΌός","Borrow APY":"Borrow APY","Borrow APY, variable":"ΔαΜΔÎčσΌός APY, ΌΔταÎČλητό","Borrow amount to reach {0}% utilization":["Borrow amount to reach ",["0"],"% utilization"],"Borrow and repay in same block is not allowed":"ΔΔΜ ΔπÎčτρέπΔταÎč Îż ΎαΜΔÎčσΌός ÎșαÎč η Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ÏƒÏ„Îż ÎŻÎŽÎčÎż block","Borrow apy":"Borrow apy","Borrow balance":"Borrow balance","Borrow balance after repay":"Borrow balance after repay","Borrow balance after switch":"Borrow balance after switch","Borrow cap":"Î‘ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ","Borrow cap is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… ΎαΜΔÎčÏƒÎŒÎżÏ","Borrow info":"Borrow info","Borrow power used":"ΔαΜΔÎčσΌός χρησÎčÎŒÎżÏ€ÎżÎčηΌέΜης ÎčÏƒÏ‡ÏÎżÏ‚","Borrow rate":"Borrow rate","Borrow rate change":"Borrow rate change","Borrow {symbol}":["ΔαΜΔÎčσΌός ",["symbol"]],"Borrowable":"Borrowable","Borrowed":"Borrowed","Borrowed asset amount":"Borrowed asset amount","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč Î”Ï€ÎŻ Ï„ÎżÏ… Ï€Î±ÏÏŒÎœÏ„ÎżÏ‚ ÎŽÎčαΞέσÎčÎŒÎżÏ‚ ÎłÎčα ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"Borrowing is disabled due to an Aave community decision. <0>More details","Borrowing is not enabled":"Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎżÏ‚","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎżÏ‚ ΔπΔÎčÎŽÎź έχΔτΔ Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎźÏƒÎ”Îč τη ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode) ÎșαÎč τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚. ΓÎčα Μα ÎŽÎčαχΔÎčρÎčÏƒÏ„Î”ÎŻÏ„Î” τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± E-Mode ÎșαÎč τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚, ΔπÎčσÎșÎ”Ï†ÎžÎ”ÎŻÏ„Î” Ï„ÎżÎœ <0>Î ÎŻÎœÎ±Îșα Î”Î»Î­ÎłÏ‡ÎżÏ….","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎżÏ‚ ΔπΔÎčÎŽÎź έχΔτΔ Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎźÏƒÎ”Îč τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode) ÎłÎčα τηΜ ÎșÎ±Ï„Î·ÎłÎżÏÎŻÎ± ",["0"],". ΓÎčα Μα ÎŽÎčαχΔÎčρÎčÏƒÏ„Î”ÎŻÏ„Î” τÎčς ÎșÎ±Ï„Î·ÎłÎżÏÎŻÎ”Ï‚ E-Mode ΔπÎčσÎșÎ”Ï†ÎžÎ”ÎŻÏ„Î” Ï„ÎżÎœ <0>Î ÎŻÎœÎ±Îșα Î”Î»Î­ÎłÏ‡ÎżÏ…."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.","Borrowing power and assets are limited due to Isolation mode.":"Η ΎύΜαΌη ΎαΜΔÎčÏƒÎŒÎżÏ ÎșαÎč τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Î”ÎŻÎœÎ±Îč πΔρÎčÎżÏÎčσΌέΜα Î»ÏŒÎłÏ‰ της λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±Ï‚ Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Borrowing this amount will reduce your health factor and increase risk of liquidation.","Borrowing {symbol}":["ΔαΜΔÎčσΌός ",["symbol"]],"Both":"Both","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Buy Crypto With Fiat","Buy Crypto with Fiat":"Buy Crypto with Fiat","Buy {cryptoSymbol} with Fiat":["Buy ",["cryptoSymbol"]," with Fiat"],"COPIED!":"COPIED!","COPY IMAGE":"COPY IMAGE","Can be collateral":"ÎœÏ€ÎżÏÎ”ÎŻ Μα Î±Ï€ÎżÏ„Î”Î»Î­ÏƒÎ”Îč Î”ÎłÎłÏÎ·ÏƒÎ·","Can be executed":"ÎœÏ€ÎżÏÎ”ÎŻ Μα ΔÎșÏ„Î”Î»Î”ÏƒÏ„Î”ÎŻ","Can't validate the wallet address. Try again.":"Can't validate the wallet address. Try again.","Cancel":"Cancel","Cannot disable E-Mode":"Cannot disable E-Mode","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.","Choose one of the on-ramp services":"Choose one of the on-ramp services","Claim":"ΔÎčΔÎșÎŽÎŻÎșηση","Claim all":"ΔÎčΔÎșÎŽÎčÎșÎźÏƒÏ„Î” τα όλα","Claim all rewards":"ΔÎčΔÎșÎŽÎčÎșÎźÏƒÏ„Î” όλΔς τÎčς Î±ÎœÏ„Î±ÎŒÎżÎčÎČές","Claim {0}":["ΔÎčΔÎșÎŽÎŻÎșηση ",["0"]],"Claim {symbol}":["ΔÎčΔÎșÎŽÎŻÎșηση ",["symbol"]],"Claimable AAVE":"ΔÎčΔÎșÎŽÎčÎșÎźÏƒÎčÎŒÎż AAVE","Claimed":"Claimed","Claiming":"ΔÎčΔÎșÎŽÎŻÎșηση","Claiming {symbol}":["Claiming ",["symbol"]],"Close":"ÎšÎ»Î”ÎŻÏƒÎčÎŒÎż","Collateral":"Î•ÎłÎłÏÎ·ÏƒÎ·","Collateral balance after repay":"Collateral balance after repay","Collateral change":"Collateral change","Collateral is (mostly) the same currency that is being borrowed":"Η Î”ÎłÎłÏÎ·ÏƒÎ· Î”ÎŻÎœÎ±Îč (ως Î”Ï€ÎŻ Ï„Îż Ï€Î»Î”ÎŻÏƒÏ„ÎżÎœ) Ï„Îż ÎŻÎŽÎčÎż ΜόΌÎčσΌα Ï€ÎżÏ… ÎŽÎ±ÎœÎ”ÎŻÎ¶Î”Ï„Î±Îč","Collateral to repay with":"Collateral to repay with","Collateral usage":"ΧρησÎčÎŒÎżÏ€ÎżÎŻÎ·ÏƒÎ· Î”ÎłÎłÏ…ÎźÏƒÎ”Ï‰Îœ","Collateral usage is limited because of Isolation mode.":"H Ï‡ÏÎźÏƒÎ· Î”ÎłÎłÏ…ÎźÏƒÎ”Ï‰Îœ Î”ÎŻÎœÎ±Îč πΔρÎčÎżÏÎčσΌέΜη Î»ÏŒÎłÏ‰ της λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±Ï‚ Î‘Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚.","Collateral usage is limited because of isolation mode.":"Collateral usage is limited because of isolation mode.","Collateral usage is limited because of isolation mode. <0>Learn More":"Η Ï‡ÏÎźÏƒÎ· Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚ Î”ÎŻÎœÎ±Îč πΔρÎčÎżÏÎčσΌέΜη Î»ÏŒÎłÏ‰ της λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±Ï‚ Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚. <0>ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα","Collateralization":"Î•ÎŸÎ±ÏƒÏ†ÎŹÎ»Îčση","Collector Contract":"Collector Contract","Collector Info":"Collector Info","Confirm transaction":"Confirm transaction","Confirming transaction":"Confirming transaction","Connect":"Connect","Connect wallet":"ÎŁÏ…ÎœÎŽÎ­ÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč","Cooldown period":"Î Î”ÏÎŻÎżÎŽÎżÏ‚ ψύΟης","Cooldown period warning":"Î ÏÎżÎ”ÎčÎŽÎżÏ€ÎżÎŻÎ·ÏƒÎ· πΔρÎčÏŒÎŽÎżÏ… ψύΟης","Cooldown time left":"Î§ÏÏŒÎœÎżÏ‚ ψύΟης Ï€ÎżÏ… έχΔÎč Î±Ï€ÎżÎŒÎ”ÎŻÎœÎ”Îč","Cooldown to unstake":"ΚύΟτΔ ÎłÎčα ΟΔÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±","Cooling down...":"ΚύΟη...","Copy address":"ΑΜτÎčÎłÏÎ±Ï†Îź ÎŽÎčΔύΞυΜσης","Copy error message":"Copy error message","Copy error text":"ÎšÎ”ÎŻÎŒÎ”ÎœÎż ÏƒÏ†ÎŹÎ»ÎŒÎ±Ï„ÎżÏ‚ αΜτÎčÎłÏÎ±Ï†ÎźÏ‚","Covered debt":"Covered debt","Current LTV":"Î€ÏÎ­Ï‡ÎżÎœ LTV","Current differential":"Î€ÏÎ­Ï‡ÎżÎœ ÎŽÎčÎ±Ï†ÎżÏÎčÎșό","Current v2 Balance":"Current v2 Balance","Current v2 balance":"Current v2 balance","Current votes":"Î€ÏÎ­Ï‡ÎżÏ…ÏƒÎ”Ï‚ ÏˆÎźÏ†ÎżÎč","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.","Dark mode":"ÎŁÎșÎżÏ„Î”ÎčÎœÎź λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±","Dashboard":"΀αΌπλό","Data couldn't be fetched, please reload graph.":"Data couldn't be fetched, please reload graph.","Debt":"Î§ÏÎ­ÎżÏ‚","Debt ceiling is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… Ï‡ÏÎ­ÎżÏ…Ï‚","Debt ceiling is not zero":"΀ο Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż Ï‡ÏÎ­ÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșό","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.","Delegated power":"Delegated power","Destination":"Destination","Details":"Î›Î”Ï€Ï„ÎżÎŒÎ­ÏÎ”ÎčΔς","Developers":"Î ÏÎżÎłÏÎ±ÎŒÎŒÎ±Ï„Îčστές","Differential":"ΔÎčÎ±Ï†ÎżÏÎčÎșό","Disable E-Mode":"Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Disable fork":"Disable fork","Disable testnet":"Disable testnet","Disable {symbol} as collateral":["Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· ",["symbol"]," ως Î”ÎłÎłÏÎ·ÏƒÎ·"],"Disabled":"Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","Disabling E-Mode":"Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"Η Î±Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… πΔρÎčÎżÏ…ÏƒÎčαÎșÎżÏ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎżÏ… ως Î”ÎłÎłÏÎ·ÏƒÎ· Î”Ï€Î·ÏÎ”ÎŹÎ¶Î”Îč τη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź σας ÎčÎșαΜότητα ÎșαÎč Ï„ÎżÎœ ÎŁÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„Îź Î„ÎłÎ”ÎŻÎ±Ï‚.","Disconnect Wallet":"Î‘Ï€ÎżÏƒÏ…ÎœÎŽÎ­ÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč","Discord channel":"Discord channel","Discount":"Discount","Discount applied for <0/> staking AAVE":"Discount applied for <0/> staking AAVE","Discount model parameters":"Discount model parameters","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more","Discountable amount":"Discountable amount","Docs":"Docs","Download":"Download","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"΀ο E-Mode Î±Ï…ÎŸÎŹÎœÎ”Îč Ï„Îż LTV σας ÎłÎčα ÎŒÎčα ΔπÎčÎ»Î”ÎłÎŒÎ­ÎœÎ· ÎșÎ±Ï„Î·ÎłÎżÏÎŻÎ± πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ έως ÎșαÎč <0/>. <1>ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Edit","Effective interest rate":"Effective interest rate","Efficiency mode (E-Mode)":"ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode)","Eligible for the merit program.":"Eligible for the merit program.","Email":"Email","Emode":"Emode","Enable E-Mode":"Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Enable {symbol} as collateral":["Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· ",["symbol"]," ως Î”ÎłÎłÏÎ·ÏƒÎ·"],"Enabled":"Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","Enabling E-Mode":"Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"Η Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… πΔρÎčÎżÏ…ÏƒÎčαÎșÎżÏ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎżÏ… ως Î”ÎłÎłÏÎ·ÏƒÎ· Î±Ï…ÎŸÎŹÎœÎ”Îč τη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź σας ÎčÎșαΜότητα ÎșαÎč Ï„ÎżÎœ ÎŁÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„Îź Î„ÎłÎ”ÎŻÎ±Ï‚. Î©ÏƒÏ„ÏŒÏƒÎż, ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί Î”ÎŹÎœ Îż ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ σας πέσΔÎč ÎșÎŹÏ„Ï‰ από Ï„Îż 1.","English":"ΑγγλÎčÎșÎŹ","Enter ETH address":"ΕÎčÏƒÎŹÎłÎ”Ï„Î” ÎŽÎčΔύΞυΜση ETH","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"ΕÎčÏƒÎŹÎłÎ”Ï„Î” έΜα Ï€ÎżÏƒÏŒ","Error connecting. Try refreshing the page.":"ÎŁÏ†ÎŹÎ»ÎŒÎ± σύΜΎΔσης. ΔοÎșÎčÎŒÎŹÏƒÏ„Î” Μα αΜαΜΔώσΔτΔ τη ÏƒÎ”Î»ÎŻÎŽÎ±.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["Estimated compounding interest, including discount for Staking ",["0"],"AAVE in Safety Module."],"Estimated time":"Estimated time","Exceeds the discount":"Exceeds the discount","Exchange rate":"Exchange rate","Expected amount to repay":"Expected amount to repay","Expires":"ΛΟγΔÎč","Export data to":"Export data to","FAQ":"ÎŁÎ„Î§ÎÎ•ÎŁ ΕΥΩ΀ΗΣΕΙΣ","FAQS":"FAQS","Failed to load proposal voters. Please refresh the page.":"Failed to load proposal voters. Please refresh the page.","Faucet":"Βρύση","Faucet {0}":["Βρύση ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"Fetching data...","Filter":"ÎŠÎŻÎ»Ï„ÏÎż","Fixed rate":"Fixed rate","Flashloan is disabled for this asset, hence this position cannot be migrated.":"Flashloan is disabled for this asset, hence this position cannot be migrated.","For repayment of a specific type of debt, the user needs to have debt that type":"ΓÎčα τηΜ Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ΔΜός ÏƒÏ…ÎłÎșΔÎșρÎčÎŒÎ­ÎœÎżÏ… Ï„ÏÏ€ÎżÏ… Ï‡ÏÎ­ÎżÏ…Ï‚, Îż Ï‡ÏÎźÏƒÏ„Î·Ï‚ πρέπΔÎč Μα έχΔÎč Ï‡ÏÎ­ÎżÏ‚ Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… Ï„ÏÏ€ÎżÏ…","Fork mode is ON":"Fork mode is ON","Forum discussion":"ÎŁÏ…Î¶ÎźÏ„Î·ÏƒÎ· Ï†ÏŒÏÎżÏ…ÎŒ","French":"ΓαλλÎčÎșÎŹ","Funds in the Safety Module":"ÎšÎ”Ï†ÎŹÎ»Î±Îčα στηΜ ÎœÎżÎœÎŹÎŽÎ± Î‘ÏƒÏ†ÎŹÎ»Î”Îčας","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.","Get ABP Token":"Get ABP Token","Get ABP v2 Token":"Get ABP v2 Token","Get GHO":"Get GHO","Global settings":"ΓΔΜÎčÎșές ÏÏ…ÎžÎŒÎŻÏƒÎ”Îčς","Go Back":"Î Î·ÎłÎ±ÎŻÎœÎ”Ï„Î” Î ÎŻÏƒÏ‰","Go to Balancer Pool":"Go to Balancer Pool","Go to V3 Dashboard":"Go to V3 Dashboard","Governance":"ΔÎčαÎșυÎČέρΜηση","Greek":"Greek","Health factor":"ÎŁÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚","Health factor is lesser than the liquidation threshold":"Ο ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ Î”ÎŻÎœÎ±Îč ÎŒÎčÎșÏÏŒÏ„Î”ÏÎżÏ‚ από Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Health factor is not below the threshold":"Ο Ï€Î±ÏÎŹÎłÎżÎœÏ„Î±Ï‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ÎșÎŹÏ„Ï‰ από Ï„Îż όρÎčÎż","Hide":"ΑπόÎșρυψη","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Holders of stkAAVE receive a discount on the GHO borrowing rate","I acknowledge the risks involved.":"I acknowledge the risks involved.","I fully understand the risks of migrating.":"I fully understand the risks of migrating.","I understand how cooldown ({0}) and unstaking ({1}) work":["ΚαταλαÎČÎ±ÎŻÎœÏ‰ πώς λΔÎčÏ„ÎżÏ…ÏÎłÎ”ÎŻ η ψύΟη (",["0"],") ÎșαÎč Ï„Îż ΟΔÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ± (",["1"],")"],"If the error continues to happen,<0/> you may report it to this":"If the error continues to happen,<0/> you may report it to this","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"Î•ÎŹÎœ Îż ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ πέσΔÎč ÎșÎŹÏ„Ï‰ από Ï„Îż 1, ΔΜΎέχΔταÎč Μα Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčηΞΔί η ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· τωΜ Î”ÎłÎłÏ…ÎźÏƒÎ”ÏŽÎœ σας.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["Î•ÎŹÎœ ΔΕΝ ΟΔÎșλΔÎčΎώσΔτΔ ΔΜτός ",["0"]," Ï„ÎżÏ… Ï€Î±ÏÎ±ÎžÏÏÎżÏ… ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚, Ξα πρέπΔÎč Μα Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” ÎŸÎ±ÎœÎŹ τη ÎŽÎčαΎÎčÎșÎ±ÏƒÎŻÎ± ψύΟης."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"Î•ÎŹÎœ Ï„Îż ÎŽÎŹÎœÎ”ÎčÎż Ï€ÏÎżÏ‚ Î±ÎŸÎŻÎ± υπΔρÎČΔί Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚, η παρΔχόΌΔΜη Î”ÎłÎłÏÎ·ÏƒÎ· σας ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"ÎŁÏ„Îż E-Mode ÎżÏÎčσΌέΜα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎ±ÎœÎ”ÎŻÏƒÎčΌα. Î’ÎłÎ”ÎŻÏ„Î” από Ï„Îż E-Mode ÎłÎčα Μα Î±Ï€ÎżÎșÏ„ÎźÏƒÎ”Ï„Î” πρόσÎČαση σΔ όλα τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable ",["0"]," as collateral before borrowing another asset. Read more in our <0>FAQ"],"Inconsistent flashloan parameters":"Î‘ÏƒÏ…ÎœÎ”Ï€Î”ÎŻÏ‚ Ï€Î±ÏÎŹÎŒÎ”Ï„ÏÎżÎč flashloan","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.","Interest accrued":"Interest accrued","Interest rate rebalance conditions were not met":"ΔΔΜ Ï„Î·ÏÎźÎžÎ·ÎșαΜ ÎżÎč ÏŒÏÎżÎč ΔπαΜΔΟÎčÏƒÎżÏÏÏŒÏ€Î·ÏƒÎ·Ï‚ τωΜ ΔπÎčÏ„ÎżÎșÎŻÏ‰Îœ","Interest rate strategy":"Interest rate strategy","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more","Invalid amount to burn":"Μη έγÎșυρη Ï€ÎżÏƒÏŒÏ„Î·Ï„Î± Ï€ÏÎżÏ‚ Îșαύση","Invalid amount to mint":"Μη έγÎșÏ…ÏÎż Ï€ÎżÏƒÏŒ ÎłÎčα ÎœÎżÎŒÎčÏƒÎŒÎ±Ï„ÎżÎșÎżÏ€ÎŻÎ±","Invalid bridge protocol fee":"Μη έγÎșυρη Î±ÎŒÎżÎčÎČÎź Ï€ÏÏ‰Ï„ÎżÎșÏŒÎ»Î»ÎżÏ… ÎłÎ­Ï†Ï…ÏÎ±Ï‚","Invalid expiration":"Μη έγÎșυρη Î»ÎźÎŸÎ·","Invalid flashloan premium":"ΆÎșυρη πρÎčÎŒÎżÎŽÏŒÏ„Î·ÏƒÎ· flashloan","Invalid return value of the flashloan executor function":"Μη έγÎșυρη τÎčÎŒÎź ΔπÎčÏƒÏ„ÏÎżÏ†ÎźÏ‚ της ÏƒÏ…ÎœÎŹÏÏ„Î·ÏƒÎ·Ï‚ ΔÎșÏ„Î”Î»Î”ÏƒÏ„Îź flashloan","Invalid signature":"Μη έγÎșυρη Ï…Ï€ÎżÎłÏÎ±Ï†Îź","Isolated":"Î‘Ï€ÎżÎŒÎżÎœÏ‰ÎŒÎ­ÎœÎż","Isolated Debt Ceiling":"Isolated Debt Ceiling","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"΀α Î±Ï€ÎżÎŒÎżÎœÏ‰ÎŒÎ­ÎœÎ± πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Î­Ï‡ÎżÏ…Îœ πΔρÎčÎżÏÎčσΌέΜη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź ÎčÎșαΜότητα ÎșαÎč Ώλλα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± ΎΔΜ ÎŒÏ€ÎżÏÎżÏÎœ Μα χρησÎčÎŒÎżÏ€ÎżÎčÎ·ÎžÎżÏÎœ ως Î”ÎłÎłÏÎ·ÏƒÎ·.","Join the community discussion":"Join the community discussion","Language":"Γλώσσα","Learn more":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα","Learn more about risks involved":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα ÎłÎčα Ï„ÎżÏ…Ï‚ ÎșÎčÎœÎŽÏÎœÎżÏ…Ï‚","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα ÏƒÏ„ÎżÎœ ÎżÎŽÎ·ÎłÏŒ <0>ÎŁÏ…Ï‡ÎœÏŽÎœ Î•ÏÏ‰Ï„ÎźÏƒÎ”Ï‰Îœ","Learn more.":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Linked addresses","Links":"ÎŁÏÎœÎŽÎ”ÏƒÎŒÎżÎč","Liquidated collateral":"Liquidated collateral","Liquidation":"Liquidation","Liquidation <0/> threshold":"ÎĄÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· <0/> ÎșÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż","Liquidation Threshold":"Liquidation Threshold","Liquidation at":"ÎĄÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· ÏƒÏ„Îż","Liquidation penalty":"ΠοÎčÎœÎź ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Liquidation risk":"Liquidation risk","Liquidation risk parameters":"Liquidation risk parameters","Liquidation threshold":"ÎšÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Liquidation value":"Î‘ÎŸÎŻÎ± ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Loading data...":"Loading data...","Ltv validation failed":"Η ΔπÎčÎșύρωση Ï„ÎżÏ… Ltv απέτυχΔ","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details","MAX":"ÎœÎ•Î“Î™ÎŁÎ€ÎŸ","Manage E-Mode":"Manage E-Mode","Manage analytics":"Manage analytics","Market":"Î‘ÎłÎżÏÎŹ","Markets":"Î‘ÎłÎżÏÎ­Ï‚","Max":"ÎœÎ”ÎłÎčÏƒÏ„Îż","Max LTV":"ΜέγÎčÏƒÏ„Îż LTV","Max slashing":"ΜέγÎčστη πΔρÎčÎșÎżÏ€Îź","Max slippage":"Max slippage","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["Maximum amount available to borrow against this asset is limited because debt ceiling is at ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["Maximum amount available to borrow is <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.","Maximum amount available to supply is <0/> {0} (<1/>).":["Maximum amount available to supply is <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["Maximum amount available to supply is limited because protocol supply cap is at ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"Maximum available to borrow","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Meet GHO","Menu":"ÎœÎ”ÎœÎżÏ","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Migrate","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrate to V3","Migrate to stkABPT v2":"Migrate to stkABPT v2","Migrate to v3":"Migrate to v3","Migrate to {0} v3 Market":["Migrate to ",["0"]," v3 Market"],"Migrate your assets":"Migrate your assets","Migrated":"Migrated","Migrating":"Migrating","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.","Migration risks":"Migration risks","Minimum GHO borrow amount":"Minimum GHO borrow amount","Minimum USD value received":"Minimum USD value received","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Minimum amount received","Minimum staked Aave amount":"Minimum staked Aave amount","Minimum {0} received":["Minimum ",["0"]," received"],"More":"ΠΔρÎčσσότΔρα","NAY":"ΚΑ΀Α","Need help connecting a wallet? <0>Read our FAQ":"ΧρΔÎčÎŹÎ¶Î”ÏƒÏ„Î” ÎČοΟΞΔÎčα ÎłÎčα τη σύΜΎΔση ΔΜός Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ; <0>ΔÎčαÎČÎŹÏƒÏ„Î” τÎčς ÎŁÏ…Ï‡ÎœÎ­Ï‚ Î•ÏÏ‰Ï„ÎźÏƒÎ”Îčς Όας","Net APR":"ΚαΞαρό APR","Net APY":"ΚαΞαρό APY","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"΀ο ÎșαΞαρό ΑΥ΄ Î”ÎŻÎœÎ±Îč η συΜΎυασΌέΜη Î”Ï€ÎŻÎŽÏÎ±ÏƒÎ· όλωΜ τωΜ ΞέσΔωΜ Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚ ÎșαÎč ΎαΜΔÎčÏƒÎŒÎżÏ στηΜ ÎșÎ±ÎžÎ±ÏÎź Î±ÎŸÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÏ‰Îœ τωΜ ÎșÎčÎœÎźÏ„ÏÏ‰Îœ. Î•ÎŻÎœÎ±Îč ΎυΜατόΜ Μα Ï…Ï€ÎŹÏÏ‡Î”Îč αρΜητÎčÎșό ÎșαΞαρό APY Î”ÎŹÎœ Ï„Îż χρΔωστÎčÎșό APY Î”ÎŻÎœÎ±Îč Ï…ÏˆÎ·Î»ÏŒÏ„Î”ÏÎż από Ï„Îż Ï€ÏÎżÏƒÏ†Î”ÏÏŒÎŒÎ”ÎœÎż APY.","Net worth":"ÎšÎ±ÎžÎ±ÏÎź Î±ÎŸÎŻÎ±","Network":"ΔίÎșÏ„Ï…Îż","Network not supported for this wallet":"ΔίÎșÏ„Ï…Îż Ï€ÎżÏ… ΎΔΜ Ï…Ï€ÎżÏƒÏ„Î·ÏÎŻÎ¶Î”Ï„Î±Îč ÎłÎčα αυτό Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč","No assets selected to migrate.":"No assets selected to migrate.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ Î±ÎœÏ„Î±ÎŒÎżÎčÎČές ÎłÎčα ÎŽÎčΔÎșÎŽÎŻÎșηση","No search results{0}":["No search results",["0"]],"No transactions yet.":"No transactions yet.","No voting power":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡Î”Îč ÎŽÎčÎșÎ±ÎŻÏ‰ÎŒÎ± ÏˆÎźÏ†ÎżÏ…","None":"ΚαΜέΜα","Not a valid address":"Μη έγÎșυρη ÎŽÎčΔύΞυΜση","Not enough balance on your wallet":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡Î”Îč αρÎșΔτό Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας","Not enough collateral to repay this amount of debt with":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ ΔπαρÎșÎ”ÎŻÏ‚ Î”ÎłÎłÏ…ÎźÏƒÎ”Îčς ÎłÎčα τηΜ Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… Ï€ÎżÏƒÎżÏ Ï‡ÏÎ­ÎżÏ…Ï‚ ΌΔ","Not enough staked balance":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡Î”Îč αρÎșΔτό ÎșλΔÎčÎŽÏ‰ÎŒÎ­ÎœÎż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż","Not enough voting power to participate in this proposal":"ΔΔΜ έχΔÎč αρÎșÎ”Ï„Îź ΎύΜαΌη ÏˆÎźÏ†ÎżÏ… ÎłÎčα Μα ÏƒÏ…ÎŒÎŒÎ”Ï„ÎŹÏƒÏ‡Î”Îč στηΜ Ï€Î±ÏÎżÏÏƒÎ± πρόταση","Not reached":"ΔΔΜ έχΔÎč ΔπÎčÏ„Î”Ï…Ï‡ÎžÎ”ÎŻ","Nothing borrowed yet":"Î€ÎŻÏ€ÎżÏ„Î± ΎαΜΔÎčÏƒÎŒÎ­ÎœÎż αÎșόΌα","Nothing found":"Nothing found","Nothing staked":"Î€ÎŻÏ€ÎżÏ„Î± ÎșλΔÎčÎŽÏ‰ÎŒÎ­ÎœÎż","Nothing supplied yet":"Î€ÎŻÏ€ÎżÏ„Î± ΎΔΜ έχΔÎč Ï€Î±ÏÎ±ÏƒÏ‡Î”ÎžÎ”ÎŻ αÎșόΌη","Ok, Close":"Î•ÎœÏ„ÎŹÎŸÎ”Îč, ÎšÎ»Î”ÎŻÏƒÎčÎŒÎż","Operation not supported":"Η λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± ΎΔΜ Ï…Ï€ÎżÏƒÏ„Î·ÏÎŻÎ¶Î”Ï„Î±Îč","Oracle price":"΀ÎčÎŒÎź Oracle","Overview":"ΕπÎčσÎșόπηση","Page not found":"Page not found","Participating in this {symbol} reserve gives annualized rewards.":["Η ÏƒÏ…ÎŒÎŒÎ”Ï„ÎżÏ‡Îź σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό ",["symbol"]," ÎŽÎŻÎœÎ”Îč Î”Ï„ÎźÏƒÎčΔς Î±ÎœÏ„Î±ÎŒÎżÎčÎČές."],"Pending...":"ΕÎșÎșÏÎ”ÎŒÎ”ÎŻ...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.","Please connect a wallet to view your personal information here.":"ΠαραÎșÎ±Î»ÎżÏÎŒÎ” συΜΎέστΔ έΜα Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ÎłÎčα Μα ÎŽÎ”ÎŻÏ„Î” τÎčς Ï€ÏÎżÏƒÏ‰Ï€ÎčÎșές σας Ï€Î»Î·ÏÎżÏ†ÎżÏÎŻÎ”Ï‚ ΔΎώ.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Please connect your wallet to be able to switch your tokens.","Please connect your wallet to get free testnet assets.":"Please connect your wallet to get free testnet assets.","Please connect your wallet to see migration tool.":"Please connect your wallet to see migration tool.","Please connect your wallet to see your supplies, borrowings, and open positions.":"ÎŁÏ…ÎœÎŽÎ­ÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας ÎłÎčα Μα ÎŽÎ”ÎŻÏ„Î” τÎčς Ï€ÏÎżÎŒÎźÎžÎ”ÎčΔς, τα ÎŽÎŹÎœÎ”Îčα ÎșαÎč τÎčς Î±ÎœÎżÎčχτές ΞέσΔÎčς σας.","Please connect your wallet to view transaction history.":"Please connect your wallet to view transaction history.","Please enter a valid wallet address.":"Please enter a valid wallet address.","Please switch to {networkName}.":["ΠαραÎșαλώ ΌΔταÎČÎ”ÎŻÏ„Î” ÏƒÏ„Îż ",["networkName"],"."],"Please, connect your wallet":"ΠαραÎșαλώ, συΜΎέστΔ Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας","Pool addresses provider is not registered":"Ο Ï€ÎŹÏÎżÏ‡ÎżÏ‚ ÎŽÎčΔυΞύΜσΔωΜ ÎșÎżÎčΜόχρηστωΜ Ï„Î±ÎŒÎ”ÎŻÏ‰Îœ ΎΔΜ Î”ÎŻÎœÎ±Îč Î”ÎłÎłÎ”ÎłÏÎ±ÎŒÎŒÎ­ÎœÎżÏ‚","Powered by":"Powered by","Preview tx and migrate":"Preview tx and migrate","Price":"Price","Price data is not currently available for this reserve on the protocol subgraph":"Price data is not currently available for this reserve on the protocol subgraph","Price impact":"Î•Ï€ÎŻÎŽÏÎ±ÏƒÎ· στηΜ τÎčÎŒÎź","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.","Price impact {0}%":["Price impact ",["0"],"%"],"Privacy":"Privacy","Proposal details":"Î›Î”Ï€Ï„ÎżÎŒÎ­ÏÎ”ÎčΔς πρότασης","Proposal overview":"ΕπÎčσÎșόπηση πρότασης","Proposals":"Î ÏÎżÏ„ÎŹÏƒÎ”Îčς","Proposition":"Proposition","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"Protocol supply cap at 100% for this asset. Further supply unavailable.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"Protocol supply cap is at 100% for this asset. Further supply unavailable.","Quorum":"Î‘Ï€Î±ÏÏ„ÎŻÎ±","Rate change":"Rate change","Raw-Ipfs":"Raw-Ipfs","Reached":"ΕπÎčτΔύχΞηÎșΔ","Reactivate cooldown period to unstake {0} {stakedToken}":["Reactivate cooldown period to unstake ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.","Read-only mode.":"Read-only mode.","Read-only mode. Connect to a wallet to perform transactions.":"Read-only mode. Connect to a wallet to perform transactions.","Receive (est.)":"Receive (est.)","Received":"Received","Recent Transactions":"Recent Transactions","Recipient address":"ΔÎčΔύΞυΜση Ï€Î±ÏÎ±Î»ÎźÏ€Ï„Î·","Rejected connection request":"ΑπόρρÎčψη αÎčÏ„ÎźÎŒÎ±Ï„ÎżÏ‚ σύΜΎΔσης","Reload":"Reload","Reload the page":"Reload the page","Remaining debt":"Î„Ï€ÎżÎ»Î”ÎčÏ€ÏŒÎŒÎ”ÎœÎż Ï‡ÏÎ­ÎżÏ‚","Remaining supply":"Î„Ï€ÎżÎ»Î”ÎčπόΌΔΜη Ï€ÏÎżÏƒÏ†ÎżÏÎŹ","Remind me":"Remind me","Remove":"Remove","Repaid":"Repaid","Repay":"Î‘Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź","Repay with":"Î‘Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ΌΔ","Repay {symbol}":["Î‘Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ",["symbol"]],"Repaying {symbol}":["Î‘Ï€ÎżÏ€Î»Î·ÏÏŽÎœÎżÎœÏ„Î±Ï‚ ",["symbol"]],"Repayment amount to reach {0}% utilization":["Repayment amount to reach ",["0"],"% utilization"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Representative smart contract wallet (ie. Safe) addresses on other chains.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Representing smart contract wallet (ie. Safe) addresses on other chains.","Reserve Size":"ÎœÎ­ÎłÎ”ÎžÎżÏ‚ Î‘Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșÎżÏ","Reserve factor":"Reserve factor","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["Reserve factor is a percentage of interest which goes to a ",["0"]," that is controlled by Aave governance to promote ecosystem growth."],"Reserve status & configuration":"ÎšÎ±Ï„ÎŹÏƒÏ„Î±ÏƒÎ· & ÎŽÎčαΌόρφωση Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșÎżÏ","Reset":"Reset","Restake":"Restake","Restake {symbol}":["Restake ",["symbol"]],"Restaked":"Restaked","Restaking {symbol}":["Restaking ",["symbol"]],"Review approval tx details":"ΑΜαΞΔώρηση Î»Î”Ï€Ï„ÎżÎŒÎ”ÏÎ”ÎčώΜ έγÎșρÎčσης ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Review tx":"ΑΜαΞΔώρηση ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Review tx details":"ΑΜαΞΔώρηση Î»Î”Ï€Ï„ÎżÎŒÎ”ÏÎ”ÎčώΜ ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Revoke power":"Revoke power","Reward(s) to claim":"Î‘ÎœÏ„Î±ÎŒÎżÎčÎČÎź(Δς) Ï€ÏÎżÏ‚ ÎŽÎčΔÎșÎŽÎŻÎșηση","Rewards APR":"Î‘ÎœÏ„Î±ÎŒÎżÎčÎČές APR","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"Î›Î”Ï€Ï„ÎżÎŒÎ­ÏÎ”ÎčΔς ÎșÎčÎœÎŽÏÎœÎżÏ…","Safety of your deposited collateral against the borrowed assets and its underlying value.":"Î‘ÏƒÏ†ÎŹÎ»Î”Îčα τωΜ ÎșατατΔΞΔÎčΌέΜωΜ Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”ÏŽÎœ σας έΜαΜτÎč τωΜ ΎαΜΔÎčζόΌΔΜωΜ πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ ÎșαÎč της Ï…Ï€ÎżÎșÎ”ÎŻÎŒÎ”ÎœÎ·Ï‚ Î±ÎŸÎŻÎ±Ï‚ Ï„ÎżÏ…Ï‚.","Save and share":"Save and share","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"ÎŠÎ±ÎŻÎœÎ”Ï„Î±Îč ότÎč ΎΔΜ ÎŒÏ€ÎżÏÎżÏÎŒÎ” Μα Î±Î»Î»ÎŹÎŸÎżÏ…ÎŒÎ” Ï„Îż ÎŽÎŻÎșÏ„Ï…Îż αυτόΌατα. Î•Î»Î­ÎłÎŸÏ„Î” αΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï„Îż Î±Î»Î»ÎŹÎŸÎ”Ï„Î” από Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč.","Select an asset":"Select an asset","Select language":"ΕπÎčλέΟτΔ ÎłÎ»ÏŽÏƒÏƒÎ±","Select slippage tolerance":"Select slippage tolerance","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Selected assets have successfully migrated. Visit the Market Dashboard to see them.","Selected borrow assets":"Selected borrow assets","Selected supply assets":"Selected supply assets","Send Feedback":"Send Feedback","Send feedback":"Send feedback","Set up delegation":"Set up delegation","Share on Lens":"Share on Lens","Share on twitter":"ΜοÎčÏÎ±ÏƒÏ„Î”ÎŻÏ„Î” Ï„Îż ÏƒÏ„Îż twitter","Show":"Î•ÎŒÏ†ÎŹÎœÎčση","Show Frozen or paused assets":"Show Frozen or paused assets","Show assets with 0 balance":"Î•ÎŒÏ†ÎŹÎœÎčση πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ ΌΔ Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż 0","Sign to continue":"Sign to continue","Signatures ready":"Signatures ready","Signing":"Signing","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Î”Î”ÎŽÎżÎŒÎ­ÎœÎżÏ… ότÎč πρόÎșΔÎčταÎč ÎłÎčα έΜα ÎŽÎżÎșÎčΌαστÎčÎșό ÎŽÎŻÎșÏ„Ï…Îż, ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Ï€ÎżÎșÏ„ÎźÏƒÎ”Ï„Î” ÎżÏ€ÎżÎčÎżÎŽÎźÏ€ÎżÏ„Î” από τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± αΜ έχΔτΔ ETH ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας","Slippage":"Slippage","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Some migrated assets will not be used as collateral due to enabled isolation mode in ",["marketName"]," V3 Market. Visit <0>",["marketName"]," V3 Dashboard to manage isolation mode."],"Something went wrong":"Something went wrong","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.","Sorry, we couldn't find the page you were looking for.":"Sorry, we couldn't find the page you were looking for.","Source":"Source","Spanish":"ΙσπαΜÎčÎșÎŹ","Stable":"ÎŁÏ„Î±ÎžÎ”ÏÏŒ","Stable borrowing is enabled":"Ο σταΞΔρός ΎαΜΔÎčσΌός Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎżÏ‚","Stable borrowing is not enabled":"Ο σταΞΔρός ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎżÏ‚","Stable debt supply is not zero":"Η ÏƒÏ„Î±ÎžÎ”ÏÎź Ï€ÏÎżÏƒÏ†ÎżÏÎŹ Ï‡ÏÎ­ÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșÎź","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"΀ο σταΞΔρό ΔπÎčτόÎșÎčÎż Ξα <0>ÎŒÎ”ÎŻÎœÎ”Îč Ï„Îż ÎŻÎŽÎčÎż ÎłÎčα όλη τη ÎŽÎčÎŹÏÎșΔÎčα Ï„ÎżÏ… ÎŽÎ±ÎœÎ”ÎŻÎżÏ… σας. ÎŁÏ…ÎœÎčÏƒÏ„ÎŹÏ„Î±Îč ÎłÎčα ΌαÎșÏÎżÏ‡ÏÏŒÎœÎčΔς πΔρÎčÏŒÎŽÎżÏ…Ï‚ ΎαΜΔÎčÏƒÎŒÎżÏ ÎșαÎč ÎłÎčα Ï‡ÏÎźÏƒÏ„Î”Ï‚ Ï€ÎżÏ… Ï€ÏÎżÏ„ÎčÎŒÎżÏÎœ τηΜ Ï€ÏÎżÎČλΔψÎčΌότητα.","Stablecoin":"ÎŁÏ„Î±ÎžÎ”ÏÏŒ ΜόΌÎčσΌα","Stake":"ΚλΔÎčΎώστΔ","Stake AAVE":"Stake AAVE","Stake ABPT":"Stake ABPT","Stake GHO":"Stake GHO","Stake cooldown activated":"Stake cooldown activated","Staked":"ΚλΔÎčÎŽÏ‰ÎŒÎ­ÎœÎż","Staking":"ÎšÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±","Staking APR":"ÎšÎ»Î”ÎŻÎŽÏ‰ÎŒÎ± APR","Staking Rewards":"Staking Rewards","Staking balance":"Staking balance","Staking discount":"Staking discount","State":"ÎšÎ±Ï„ÎŹÏƒÏ„Î±ÏƒÎ·","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Supplied","Supplied asset amount":"Supplied asset amount","Supplied assets":"Supplied assets","Supply":"Î ÏÎżÏƒÏ†ÎżÏÎŹ","Supply APY":"Î ÏÎżÏƒÏ†ÎżÏÎŹ APY","Supply apy":"Î ÏÎżÏƒÏ†ÎżÏÎŹ apy","Supply balance":"Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚","Supply balance after switch":"Supply balance after switch","Supply cap is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚","Supply cap on target reserve reached. Try lowering the amount.":"Î•Ï€ÎŻÏ„Î”Ï…ÎŸÎ· Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… Î”Ï†ÎżÎŽÎčÎ±ÏƒÎŒÎżÏ ÏƒÏ„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό-ÏƒÏ„ÏŒÏ‡Îż. ΔοÎșÎčÎŒÎŹÏƒÏ„Î” Μα \nΌΔÎčώσΔτΔ τηΜ Ï€ÎżÏƒÏŒÏ„Î·Ï„Î±.","Supply {symbol}":["Î ÏÎżÏƒÏ†ÎżÏÎŹ ",["symbol"]],"Supplying your":"Î ÏÎżÎŒÎ·ÎžÎ”ÏÎżÎœÏ„Î±Ï‚ Ï„Îż","Supplying {symbol}":["Î Î±ÏÎżÏ‡Îź ",["symbol"]],"Switch":"Switch","Switch E-Mode":"Switch E-Mode","Switch Network":"ΑλλαγΟ ΔÎčÎșÏ„ÏÎżÏ…","Switch borrow position":"Switch borrow position","Switch to":"Switch to","Switched":"Switched","Switching":"Switching","Switching E-Mode":"Switching E-Mode","Techpaper":"Techpaper","Terms":"Terms","Test Assets":"Test Assets","Testnet mode":"ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Testnet","Testnet mode is ON":"Testnet mode is ON","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"Thank you for voting!!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"΀ο % της ÏƒÏ…ÎœÎżÎ»ÎčÎșÎźÏ‚ ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎźÏ‚ σας ΎύΜαΌης Ï€ÎżÏ… χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč. Αυτό ÎČÎ±ÏƒÎŻÎ¶Î”Ï„Î±Îč ÏƒÏ„Îż Ï€ÎżÏƒÏŒ της παρΔχόΌΔΜης Î”ÎŸÎ±ÏƒÏ†ÎŹÎ»ÎčÏƒÎźÏ‚ σας ÎșαÎč ÏƒÏ„Îż ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î”.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"Ο ΎΔίÎșτης ÎŒÎ­ÎłÎčÏƒÏ„ÎżÏ… LTV αΜτÎčÏ€ÏÎżÏƒÏ‰Ï€Î”ÏÎ”Îč τη ÎŒÎ­ÎłÎčστη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź ÎčÎșαΜότητα ÎŒÎčας ÏƒÏ…ÎłÎșΔÎșρÎčΌέΜης Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚. ΓÎčα Ï€Î±ÏÎŹÎŽÎ”ÎčÎłÎŒÎ±, Î”ÎŹÎœ ÎŒÎčα Î”ÎłÎłÏÎ·ÏƒÎ· έχΔÎč LTV 75%, Îż Ï‡ÏÎźÏƒÏ„Î·Ï‚ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻ έως ÎșαÎč 0,75 ETH ÏƒÏ„Îż ÎșύρÎčÎż ΜόΌÎčσΌα ÎłÎčα ÎșΏΞΔ 1 ETH Î±ÎŸÎŻÎ±Ï‚ Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚.","The address of the pool addresses provider is invalid":"Η ÎŽÎčΔύΞυΜση Ï„ÎżÏ… Ï€Î±ÏÏŒÏ‡ÎżÏ… ÎŽÎčΔυΞύΜσΔωΜ ÎșÎżÎčÎœÏŒÏ‡ÏÎ·ÏƒÏ„ÎżÏ… Ï„Î±ÎŒÎ”ÎŻÎżÏ… Î”ÎŻÎœÎ±Îč ÎŹÎșυρη","The app is running in fork mode.":"The app is running in fork mode.","The app is running in testnet mode. Learn how it works in":"The app is running in testnet mode. Learn how it works in","The caller of the function is not an AToken":"Ο ÎșαλώΜ της ÏƒÏ…ÎœÎŹÏÏ„Î·ÏƒÎ·Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč AToken","The caller of this function must be a pool":"Ο ÎșαλώΜ Î±Ï…Ï„ÎźÏ‚ της ÏƒÏ…ÎœÎŹÏÏ„Î·ÏƒÎ·Ï‚ πρέπΔÎč Μα Î”ÎŻÎœÎ±Îč έΜα ÎșÎżÎčÎœÏŒÏ‡ÏÎ·ÏƒÏ„Îż Ï„Î±ÎŒÎ”ÎŻÎż","The collateral balance is 0":"΀ο Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż τωΜ Î”ÎłÎłÏ…ÎźÏƒÎ”Ï‰Îœ Î”ÎŻÎœÎ±Îč 0","The collateral chosen cannot be liquidated":"Η Î”ÎłÎłÏÎ·ÏƒÎ· Ï€ÎżÏ… έχΔÎč ΔπÎčλΔγΔί ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["Η Ï€Î”ÏÎŻÎżÎŽÎżÏ‚ ψύΟης Î”ÎŻÎœÎ±Îč ",["0"],". ÎœÎ”Ï„ÎŹ τηΜ ",["1"]," Ï€Î”ÏÎŻÎżÎŽÎż ψύΟης, Ξα ΔÎčσέλΞΔτΔ ÏƒÏ„Îż Ï€Î±ÏÎŹÎžÏ…ÏÎż ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚ ",["2"],". Θα ÏƒÏ…ÎœÎ”Ï‡ÎŻÏƒÎ”Ï„Î” Μα λαΌÎČÎŹÎœÎ”Ï„Î” Î±ÎœÏ„Î±ÎŒÎżÎčÎČές ÎșÎ±Ï„ÎŹ τη ÎŽÎčÎŹÏÎșΔÎčα της ψύΟης ÎșαÎč Ï„ÎżÏ… Ï€Î±ÏÎ±ÎžÏÏÎżÏ… ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.","The requested amount is greater than the max loan size in stable rate mode":"΀ο αÎčÏ„ÎżÏÎŒÎ”ÎœÎż Ï€ÎżÏƒÏŒ Î”ÎŻÎœÎ±Îč ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎż από Ï„Îż ÎŒÎ­ÎłÎčÏƒÏ„Îż ÎŒÎ­ÎłÎ”ÎžÎżÏ‚ ÎŽÎ±ÎœÎ”ÎŻÎżÏ… στη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± ÏƒÏ„Î±ÎžÎ”ÏÎżÏ ΔπÎčÏ„ÎżÎșÎŻÎżÏ…","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"΀ο ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ τωΜ πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ σας ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ σΔ ÎŽÎżÎ»ÎŹÏÎčα ΗΠΑ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎżÏÎœ Μα χρησÎčÎŒÎżÏ€ÎżÎčÎ·ÎžÎżÏÎœ ως Î”ÎłÎłÏÎ·ÏƒÎ· ÎłÎčα ΎαΜΔÎčσΌό πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ.","The underlying asset cannot be rescued":"΀ο Ï…Ï€ÎżÎșÎ”ÎŻÎŒÎ”ÎœÎż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÎŽÎčÎ±ÏƒÏ‰ÎžÎ”ÎŻ","The underlying balance needs to be greater than 0":"΀ο Ï…Ï€ÎżÎșÎ”ÎŻÎŒÎ”ÎœÎż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż πρέπΔÎč Μα Î”ÎŻÎœÎ±Îč ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎż από 0","The weighted average of APY for all borrowed assets, including incentives.":"Ο σταΞΌÎčÏƒÎŒÎ­ÎœÎżÏ‚ ÎŒÎ­ÏƒÎżÏ‚ ÏŒÏÎżÏ‚ Ï„ÎżÏ… APY ÎłÎčα όλα τα ΎαΜΔÎčαÎșÎŹ πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÏ‰Îœ τωΜ ÎșÎčÎœÎźÏ„ÏÏ‰Îœ.","The weighted average of APY for all supplied assets, including incentives.":"Ο σταΞΌÎčÏƒÎŒÎ­ÎœÎżÏ‚ ÎŒÎ­ÏƒÎżÏ‚ ÏŒÏÎżÏ‚ Ï„ÎżÏ… APY ÎłÎčα όλα τα παρΔχόΌΔΜα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÏ‰Îœ τωΜ ÎșÎčÎœÎźÏ„ÏÏ‰Îœ.","There are not enough funds in the{0}reserve to borrow":["ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ αρÎșÎ”Ï„ÎŹ ÎșÎ”Ï†ÎŹÎ»Î±Îčα ÏƒÏ„Îż",["0"],"Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό ÎłÎčα ΎαΜΔÎčσΌό"],"There is not enough collateral to cover a new borrow":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ ΔπαρÎșÎ”ÎŻÏ‚ Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς ÎłÎčα τηΜ ÎșÎŹÎ»Ï…ÏˆÎ· ΔΜός ÎœÎ­ÎżÏ… ÎŽÎ±ÎœÎ”ÎŻÎżÏ…","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.","There was some error. Please try changing the parameters or <0><1>copy the error":"Î„Ï€ÎźÏÎŸÎ” ÎșÎŹÏ€ÎżÎčÎż ÏƒÏ†ÎŹÎ»ÎŒÎ±. Î ÏÎżÏƒÏ€Î±ÎžÎźÏƒÏ„Î” Μα Î±Î»Î»ÎŹÎŸÎ”Ï„Î” τÎčς Ï€Î±ÏÎ±ÎŒÎ­Ï„ÏÎżÏ…Ï‚ Îź <0><1>αΜτÎčÎłÏÎŹÏˆÏ„Î” Ï„Îż ÏƒÏ†ÎŹÎ»ÎŒÎ±","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.","These funds have been borrowed and are not available for withdrawal at this time.":"΀α ÎșÎ”Ï†ÎŹÎ»Î±Îčα Î±Ï…Ï„ÎŹ Î­Ï‡ÎżÏ…Îœ ΎαΜΔÎčÏƒÏ„Î”ÎŻ ÎșαÎč ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčΌα ÎłÎčα Î±ÎœÎŹÎ»Î·ÏˆÎ· Î±Ï…Ï„Îź τη στÎčÎłÎŒÎź.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.","This address is blocked on app.aave.com because it is associated with one or more":"This address is blocked on app.aave.com because it is associated with one or more","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč σχΔΎόΜ Ï†Ï„ÎŹÏƒÎ”Îč ÏƒÏ„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ Ï„ÎżÏ…. Î„Ï€ÎŹÏÏ‡Î”Îč ÎŒÏŒÎœÎż ",["messageValue"]," ÎŽÎčαΞέσÎčÎŒÎż ÎłÎčα ΎαΜΔÎčσΌό από Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč σχΔΎόΜ Ï†Ï„ÎŹÏƒÎ”Îč ÏƒÏ„Îż όρÎčÎż της Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚ Ï„ÎżÏ…. ÎœÏŒÎœÎż ",["messageValue"]," ÎŒÏ€ÎżÏÎ”ÎŻ Μα Ï€Î±ÏÎ±ÏƒÏ‡Î”ÎžÎ”ÎŻ σΔ Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč Ï†ÎžÎŹÏƒÎ”Îč ÏƒÏ„Îż Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ Ï„ÎżÏ…. Î€ÎŻÏ€ÎżÏ„Î± ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎż ÎłÎčα ΎαΜΔÎčσΌό από Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč Ï†Ï„ÎŹÏƒÎ”Îč ÏƒÏ„Îż όρÎčÎż της Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚ Ï„ÎżÏ…. Î€ÎŻÏ€ÎżÏ„Î± ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎż ÎłÎčα Ï€ÏÎżÎŒÎźÎžÎ”Îčα από Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. <0>More details","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details","This asset is frozen due to an Aave community decision. <0>More details":"This asset is frozen due to an Aave community decision. <0>More details","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"Αυτός Îż Ï…Ï€ÎżÎ»ÎżÎłÎčσΌός gas Î”ÎŻÎœÎ±Îč ÎŒÏŒÎœÎż ÎŒÎčα ΔÎșÏ„ÎŻÎŒÎ·ÏƒÎ·. ΀ο Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας Ξα ÎșÎ±ÎžÎżÏÎŻÏƒÎ”Îč τηΜ τÎčÎŒÎź της ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚. ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï„ÏÎżÏ€ÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” τÎčς ÏÏ…ÎžÎŒÎŻÏƒÎ”Îčς gas Î±Ï€Î”Ï…ÎžÎ”ÎŻÎ±Ï‚ από Ï„ÎżÎœ Ï€ÎŹÏÎżÏ‡Îż Ï„ÎżÏ… Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ σας.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"Αυτό Î”ÎŻÎœÎ±Îč Ï„Îż ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î”. ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î” ΌΔ ÎČÎŹÏƒÎ· τηΜ Î”ÎŸÎ±ÏƒÏ†ÎŹÎ»ÎčÏƒÎź σας ÎșαÎč ΌέχρÎč Μα ΔπÎčÏ„Î”Ï…Ï‡ÎžÎ”ÎŻ Ï„Îż Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"Αυτό Î”ÎŻÎœÎ±Îč Ï„Îż ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï€ÏÎżÎŒÎ·ÎžÎ”ÏÏƒÎ”Ï„Î” σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό. ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï€ÏÎżÎŒÎ·ÎžÎ”ÏÏƒÎ”Ï„Î” Ï„Îż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż Ï„ÎżÏ… Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ σας ΌέχρÎč Μα ΔπÎčÏ„Î”Ï…Ï‡ÎžÎ”ÎŻ Ï„Îż Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż Ï€ÏÎżÎŒÎ·ÎžÎ”ÎčώΜ.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"Αυτό αΜτÎčÏ€ÏÎżÏƒÏ‰Ï€Î”ÏÎ”Îč Ï„Îż ÎșÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż ÏƒÏ„Îż ÎżÏ€ÎżÎŻÎż ÎŒÎčα Ξέση ΎαΜΔÎčÏƒÎŒÎżÏ Ξα ÎžÎ”Ï‰ÏÎ·ÎžÎ”ÎŻ Ï…Ï€ÎżÎ”ÎłÎłÏ…Î·ÎŒÎ­ÎœÎ· ÎșαÎč Ξα υπόÎșΔÎčταÎč σΔ ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· ÎłÎčα ÎșΏΞΔ Î”ÎłÎłÏÎ·ÏƒÎ·. ΓÎčα Ï€Î±ÏÎŹÎŽÎ”ÎčÎłÎŒÎ±, Î”ÎŹÎœ ÎŒÎčα Î”ÎłÎłÏÎ·ÏƒÎ· έχΔÎč ÎșÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚ 80%, αυτό ÏƒÎ·ÎŒÎ±ÎŻÎœÎ”Îč ότÎč η Ξέση Ξα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί όταΜ η Î±ÎŸÎŻÎ± Ï„ÎżÏ… Ï‡ÏÎ­ÎżÏ…Ï‚ αΜέρχΔταÎč ÏƒÏ„Îż 80% της Î±ÎŸÎŻÎ±Ï‚ της Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚.","Time left to unstake":"Î§ÏÏŒÎœÎżÏ‚ Ï€ÎżÏ… Î±Ï€ÎżÎŒÎ­ÎœÎ”Îč ÎłÎčα Ï„Îż ΟΔÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Tip: Try increasing slippage or reduce input amount","To":"To","To borrow you need to supply any asset to be used as collateral.":"ΓÎčα Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î” πρέπΔÎč Μα Ï€ÏÎżÏƒÎșÎżÎŒÎŻÏƒÎ”Ï„Î” ÎżÏ€ÎżÎčÎżÎŽÎźÏ€ÎżÏ„Î” πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż Ï€ÎżÏ… Ξα χρησÎčÎŒÎżÏ€ÎżÎčηΞΔί ως Î”ÎłÎłÏÎ·ÏƒÎ·.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more","To repay on behalf of a user an explicit amount to repay is needed":"ΓÎčα τηΜ ΔΟόφληση ΔÎș ÎŒÎ­ÏÎżÏ…Ï‚ ΔΜός Ï‡ÏÎźÏƒÏ„Î· απαÎčÏ„Î”ÎŻÏ„Î±Îč έΜα ρητό Ï€ÎżÏƒÏŒ Ï€ÏÎżÏ‚ ΔΟόφληση","To request access for this permissioned market, please visit: <0>Acces Provider Name":"ΓÎčα Μα Î¶Î·Ï„ÎźÏƒÎ”Ï„Î” πρόσÎČαση σΔ Î±Ï…Ï„Îź τηΜ αΎΔÎčÎżÎŽÎżÏ„Î·ÎŒÎ­ÎœÎ· Î±ÎłÎżÏÎŹ, ΔπÎčσÎșÎ”Ï†ÎžÎ”ÎŻÏ„Î” τηΜ ÎčÏƒÏ„ÎżÏƒÎ”Î»ÎŻÎŽÎ±: <0>ÎŒÎœÎżÎŒÎ± Î Î±ÏÏŒÏ‡ÎżÏ… ΠρόσÎČασης","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.","Top 10 addresses":"Top 10 addresses","Total available":"ÎŁÏÎœÎżÎ»Îż ÎŽÎčαΞέσÎčΌωΜ","Total borrowed":"ÎŁÏÎœÎżÎ»Îż ΎαΜΔÎčÎșώΜ","Total borrows":"ÎŁÏÎœÎżÎ»Îż ÎŽÎ±ÎœÎ”ÎŻÏ‰Îœ","Total emission per day":"ÎŁÏ…ÎœÎżÎ»ÎčÎșές ΔÎșÏ€ÎżÎŒÏ€Î­Ï‚ Î±ÎœÎŹ ηΌέρα","Total interest accrued":"Total interest accrued","Total market size":"ÎŁÏ…ÎœÎżÎ»ÎčÎșό ÎŒÎ­ÎłÎ”ÎžÎżÏ‚ της Î±ÎłÎżÏÎŹÏ‚","Total supplied":"ÎŁÏÎœÎżÎ»Îż παρΔχόΌΔΜωΜ","Total worth":"ÎŁÏ…ÎœÎżÎ»ÎčÎșÎź Î±ÎŸÎŻÎ±","Track wallet":"Track wallet","Track wallet balance in read-only mode":"Track wallet balance in read-only mode","Transaction failed":"Η ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎź απέτυχΔ","Transaction history":"Transaction history","Transaction history is not currently available for this market":"Transaction history is not currently available for this market","Transaction overview":"ΕπÎčσÎșόπηση ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Transactions":"Transactions","Unavailable":"Μη ÎŽÎčαΞέσÎčÎŒÎż","Unbacked":"Μη Ï…Ï€ÎżÏƒÏ„Î·ÏÎčÎ¶ÏŒÎŒÎ”ÎœÎż","Unbacked mint cap is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… ÎœÎżÎŒÎčÏƒÎŒÎ±Ï„ÎżÎșÎżÏ€Î”ÎŻÎżÏ… Ï‡Ï‰ÏÎŻÏ‚ Î±ÎœÏ„ÎŻÎșρÎčσΌα","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["Underlying asset does not exist in ",["marketName"]," v3 Market, hence this position cannot be migrated."],"Underlying token":"Underlying token","Unstake":"Unstake","Unstake now":"ΞΔÎșλΔÎčΎώστΔ τώρα","Unstake window":"Î Î±ÏÎŹÎžÏ…ÏÎż ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚","Unstake {symbol}":["Unstake ",["symbol"]],"Unstaked":"Unstaked","Unstaking {symbol}":["Unstaking ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Use it to vote for or against active proposals.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.","Used as collateral":"ΧρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ως Î”ÎłÎłÏÎ·ÏƒÎ·","User cannot withdraw more than the available balance":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÎșÎŹÎœÎ”Îč Î±ÎœÎŹÎ»Î·ÏˆÎ· ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎ· από Ï„Îż ÎŽÎčαΞέσÎčÎŒÎż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż","User did not borrow the specified currency":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ ÎŽÎ±ÎœÎ”ÎŻÏƒÏ„Î·ÎșΔ Ï„Îż ÎșÎ±ÎžÎżÏÎčÏƒÎŒÎ­ÎœÎż ΜόΌÎčσΌα","User does not have outstanding stable rate debt on this reserve":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ έχΔÎč Î±ÎœÎ”ÎŸÏŒÏ†Î»Î·Ï„Îż Ï‡ÏÎ­ÎżÏ‚ ÏƒÏ„Î±ÎžÎ”ÏÎżÏ ΔπÎčÏ„ÎżÎșÎŻÎżÏ… σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό","User does not have outstanding variable rate debt on this reserve":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ έχΔÎč Î±ÎœÎ”ÎŸÏŒÏ†Î»Î·Ï„Îż Ï‡ÏÎ­ÎżÏ‚ ΌΔταÎČÎ»Î·Ï„ÎżÏ ΔπÎčÏ„ÎżÎșÎŻÎżÏ… σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ Ï€ÏÎżÏƒÏ€Î±ÎžÎ”ÎŻ Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻ Ï€ÎżÎ»Î»Î±Ï€Î»ÎŹ πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÎżÏ… ΔΜός Î±Ï€ÎżÎŒÎżÎœÏ‰ÎŒÎ­ÎœÎżÏ… πΔρÎčÎżÏ…ÏƒÎčαÎșÎżÏ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎżÏ…","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.","Utilization Rate":"Î ÎżÏƒÎżÏƒÏ„ÏŒ χρησÎčÎŒÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","VIEW TX":"VIEW TX","VOTE NAY":"ΚΗΊΙΣ΀Ε ΚΑ΀Α","VOTE YAE":"ΚΗΊΙΣ΀Ε ΄ΠΕΥ","Variable":"ΜΔταÎČλητό","Variable debt supply is not zero":"Η Ï€ÏÎżÏƒÏ†ÎżÏÎŹ ΌΔταÎČÎ»Î·Ï„ÎżÏ Ï‡ÏÎ­ÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșÎź","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Variable rate","Version 2":"Version 2","Version 3":"Version 3","View":"View","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"View Transactions","View all":"View all","View all votes":"View all votes","View contract":"View contract","View details":"Î ÏÎżÎČολΟ Î»Î”Ï€Ï„ÎżÎŒÎ”ÏÎ”ÎčώΜ","View on Explorer":"Î ÏÎżÎČολΟ ÏƒÏ„ÎżÎœ Explorer","Vote NAY":"ÎšÎ·Ï†ÎŻÏƒÏ„Î” ΚΑ΀Α","Vote YAE":"ÎšÎ·Ï†ÎŻÏƒÏ„Î” ΄ΠΕΥ","Voted NAY":"Voted NAY","Voted YAE":"Voted YAE","Votes":"Votes","Voting":"Voting","Voting is on":"Voting is on","Voting power":"ΔύΜαΌη ÏˆÎźÏ†ÎżÏ…","Voting results":"Î‘Ï€ÎżÏ„Î”Î»Î­ÏƒÎŒÎ±Ï„Î± ÏˆÎ·Ï†ÎżÏ†ÎżÏÎŻÎ±Ï‚","Wallet Balance":"Wallet Balance","Wallet balance":"Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ","Wallet not detected. Connect or install wallet and retry":"΀ο Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ΎΔΜ Î”ÎœÏ„ÎżÏ€ÎŻÏƒÏ„Î·ÎșΔ. ÎŁÏ…ÎœÎŽÎ­ÏƒÏ„Î” Îź ΔγÎșÎ±Ï„Î±ÏƒÏ„ÎźÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ÎșαÎč Î”Ï€Î±ÎœÎ±Î»ÎŹÎČΔτΔ τηΜ Ï€ÏÎżÏƒÏ€ÎŹÎžÎ”Îčα","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"΀α Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îčα Ï€Î±ÏÎ­Ï‡ÎżÎœÏ„Î±Îč από ΕΟωτΔρÎčÎșÎżÏÏ‚ Î Î±ÏÏŒÏ‡ÎżÏ…Ï‚ ÎșαÎč ΔπÎčÎ»Î­ÎłÎżÎœÏ„Î±Ï‚ τα ÏƒÏ…ÎŒÏ†Ï‰ÎœÎ”ÎŻÏ„Î” ΌΔ Ï„ÎżÏ…Ï‚ ÎŒÏÎżÏ…Ï‚ τωΜ ΔΜ Î»ÏŒÎłÏ‰ ΠαρόχωΜ. Η πρόσÎČÎ±ÏƒÎź σας ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ΔΜΎέχΔταÎč Μα Î”ÎŸÎ±ÏÏ„ÎŹÏ„Î±Îč από τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Ï„ÎżÏ… ΕΟωτΔρÎčÎșÎżÏ Î Î±ÏÏŒÏ‡ÎżÏ….","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"We couldn’t detect a wallet. Connect a wallet to stake and view your balance.","We suggest you go back to the Dashboard.":"We suggest you go back to the Dashboard.","Website":"Website","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"ΌταΜ Ï€ÏÎ±ÎłÎŒÎ±Ï„ÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·, ÎżÎč ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčητές ΔπÎčÏƒÏ„ÏÎ­Ï†ÎżÏ…Îœ έως ÎșαÎč Ï„Îż 50% Ï„ÎżÏ… Î±ÎœÎ”ÎŸÏŒÏ†Î»Î·Ï„ÎżÏ… ΎαΜΔÎčÏƒÎŒÎ­ÎœÎżÏ… Ï€ÎżÏƒÎżÏ ÎłÎčα Î»ÎżÎłÎ±ÏÎčασΌό Ï„ÎżÏ… ΎαΜΔÎčÎżÎ»ÎźÏ€Ï„Î·. ΣΔ Î±ÎœÏ„ÎŹÎ»Î»Î±ÎłÎŒÎ±, ÎŒÏ€ÎżÏÎżÏÎœ Μα Î±ÎłÎżÏÎŹÏƒÎżÏ…Îœ τÎčς Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς ΌΔ έÎșπτωση ÎșαÎč Μα ÎșÏÎ±Ï„ÎźÏƒÎżÏ…Îœ τη ÎŽÎčÎ±Ï†ÎżÏÎŹ (Ï€ÎżÎčÎœÎź ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚) ως ÎŒÏ€ÏŒÎœÎżÏ…Ï‚.","With a voting power of <0/>":"ΜΔ ΎύΜαΌη ÏˆÎźÏ†ÎżÏ… <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more","Withdraw":"Î‘ÎœÎŹÎ»Î·ÏˆÎ·","Withdraw & Switch":"Withdraw & Switch","Withdraw and Switch":"Withdraw and Switch","Withdraw {symbol}":["Î‘ÎœÎŹÎ»Î·ÏˆÎ· ",["symbol"]],"Withdrawing":"Withdrawing","Withdrawing and Switching":"Withdrawing and Switching","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Withdrawing this amount will reduce your health factor and increase risk of liquidation.","Withdrawing {symbol}":["Î‘ÎœÎŹÎ»Î·ÏˆÎ· ",["symbol"]],"Wrong Network":"Î›ÎŹÎžÎżÏ‚ ÎŽÎŻÎșÏ„Ï…Îż","YAE":"΄ΠΕΥ","You are entering Isolation mode":"ΕÎčσέρχΔστΔ σΔ λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"ΔΔΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Î»Î»ÎŹÎŸÎ”Ï„Î” τη Ï‡ÏÎźÏƒÎ· ως λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚ ÎłÎčα αυτό Ï„Îż ΜόΌÎčσΌα, ÎŽÎčότÎč Ξα Ï€ÏÎżÎșαλέσΔÎč ÎșÎ»ÎźÏƒÎ· Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚","You can not use this currency as collateral":"ΔΔΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα χρησÎčÎŒÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” αυτό Ï„Îż ΜόΌÎčσΌα ως Î”ÎłÎłÏÎ·ÏƒÎ·","You can not withdraw this amount because it will cause collateral call":"ΔΔΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Ï€ÎżÏƒÏÏÎ”Ï„Î” αυτό Ï„Îż Ï€ÎżÏƒÏŒ, ÎŽÎčότÎč Ξα Ï€ÏÎżÎșληΞΔί ÎșÎ»ÎźÏƒÎ· Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Ï€ÎżÏƒÏÏÎ”Ï„Î” τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ σας ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± από τη ÎœÎżÎœÎŹÎŽÎ± Î‘ÏƒÏ†Î±Î»Î”ÎŻÎ±Ï‚ ÎŒÏŒÎœÎż Î±Ï†ÎżÏ Î»ÎźÎŸÎ”Îč η Ï€Î”ÏÎŻÎżÎŽÎżÏ‚ Î±ÎœÎ±ÎŒÎżÎœÎźÏ‚ ÎșαÎč Ï„Îż Ï€Î±ÏÎŹÎžÏ…ÏÎż ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚ Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÏŒ.","You can report incident to our <0>Discord or<1>Github.":"You can report incident to our <0>Discord or<1>Github.","You cancelled the transaction.":"ΑÎșυρώσατΔ τη ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎź.","You did not participate in this proposal":"ΔΔΜ ÏƒÏ…ÎŒÎŒÎ”Ï„Î”ÎŻÏ‡Î±Ï„Î” στηΜ Ï€Î±ÏÎżÏÏƒÎ± πρόταση","You do not have supplies in this currency":"ΔΔΜ έχΔτΔ Ï€ÏÎżÎŒÎźÎžÎ”ÎčΔς σΔ αυτό Ï„Îż ΜόΌÎčσΌα","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"ΔΔΜ έχΔτΔ αρÎșÎ”Ï„ÎŹ Ï‡ÏÎźÎŒÎ±Ï„Î± ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας ÎłÎčα Μα Î±Ï€ÎżÏ€Î»Î·ÏÏŽÏƒÎ”Ï„Î” ÎżÎ»ÏŒÎșÎ»Î·ÏÎż Ï„Îż Ï€ÎżÏƒÏŒ. Î•ÎŹÎœ Ï€ÏÎżÏ‡Ï‰ÏÎźÏƒÎ”Ï„Î” στηΜ Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ΌΔ Ï„Îż Ï„ÏÎ­Ï‡ÎżÎœ Ï€ÎżÏƒÏŒ τωΜ Ï‡ÏÎ·ÎŒÎŹÏ„Ï‰Îœ σας, Ξα ΔΟαÎșÎżÎ»ÎżÏ…ÎžÎ”ÎŻÏ„Î” Μα έχΔτΔ ÎŒÎčα ÎŒÎčÎșÏÎź Ξέση ΎαΜΔÎčÏƒÎŒÎżÏ ÏƒÏ„Îż ταΌπλό σας.","You have no AAVE/stkAAVE/aAave balance to delegate.":"You have no AAVE/stkAAVE/aAave balance to delegate.","You may borrow up to <0/> GHO at <1/> (max discount)":"You may borrow up to <0/> GHO at <1/> (max discount)","You may enter a custom amount in the field.":"You may enter a custom amount in the field.","You switched to {0} rate":["Î‘Î»Î»ÎŹÎŸÎ±Ï„Î” σΔ Ï€ÎżÏƒÎżÏƒÏ„ÏŒ ",["0"]],"You unstake here":"ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΟΔÎșλΔÎčΎώσΔτΔ ΔΎώ","You voted {0}":["ÎšÎ·Ï†ÎŻÏƒÎ±Ï„Î” ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"Θα ÎČÎłÎ”ÎŻÏ„Î” από τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚ ÎșαÎč Ώλλα tokens ÎŒÏ€ÎżÏÎżÏÎœ Ï€Î»Î­ÎżÎœ Μα χρησÎčÎŒÎżÏ€ÎżÎčÎ·ÎžÎżÏÎœ ως Î”ÎłÎłÏÎ·ÏƒÎ·","You {action} <0/> {symbol}":["Î•ÏƒÎ”ÎŻÏ‚ ",["action"]," <0/> ",["symbol"]],"You've successfully switched borrow position.":"You've successfully switched borrow position.","You've successfully switched tokens.":"You've successfully switched tokens.","You've successfully withdrew & switched tokens.":"You've successfully withdrew & switched tokens.","Your balance is lower than the selected amount.":"Your balance is lower than the selected amount.","Your borrows":"΀α ÎŽÎŹÎœÎ”Îčα σας","Your current loan to value based on your collateral supplied.":"΀ο Ï„ÏÎ­Ï‡ÎżÎœ ÎŽÎŹÎœÎ”ÎčÎż Ï€ÏÎżÏ‚ Î±ÎŸÎŻÎ± ΌΔ ÎČÎŹÏƒÎ· τÎčς παρΔχόΌΔΜΔς Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς σας.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Ο ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ ÎșαÎč Ï„Îż ÎŽÎŹÎœÎ”ÎčÎż Ï€ÏÎżÏ‚ Î±ÎŸÎŻÎ± ÎșÎ±ÎžÎżÏÎŻÎ¶ÎżÏ…Îœ τη ÎŽÎčÎ±ÏƒÏ†ÎŹÎ»Îčση τωΜ Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”ÏŽÎœ σας. ΓÎčα Μα Î±Ï€ÎżÏ†ÏÎłÎ”Ï„Î” τÎčς ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčÎźÏƒÎ”Îčς ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï€Î±ÏÎŹÏƒÏ‡Î”Ï„Î” πΔρÎčσσότΔρΔς Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς Îź Μα Î”ÎŸÎżÏ†Î»ÎźÏƒÎ”Ï„Î” ΎαΜΔÎčαÎșές ΞέσΔÎčς.","Your info":"ΟÎč Ï€Î»Î·ÏÎżÏ†ÎżÏÎŻÎ”Ï‚ σας","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.","Your reward balance is 0":"΀ο Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż της Î±ÎœÏ„Î±ÎŒÎżÎčÎČÎźÏ‚ σας Î”ÎŻÎœÎ±Îč 0","Your supplies":"ΟÎč Ï€ÏÎżÎŒÎźÎžÎ”Îčές σας","Your voting info":"ΟÎč Ï€Î»Î·ÏÎżÏ†ÎżÏÎŻÎ”Ï‚ ÏˆÎźÏ†ÎżÏ… σας","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Your voting power is based on your AAVE/stkAAVE balance and received delegations.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Your ",["name"]," wallet is empty. Purchase or transfer assets or use <0>",["0"]," to transfer your ",["network"]," assets."],"Your {name} wallet is empty. Purchase or transfer assets.":["΀ο Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας ",["name"]," Î”ÎŻÎœÎ±Îč ΏΎΔÎčÎż. Î‘ÎłÎżÏÎŹÏƒÏ„Î” Îź ΌΔταφέρΔτΔ πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±."],"Your {networkName} wallet is empty. Get free test assets at":["Your ",["networkName"]," wallet is empty. Get free test assets at"],"Your {networkName} wallet is empty. Get free test {0} at":["Your ",["networkName"]," wallet is empty. Get free test ",["0"]," at"],"Zero address not valid":"Η ΌηΎΔΜÎčÎșÎź ÎŽÎčΔύΞυΜση ΎΔΜ Î”ÎŻÎœÎ±Îč έγÎșυρη","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±","blocked activities":"blocked activities","copy the error":"αΜτÎčÎłÏÎŹÏˆÏ„Î” Ï„Îż ÏƒÏ†ÎŹÎ»ÎŒÎ±","disabled":"Î±Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","documentation":"τΔÎșÎŒÎ·ÏÎŻÏ‰ÏƒÎ·","enabled":"Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","ends":"τΔλΔÎčώΜΔÎč","for":"for","of":"of","on":"Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ·","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"παραÎșÎ±Î»ÎżÏÎŒÎ” Î”Î»Î­ÎłÎŸÏ„Î” ότÎč Ï„Îż Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ΞέλΔτΔ Μα παρέχΔτΔ ΎΔΜ χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč Î”Ï€ÎŻ Ï„ÎżÏ… Ï€Î±ÏÏŒÎœÏ„ÎżÏ‚ ÎłÎčα ÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±. Î•ÎŹÎœ χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ÎłÎčα ÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±, η ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎź σας ΔΜΎέχΔταÎč Μα Î±Ï€ÎżÏ„ÏÏ‡Î”Îč.","repaid":"repaid","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: ",["0"]],"staking view":"Ï€ÏÎżÎČολΟ ÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚","starts":"starts","stkAAVE holders get a discount on GHO borrow rate":"stkAAVE holders get a discount on GHO borrow rate","to":"to","tokens is not the same as staking them. If you wish to stake your":"tokens ΎΔΜ Î”ÎŻÎœÎ±Îč Ï„Îż ÎŻÎŽÎčÎż ΌΔ Ï„Îż Μα τα ÎșλΔÎčΎώΜΔτΔ. Î•ÎŹÎœ ΔπÎčÎžÏ…ÎŒÎ”ÎŻÏ„Î” Μα ÎșλΔÎčΎώσΔτΔ τα","tokens, please go to the":"tokens, παραÎșÎ±Î»ÎżÏÎŒÎ” ΌΔταÎČÎ”ÎŻÏ„Î” ÏƒÏ„Îż","withdrew":"withdrew","{0}":[["0"]],"{0} Balance":[["0"]," Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż"],"{0} Faucet":[["0"]," Βρύση"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"η"],"{h}h":[["h"],"ω"],"{label}":[["label"]],"{m}m":[["m"],"λ"],"{networkName} Faucet":[["networkName"]," Βρύση"],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," assets selected"],"{stepName}":[["stepName"]],"{s}s":[["s"],"ÎŽ"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":".CSV",".JSON":".JSON","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Add stkAAVE to see borrow rate with discount","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>Slippage tolerance <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.","APR":"APR","APY":"APY","APY change":"APY change","APY type":"Î€ÏÏ€ÎżÏ‚ APY","APY type change":"APY type change","APY with discount applied":"APY with discount applied","APY, borrow rate":"APY, borrow rate","APY, variable":"APY, ΌΔταÎČλητό","AToken supply is not zero":"Η Ï€ÏÎżÏƒÏ†ÎżÏÎŹ AToken ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșÎź","Aave Governance":"ΔÎčαÎșυÎČέρΜηση Aave","Aave aToken":"Aave aToken","Aave debt token":"Aave debt token","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance","Aave per month":"Aave Î±ÎœÎŹ ÎŒÎźÎœÎ±","About GHO":"About GHO","Account":"Î›ÎżÎłÎ±ÏÎčασΌός","Action cannot be performed because the reserve is frozen":"Η Î”ÎœÎ­ÏÎłÎ”Îčα ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ΔÎșÏ„Î”Î»Î”ÏƒÏ„Î”ÎŻ ΔπΔÎčÎŽÎź Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό έχΔÎč Ï€Î±ÎłÏŽÏƒÎ”Îč","Action cannot be performed because the reserve is paused":"Η Î”ÎœÎ­ÏÎłÎ”Îčα ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ΔÎșÏ„Î”Î»Î”ÏƒÏ„Î”ÎŻ ΔπΔÎčÎŽÎź η Î”Ï†Î”ÎŽÏÎ”ÎŻÎ± ÎČÏÎŻÏƒÎșΔταÎč σΔ παύση","Action requires an active reserve":"Η ÎŽÏÎŹÏƒÎ· απαÎčÏ„Î”ÎŻ Î”ÎœÎ”ÏÎłÏŒ απόΞΔΌα","Activate Cooldown":"Activate Cooldown","Add stkAAVE to see borrow APY with the discount":"Add stkAAVE to see borrow APY with the discount","Add to wallet":"Add to wallet","Add {0} to wallet to track your balance.":["Add ",["0"]," to wallet to track your balance."],"Address is not a contract":"Η ÎŽÎčΔύΞυΜση ΎΔΜ Î”ÎŻÎœÎ±Îč συΌÎČόλαÎčÎż","Addresses":"Addresses","Addresses ({0})":["Addresses (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"Όλα Î­Ï„ÎżÎčΌα!","All proposals":"ΌλΔς ÎżÎč Ï€ÏÎżÏ„ÎŹÏƒÎ”Îčς","All transactions":"All transactions","Allowance required action":"ΑπαÎčÏ„ÎżÏÎŒÎ”ÎœÎ· ÎŽÏÎŹÏƒÎ· ΔπÎčΎότησης","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"ÎŁÎ±Ï‚ ΔπÎčτρέπΔÎč Μα Î±Ï€ÎżÏ†Î±ÏƒÎŻÏƒÎ”Ï„Î” αΜ Ξα χρησÎčÎŒÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” έΜα Ï€Î±ÏÎ”Ï‡ÏŒÎŒÎ”ÎœÎż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ως Î”ÎłÎłÏÎ·ÏƒÎ·. ΈΜα πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż Ï€ÎżÏ… χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ως Î”ÎłÎłÏÎ·ÏƒÎ· Ξα Î”Ï€Î·ÏÎ”ÎŹÏƒÎ”Îč τη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź σας ÎčÎșαΜότητα ÎșαÎč Ï„ÎżÎœ ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„Îź Ï…ÎłÎ”ÎŻÎ±Ï‚.","Amount":"Î ÎżÏƒÏŒ","Amount After Fee":"Amount After Fee","Amount claimable":"Amount claimable","Amount in cooldown":"Amount in cooldown","Amount must be greater than 0":"΀ο Ï€ÎżÏƒÏŒ πρέπΔÎč Μα Î”ÎŻÎœÎ±Îč ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎż από 0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Amount to migrate","Amount to unstake":"Amount to unstake","An error has occurred fetching the proposal.":"An error has occurred fetching the proposal.","Approve Confirmed":"Approve Confirmed","Approve with":"Approve with","Approve {symbol} to continue":["Approve ",["symbol"]," to continue"],"Approving {symbol}...":["ΈγÎșρÎčση Ï„ÎżÏ… ",["symbol"],"..."],"Array parameters that should be equal length are not":"ΟÎč Ï€Î±ÏÎŹÎŒÎ”Ï„ÏÎżÎč της ÏƒÏ…ÏƒÏ„ÎżÎčÏ‡ÎŻÎ±Ï‚ Ï€ÎżÏ… Ξα έπρΔπΔ Μα Î”ÎŻÎœÎ±Îč ÎŻÏƒÎżÏ… ÎŒÎźÎșÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.","Asset":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.","Asset can only be used as collateral in isolation mode only.":"To πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ÎŒÏ€ÎżÏÎ”ÎŻ Μα χρησÎčÎŒÎżÏ€ÎżÎčηΞΔί ως Î”ÎłÎłÏÎ·ÏƒÎ· ÎŒÏŒÎœÎż σΔ λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["Asset cannot be migrated because you have isolated collateral in ",["marketName"]," v3 Market which limits borrowable assets. You can manage your collateral in <0>",["marketName"]," V3 Dashboard"],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in ",["marketName"]," v3 market."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["Asset cannot be migrated due to supply cap restriction in ",["marketName"]," v3 market."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["Asset cannot be migrated to ",["marketName"]," V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["Asset cannot be migrated to ",["marketName"]," v3 Market since collateral asset will enable isolation mode."],"Asset cannot be used as collateral.":"΀ο πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα χρησÎčÎŒÎżÏ€ÎżÎčηΞΔί ως Î”ÎłÎłÏÎ·ÏƒÎ·.","Asset category":"ÎšÎ±Ï„Î·ÎłÎżÏÎŻÎ± πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["Asset is frozen in ",["marketName"]," v3 market, hence this position cannot be migrated."],"Asset is not borrowable in isolation mode":"΀ο πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎ±ÎœÎ”ÎŻÏƒÎčÎŒÎż σΔ λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚","Asset is not listed":"΀ο πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ πΔρÎčλαΌÎČÎŹÎœÎ”Ï„Î±Îč ÏƒÏ„ÎżÎœ ÎșÎ±Ï„ÎŹÎ»ÎżÎłÎż","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.","Assets":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÎŁÏ„ÎżÎčÏ‡Î”ÎŻÎ±","Assets to borrow":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Ï€ÏÎżÏ‚ ΎαΜΔÎčσΌό","Assets to supply":"ΠΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Ï€ÏÎżÏ‚ Ï€ÏÎżÎŒÎźÎžÎ”Îčα","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"At a discount","Available":"ΔÎčαΞέσÎčÎŒÎż","Available liquidity":"ΔÎčαΞέσÎčΌη ρΔυστότητα","Available on":"Available on","Available rewards":"ΔÎčαΞέσÎčΌΔς Î±ÎœÏ„Î±ÎŒÎżÎčÎČές","Available to borrow":"ΔÎčαΞέσÎčÎŒÎż ÎłÎčα ΎαΜΔÎčσΌό","Available to supply":"ΔÎčαΞέσÎčÎŒÎż ÎłÎčα Ï€ÏÎżÎŒÎźÎžÎ”Îčα","Back to Dashboard":"Back to Dashboard","Balance":"Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż","Balance to revoke":"Balance to revoke","Balancer Pool":"Balancer Pool","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Î ÏÎżÏƒÎżÏ‡Îź - Î•ÎŻÏƒÏ„Î” Ï€ÎżÎ»Ï ÎșÎżÎœÏ„ÎŹ στηΜ ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·. Î•ÎŸÎ”Ï„ÎŹÏƒÏ„Î” Ï„Îż Î”ÎœÎŽÎ”Ï‡ÏŒÎŒÎ”ÎœÎż Μα ÎșαταΞέσΔτΔ πΔρÎčσσότΔρΔς Î”ÎłÎłÏ…ÎźÏƒÎ”Îčς Îź Μα Î”ÎŸÎżÏ†Î»ÎźÏƒÎ”Ï„Î” ÎșÎŹÏ€ÎżÎčΔς από τÎčς ΎαΜΔÎčαÎșές σας ΞέσΔÎčς","Be mindful of the network congestion and gas prices.":"Be mindful of the network congestion and gas prices.","Because this asset is paused, no actions can be taken until further notice":"Because this asset is paused, no actions can be taken until further notice","Before supplying":"ΠρÎčÎœ από τηΜ Ï€ÏÎżÎŒÎźÎžÎ”Îčα","Blocked Address":"Blocked Address","Borrow":"ΔαΜΔÎčσΌός","Borrow APY":"Borrow APY","Borrow APY, variable":"ΔαΜΔÎčσΌός APY, ΌΔταÎČλητό","Borrow amount to reach {0}% utilization":["Borrow amount to reach ",["0"],"% utilization"],"Borrow and repay in same block is not allowed":"ΔΔΜ ΔπÎčτρέπΔταÎč Îż ΎαΜΔÎčσΌός ÎșαÎč η Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ÏƒÏ„Îż ÎŻÎŽÎčÎż block","Borrow apy":"Borrow apy","Borrow balance":"Borrow balance","Borrow balance after repay":"Borrow balance after repay","Borrow balance after switch":"Borrow balance after switch","Borrow cap":"Î‘ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ","Borrow cap is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… ΎαΜΔÎčÏƒÎŒÎżÏ","Borrow info":"Borrow info","Borrow power used":"ΔαΜΔÎčσΌός χρησÎčÎŒÎżÏ€ÎżÎčηΌέΜης ÎčÏƒÏ‡ÏÎżÏ‚","Borrow rate":"Borrow rate","Borrow rate change":"Borrow rate change","Borrow {symbol}":["ΔαΜΔÎčσΌός ",["symbol"]],"Borrowable":"Borrowable","Borrowed":"Borrowed","Borrowed asset amount":"Borrowed asset amount","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč Î”Ï€ÎŻ Ï„ÎżÏ… Ï€Î±ÏÏŒÎœÏ„ÎżÏ‚ ÎŽÎčαΞέσÎčÎŒÎżÏ‚ ÎłÎčα ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"Borrowing is disabled due to an Aave community decision. <0>More details","Borrowing is not enabled":"Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎżÏ‚","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎżÏ‚ ΔπΔÎčÎŽÎź έχΔτΔ Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎźÏƒÎ”Îč τη ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode) ÎșαÎč τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚. ΓÎčα Μα ÎŽÎčαχΔÎčρÎčÏƒÏ„Î”ÎŻÏ„Î” τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± E-Mode ÎșαÎč τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚, ΔπÎčσÎșÎ”Ï†ÎžÎ”ÎŻÏ„Î” Ï„ÎżÎœ <0>Î ÎŻÎœÎ±Îșα Î”Î»Î­ÎłÏ‡ÎżÏ….","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["Ο ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎżÏ‚ ΔπΔÎčÎŽÎź έχΔτΔ Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎźÏƒÎ”Îč τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î‘Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode) ÎłÎčα τηΜ ÎșÎ±Ï„Î·ÎłÎżÏÎŻÎ± ",["0"],". ΓÎčα Μα ÎŽÎčαχΔÎčρÎčÏƒÏ„Î”ÎŻÏ„Î” τÎčς ÎșÎ±Ï„Î·ÎłÎżÏÎŻÎ”Ï‚ E-Mode ΔπÎčσÎșÎ”Ï†ÎžÎ”ÎŻÏ„Î” Ï„ÎżÎœ <0>Î ÎŻÎœÎ±Îșα Î”Î»Î­ÎłÏ‡ÎżÏ…."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.","Borrowing power and assets are limited due to Isolation mode.":"Η ΎύΜαΌη ΎαΜΔÎčÏƒÎŒÎżÏ ÎșαÎč τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Î”ÎŻÎœÎ±Îč πΔρÎčÎżÏÎčσΌέΜα Î»ÏŒÎłÏ‰ της λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±Ï‚ Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Borrowing this amount will reduce your health factor and increase risk of liquidation.","Borrowing {symbol}":["ΔαΜΔÎčσΌός ",["symbol"]],"Both":"Both","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Buy Crypto With Fiat","Buy Crypto with Fiat":"Buy Crypto with Fiat","Buy {cryptoSymbol} with Fiat":["Buy ",["cryptoSymbol"]," with Fiat"],"COPIED!":"COPIED!","COPY IMAGE":"COPY IMAGE","Can be collateral":"ÎœÏ€ÎżÏÎ”ÎŻ Μα Î±Ï€ÎżÏ„Î”Î»Î­ÏƒÎ”Îč Î”ÎłÎłÏÎ·ÏƒÎ·","Can be executed":"ÎœÏ€ÎżÏÎ”ÎŻ Μα ΔÎșÏ„Î”Î»Î”ÏƒÏ„Î”ÎŻ","Can't validate the wallet address. Try again.":"Can't validate the wallet address. Try again.","Cancel":"Cancel","Cannot disable E-Mode":"Cannot disable E-Mode","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.","Choose one of the on-ramp services":"Choose one of the on-ramp services","Claim":"ΔÎčΔÎșÎŽÎŻÎșηση","Claim all":"ΔÎčΔÎșÎŽÎčÎșÎźÏƒÏ„Î” τα όλα","Claim all rewards":"ΔÎčΔÎșÎŽÎčÎșÎźÏƒÏ„Î” όλΔς τÎčς Î±ÎœÏ„Î±ÎŒÎżÎčÎČές","Claim {0}":["ΔÎčΔÎșÎŽÎŻÎșηση ",["0"]],"Claim {symbol}":["ΔÎčΔÎșÎŽÎŻÎșηση ",["symbol"]],"Claimable AAVE":"ΔÎčΔÎșÎŽÎčÎșÎźÏƒÎčÎŒÎż AAVE","Claimed":"Claimed","Claiming":"ΔÎčΔÎșÎŽÎŻÎșηση","Claiming {symbol}":["Claiming ",["symbol"]],"Close":"ÎšÎ»Î”ÎŻÏƒÎčÎŒÎż","Collateral":"Î•ÎłÎłÏÎ·ÏƒÎ·","Collateral balance after repay":"Collateral balance after repay","Collateral change":"Collateral change","Collateral is (mostly) the same currency that is being borrowed":"Η Î”ÎłÎłÏÎ·ÏƒÎ· Î”ÎŻÎœÎ±Îč (ως Î”Ï€ÎŻ Ï„Îż Ï€Î»Î”ÎŻÏƒÏ„ÎżÎœ) Ï„Îż ÎŻÎŽÎčÎż ΜόΌÎčσΌα Ï€ÎżÏ… ÎŽÎ±ÎœÎ”ÎŻÎ¶Î”Ï„Î±Îč","Collateral to repay with":"Collateral to repay with","Collateral usage":"ΧρησÎčÎŒÎżÏ€ÎżÎŻÎ·ÏƒÎ· Î”ÎłÎłÏ…ÎźÏƒÎ”Ï‰Îœ","Collateral usage is limited because of Isolation mode.":"H Ï‡ÏÎźÏƒÎ· Î”ÎłÎłÏ…ÎźÏƒÎ”Ï‰Îœ Î”ÎŻÎœÎ±Îč πΔρÎčÎżÏÎčσΌέΜη Î»ÏŒÎłÏ‰ της λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±Ï‚ Î‘Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚.","Collateral usage is limited because of isolation mode.":"Collateral usage is limited because of isolation mode.","Collateral usage is limited because of isolation mode. <0>Learn More":"Η Ï‡ÏÎźÏƒÎ· Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚ Î”ÎŻÎœÎ±Îč πΔρÎčÎżÏÎčσΌέΜη Î»ÏŒÎłÏ‰ της λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±Ï‚ Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚. <0>ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα","Collateralization":"Î•ÎŸÎ±ÏƒÏ†ÎŹÎ»Îčση","Collector Contract":"Collector Contract","Collector Info":"Collector Info","Confirm transaction":"Confirm transaction","Confirming transaction":"Confirming transaction","Connect":"Connect","Connect wallet":"ÎŁÏ…ÎœÎŽÎ­ÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč","Cooldown period":"Î Î”ÏÎŻÎżÎŽÎżÏ‚ ψύΟης","Cooldown period warning":"Î ÏÎżÎ”ÎčÎŽÎżÏ€ÎżÎŻÎ·ÏƒÎ· πΔρÎčÏŒÎŽÎżÏ… ψύΟης","Cooldown time left":"Î§ÏÏŒÎœÎżÏ‚ ψύΟης Ï€ÎżÏ… έχΔÎč Î±Ï€ÎżÎŒÎ”ÎŻÎœÎ”Îč","Cooldown to unstake":"ΚύΟτΔ ÎłÎčα ΟΔÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±","Cooling down...":"ΚύΟη...","Copy address":"ΑΜτÎčÎłÏÎ±Ï†Îź ÎŽÎčΔύΞυΜσης","Copy error message":"Copy error message","Copy error text":"ÎšÎ”ÎŻÎŒÎ”ÎœÎż ÏƒÏ†ÎŹÎ»ÎŒÎ±Ï„ÎżÏ‚ αΜτÎčÎłÏÎ±Ï†ÎźÏ‚","Covered debt":"Covered debt","Current LTV":"Î€ÏÎ­Ï‡ÎżÎœ LTV","Current differential":"Î€ÏÎ­Ï‡ÎżÎœ ÎŽÎčÎ±Ï†ÎżÏÎčÎșό","Current v2 Balance":"Current v2 Balance","Current v2 balance":"Current v2 balance","Current votes":"Î€ÏÎ­Ï‡ÎżÏ…ÏƒÎ”Ï‚ ÏˆÎźÏ†ÎżÎč","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.","Dark mode":"ÎŁÎșÎżÏ„Î”ÎčÎœÎź λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ±","Dashboard":"΀αΌπλό","Data couldn't be fetched, please reload graph.":"Data couldn't be fetched, please reload graph.","Debt":"Î§ÏÎ­ÎżÏ‚","Debt ceiling is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… Ï‡ÏÎ­ÎżÏ…Ï‚","Debt ceiling is not zero":"΀ο Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż Ï‡ÏÎ­ÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșό","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.","Delegated power":"Delegated power","Destination":"Destination","Details":"Î›Î”Ï€Ï„ÎżÎŒÎ­ÏÎ”ÎčΔς","Developers":"Î ÏÎżÎłÏÎ±ÎŒÎŒÎ±Ï„Îčστές","Differential":"ΔÎčÎ±Ï†ÎżÏÎčÎșό","Disable E-Mode":"Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Disable fork":"Disable fork","Disable testnet":"Disable testnet","Disable {symbol} as collateral":["Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· ",["symbol"]," ως Î”ÎłÎłÏÎ·ÏƒÎ·"],"Disabled":"Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","Disabling E-Mode":"Î‘Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"Η Î±Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… πΔρÎčÎżÏ…ÏƒÎčαÎșÎżÏ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎżÏ… ως Î”ÎłÎłÏÎ·ÏƒÎ· Î”Ï€Î·ÏÎ”ÎŹÎ¶Î”Îč τη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź σας ÎčÎșαΜότητα ÎșαÎč Ï„ÎżÎœ ÎŁÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„Îź Î„ÎłÎ”ÎŻÎ±Ï‚.","Disconnect Wallet":"Î‘Ï€ÎżÏƒÏ…ÎœÎŽÎ­ÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč","Discord channel":"Discord channel","Discount":"Discount","Discount applied for <0/> staking AAVE":"Discount applied for <0/> staking AAVE","Discount model parameters":"Discount model parameters","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more","Discountable amount":"Discountable amount","Docs":"Docs","Download":"Download","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"΀ο E-Mode Î±Ï…ÎŸÎŹÎœÎ”Îč Ï„Îż LTV σας ÎłÎčα ÎŒÎčα ΔπÎčÎ»Î”ÎłÎŒÎ­ÎœÎ· ÎșÎ±Ï„Î·ÎłÎżÏÎŻÎ± πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ έως ÎșαÎč <0/>. <1>ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Edit","Effective interest rate":"Effective interest rate","Efficiency mode (E-Mode)":"ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode)","Eligible for the Merit program.":"Eligible for the Merit program.","Email":"Email","Emode":"Emode","Enable E-Mode":"Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Enable {symbol} as collateral":["Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· ",["symbol"]," ως Î”ÎłÎłÏÎ·ÏƒÎ·"],"Enabled":"Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","Enabling E-Mode":"Î•ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"Η Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ· Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… πΔρÎčÎżÏ…ÏƒÎčαÎșÎżÏ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎżÏ… ως Î”ÎłÎłÏÎ·ÏƒÎ· Î±Ï…ÎŸÎŹÎœÎ”Îč τη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź σας ÎčÎșαΜότητα ÎșαÎč Ï„ÎżÎœ ÎŁÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„Îź Î„ÎłÎ”ÎŻÎ±Ï‚. Î©ÏƒÏ„ÏŒÏƒÎż, ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί Î”ÎŹÎœ Îż ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ σας πέσΔÎč ÎșÎŹÏ„Ï‰ από Ï„Îż 1.","English":"ΑγγλÎčÎșÎŹ","Enter ETH address":"ΕÎčÏƒÎŹÎłÎ”Ï„Î” ÎŽÎčΔύΞυΜση ETH","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"ΕÎčÏƒÎŹÎłÎ”Ï„Î” έΜα Ï€ÎżÏƒÏŒ","Error connecting. Try refreshing the page.":"ÎŁÏ†ÎŹÎ»ÎŒÎ± σύΜΎΔσης. ΔοÎșÎčÎŒÎŹÏƒÏ„Î” Μα αΜαΜΔώσΔτΔ τη ÏƒÎ”Î»ÎŻÎŽÎ±.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["Estimated compounding interest, including discount for Staking ",["0"],"AAVE in Safety Module."],"Estimated time":"Estimated time","Exceeds the discount":"Exceeds the discount","Exchange rate":"Exchange rate","Expected amount to repay":"Expected amount to repay","Expires":"ΛΟγΔÎč","Export data to":"Export data to","FAQ":"ÎŁÎ„Î§ÎÎ•ÎŁ ΕΥΩ΀ΗΣΕΙΣ","FAQS":"FAQS","Failed to load proposal voters. Please refresh the page.":"Failed to load proposal voters. Please refresh the page.","Faucet":"Βρύση","Faucet {0}":["Βρύση ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"Fetching data...","Filter":"ÎŠÎŻÎ»Ï„ÏÎż","Fixed rate":"Fixed rate","Flashloan is disabled for this asset, hence this position cannot be migrated.":"Flashloan is disabled for this asset, hence this position cannot be migrated.","For repayment of a specific type of debt, the user needs to have debt that type":"ΓÎčα τηΜ Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ΔΜός ÏƒÏ…ÎłÎșΔÎșρÎčÎŒÎ­ÎœÎżÏ… Ï„ÏÏ€ÎżÏ… Ï‡ÏÎ­ÎżÏ…Ï‚, Îż Ï‡ÏÎźÏƒÏ„Î·Ï‚ πρέπΔÎč Μα έχΔÎč Ï‡ÏÎ­ÎżÏ‚ Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… Ï„ÏÏ€ÎżÏ…","Fork mode is ON":"Fork mode is ON","Forum discussion":"ÎŁÏ…Î¶ÎźÏ„Î·ÏƒÎ· Ï†ÏŒÏÎżÏ…ÎŒ","French":"ΓαλλÎčÎșÎŹ","Funds in the Safety Module":"ÎšÎ”Ï†ÎŹÎ»Î±Îčα στηΜ ÎœÎżÎœÎŹÎŽÎ± Î‘ÏƒÏ†ÎŹÎ»Î”Îčας","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.","Get ABP Token":"Get ABP Token","Get ABP v2 Token":"Get ABP v2 Token","Get GHO":"Get GHO","Global settings":"ΓΔΜÎčÎșές ÏÏ…ÎžÎŒÎŻÏƒÎ”Îčς","Go Back":"Î Î·ÎłÎ±ÎŻÎœÎ”Ï„Î” Î ÎŻÏƒÏ‰","Go to Balancer Pool":"Go to Balancer Pool","Go to V3 Dashboard":"Go to V3 Dashboard","Governance":"ΔÎčαÎșυÎČέρΜηση","Greek":"Greek","Health factor":"ÎŁÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚","Health factor is lesser than the liquidation threshold":"Ο ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ Î”ÎŻÎœÎ±Îč ÎŒÎčÎșÏÏŒÏ„Î”ÏÎżÏ‚ από Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Health factor is not below the threshold":"Ο Ï€Î±ÏÎŹÎłÎżÎœÏ„Î±Ï‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ÎșÎŹÏ„Ï‰ από Ï„Îż όρÎčÎż","Hide":"ΑπόÎșρυψη","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Holders of stkAAVE receive a discount on the GHO borrowing rate","I acknowledge the risks involved.":"I acknowledge the risks involved.","I fully understand the risks of migrating.":"I fully understand the risks of migrating.","I understand how cooldown ({0}) and unstaking ({1}) work":["ΚαταλαÎČÎ±ÎŻÎœÏ‰ πώς λΔÎčÏ„ÎżÏ…ÏÎłÎ”ÎŻ η ψύΟη (",["0"],") ÎșαÎč Ï„Îż ΟΔÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ± (",["1"],")"],"If the error continues to happen,<0/> you may report it to this":"If the error continues to happen,<0/> you may report it to this","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"Î•ÎŹÎœ Îż ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ πέσΔÎč ÎșÎŹÏ„Ï‰ από Ï„Îż 1, ΔΜΎέχΔταÎč Μα Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčηΞΔί η ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· τωΜ Î”ÎłÎłÏ…ÎźÏƒÎ”ÏŽÎœ σας.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["Î•ÎŹÎœ ΔΕΝ ΟΔÎșλΔÎčΎώσΔτΔ ΔΜτός ",["0"]," Ï„ÎżÏ… Ï€Î±ÏÎ±ÎžÏÏÎżÏ… ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚, Ξα πρέπΔÎč Μα Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” ÎŸÎ±ÎœÎŹ τη ÎŽÎčαΎÎčÎșÎ±ÏƒÎŻÎ± ψύΟης."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"Î•ÎŹÎœ Ï„Îż ÎŽÎŹÎœÎ”ÎčÎż Ï€ÏÎżÏ‚ Î±ÎŸÎŻÎ± υπΔρÎČΔί Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚, η παρΔχόΌΔΜη Î”ÎłÎłÏÎ·ÏƒÎ· σας ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"ÎŁÏ„Îż E-Mode ÎżÏÎčσΌέΜα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎ±ÎœÎ”ÎŻÏƒÎčΌα. Î’ÎłÎ”ÎŻÏ„Î” από Ï„Îż E-Mode ÎłÎčα Μα Î±Ï€ÎżÎșÏ„ÎźÏƒÎ”Ï„Î” πρόσÎČαση σΔ όλα τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable ",["0"]," as collateral before borrowing another asset. Read more in our <0>FAQ"],"Inconsistent flashloan parameters":"Î‘ÏƒÏ…ÎœÎ”Ï€Î”ÎŻÏ‚ Ï€Î±ÏÎŹÎŒÎ”Ï„ÏÎżÎč flashloan","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.","Interest accrued":"Interest accrued","Interest rate rebalance conditions were not met":"ΔΔΜ Ï„Î·ÏÎźÎžÎ·ÎșαΜ ÎżÎč ÏŒÏÎżÎč ΔπαΜΔΟÎčÏƒÎżÏÏÏŒÏ€Î·ÏƒÎ·Ï‚ τωΜ ΔπÎčÏ„ÎżÎșÎŻÏ‰Îœ","Interest rate strategy":"Interest rate strategy","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more","Invalid amount to burn":"Μη έγÎșυρη Ï€ÎżÏƒÏŒÏ„Î·Ï„Î± Ï€ÏÎżÏ‚ Îșαύση","Invalid amount to mint":"Μη έγÎșÏ…ÏÎż Ï€ÎżÏƒÏŒ ÎłÎčα ÎœÎżÎŒÎčÏƒÎŒÎ±Ï„ÎżÎșÎżÏ€ÎŻÎ±","Invalid bridge protocol fee":"Μη έγÎșυρη Î±ÎŒÎżÎčÎČÎź Ï€ÏÏ‰Ï„ÎżÎșÏŒÎ»Î»ÎżÏ… ÎłÎ­Ï†Ï…ÏÎ±Ï‚","Invalid expiration":"Μη έγÎșυρη Î»ÎźÎŸÎ·","Invalid flashloan premium":"ΆÎșυρη πρÎčÎŒÎżÎŽÏŒÏ„Î·ÏƒÎ· flashloan","Invalid return value of the flashloan executor function":"Μη έγÎșυρη τÎčÎŒÎź ΔπÎčÏƒÏ„ÏÎżÏ†ÎźÏ‚ της ÏƒÏ…ÎœÎŹÏÏ„Î·ÏƒÎ·Ï‚ ΔÎșÏ„Î”Î»Î”ÏƒÏ„Îź flashloan","Invalid signature":"Μη έγÎșυρη Ï…Ï€ÎżÎłÏÎ±Ï†Îź","Isolated":"Î‘Ï€ÎżÎŒÎżÎœÏ‰ÎŒÎ­ÎœÎż","Isolated Debt Ceiling":"Isolated Debt Ceiling","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"΀α Î±Ï€ÎżÎŒÎżÎœÏ‰ÎŒÎ­ÎœÎ± πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± Î­Ï‡ÎżÏ…Îœ πΔρÎčÎżÏÎčσΌέΜη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź ÎčÎșαΜότητα ÎșαÎč Ώλλα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± ΎΔΜ ÎŒÏ€ÎżÏÎżÏÎœ Μα χρησÎčÎŒÎżÏ€ÎżÎčÎ·ÎžÎżÏÎœ ως Î”ÎłÎłÏÎ·ÏƒÎ·.","Join the community discussion":"Join the community discussion","Language":"Γλώσσα","Learn more":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα","Learn more about risks involved":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα ÎłÎčα Ï„ÎżÏ…Ï‚ ÎșÎčÎœÎŽÏÎœÎżÏ…Ï‚","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα ÏƒÏ„ÎżÎœ ÎżÎŽÎ·ÎłÏŒ <0>ÎŁÏ…Ï‡ÎœÏŽÎœ Î•ÏÏ‰Ï„ÎźÏƒÎ”Ï‰Îœ","Learn more.":"ÎœÎŹÎžÎ”Ï„Î” πΔρÎčσσότΔρα.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Linked addresses","Links":"ÎŁÏÎœÎŽÎ”ÏƒÎŒÎżÎč","Liquidated collateral":"Liquidated collateral","Liquidation":"Liquidation","Liquidation <0/> threshold":"ÎĄÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· <0/> ÎșÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż","Liquidation Threshold":"Liquidation Threshold","Liquidation at":"ÎĄÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· ÏƒÏ„Îż","Liquidation penalty":"ΠοÎčÎœÎź ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Liquidation risk":"Liquidation risk","Liquidation risk parameters":"Liquidation risk parameters","Liquidation threshold":"ÎšÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Liquidation value":"Î‘ÎŸÎŻÎ± ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","Loading data...":"Loading data...","Ltv validation failed":"Η ΔπÎčÎșύρωση Ï„ÎżÏ… Ltv απέτυχΔ","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details","MAX":"ÎœÎ•Î“Î™ÎŁÎ€ÎŸ","Manage E-Mode":"Manage E-Mode","Manage analytics":"Manage analytics","Market":"Î‘ÎłÎżÏÎŹ","Markets":"Î‘ÎłÎżÏÎ­Ï‚","Max":"ÎœÎ”ÎłÎčÏƒÏ„Îż","Max LTV":"ΜέγÎčÏƒÏ„Îż LTV","Max slashing":"ΜέγÎčστη πΔρÎčÎșÎżÏ€Îź","Max slippage":"Max slippage","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["Maximum amount available to borrow against this asset is limited because debt ceiling is at ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["Maximum amount available to borrow is <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.","Maximum amount available to supply is <0/> {0} (<1/>).":["Maximum amount available to supply is <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["Maximum amount available to supply is limited because protocol supply cap is at ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"Maximum available to borrow","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Meet GHO","Menu":"ÎœÎ”ÎœÎżÏ","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Migrate","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrate to V3","Migrate to stkABPT v2":"Migrate to stkABPT v2","Migrate to v3":"Migrate to v3","Migrate to {0} v3 Market":["Migrate to ",["0"]," v3 Market"],"Migrate your assets":"Migrate your assets","Migrated":"Migrated","Migrating":"Migrating","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.","Migration risks":"Migration risks","Minimum GHO borrow amount":"Minimum GHO borrow amount","Minimum USD value received":"Minimum USD value received","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Minimum amount received","Minimum staked Aave amount":"Minimum staked Aave amount","Minimum {0} received":["Minimum ",["0"]," received"],"More":"ΠΔρÎčσσότΔρα","NAY":"ΚΑ΀Α","Need help connecting a wallet? <0>Read our FAQ":"ΧρΔÎčÎŹÎ¶Î”ÏƒÏ„Î” ÎČοΟΞΔÎčα ÎłÎčα τη σύΜΎΔση ΔΜός Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ; <0>ΔÎčαÎČÎŹÏƒÏ„Î” τÎčς ÎŁÏ…Ï‡ÎœÎ­Ï‚ Î•ÏÏ‰Ï„ÎźÏƒÎ”Îčς Όας","Net APR":"ΚαΞαρό APR","Net APY":"ΚαΞαρό APY","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"΀ο ÎșαΞαρό ΑΥ΄ Î”ÎŻÎœÎ±Îč η συΜΎυασΌέΜη Î”Ï€ÎŻÎŽÏÎ±ÏƒÎ· όλωΜ τωΜ ΞέσΔωΜ Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚ ÎșαÎč ΎαΜΔÎčÏƒÎŒÎżÏ στηΜ ÎșÎ±ÎžÎ±ÏÎź Î±ÎŸÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÏ‰Îœ τωΜ ÎșÎčÎœÎźÏ„ÏÏ‰Îœ. Î•ÎŻÎœÎ±Îč ΎυΜατόΜ Μα Ï…Ï€ÎŹÏÏ‡Î”Îč αρΜητÎčÎșό ÎșαΞαρό APY Î”ÎŹÎœ Ï„Îż χρΔωστÎčÎșό APY Î”ÎŻÎœÎ±Îč Ï…ÏˆÎ·Î»ÏŒÏ„Î”ÏÎż από Ï„Îż Ï€ÏÎżÏƒÏ†Î”ÏÏŒÎŒÎ”ÎœÎż APY.","Net worth":"ÎšÎ±ÎžÎ±ÏÎź Î±ÎŸÎŻÎ±","Network":"ΔίÎșÏ„Ï…Îż","Network not supported for this wallet":"ΔίÎșÏ„Ï…Îż Ï€ÎżÏ… ΎΔΜ Ï…Ï€ÎżÏƒÏ„Î·ÏÎŻÎ¶Î”Ï„Î±Îč ÎłÎčα αυτό Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč","No assets selected to migrate.":"No assets selected to migrate.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ Î±ÎœÏ„Î±ÎŒÎżÎčÎČές ÎłÎčα ÎŽÎčΔÎșÎŽÎŻÎșηση","No search results{0}":["No search results",["0"]],"No transactions yet.":"No transactions yet.","No voting power":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡Î”Îč ÎŽÎčÎșÎ±ÎŻÏ‰ÎŒÎ± ÏˆÎźÏ†ÎżÏ…","None":"ΚαΜέΜα","Not a valid address":"Μη έγÎșυρη ÎŽÎčΔύΞυΜση","Not enough balance on your wallet":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡Î”Îč αρÎșΔτό Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας","Not enough collateral to repay this amount of debt with":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ ΔπαρÎșÎ”ÎŻÏ‚ Î”ÎłÎłÏ…ÎźÏƒÎ”Îčς ÎłÎčα τηΜ Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź Î±Ï…Ï„ÎżÏ Ï„ÎżÏ… Ï€ÎżÏƒÎżÏ Ï‡ÏÎ­ÎżÏ…Ï‚ ΌΔ","Not enough staked balance":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡Î”Îč αρÎșΔτό ÎșλΔÎčÎŽÏ‰ÎŒÎ­ÎœÎż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż","Not enough voting power to participate in this proposal":"ΔΔΜ έχΔÎč αρÎșÎ”Ï„Îź ΎύΜαΌη ÏˆÎźÏ†ÎżÏ… ÎłÎčα Μα ÏƒÏ…ÎŒÎŒÎ”Ï„ÎŹÏƒÏ‡Î”Îč στηΜ Ï€Î±ÏÎżÏÏƒÎ± πρόταση","Not reached":"ΔΔΜ έχΔÎč ΔπÎčÏ„Î”Ï…Ï‡ÎžÎ”ÎŻ","Nothing borrowed yet":"Î€ÎŻÏ€ÎżÏ„Î± ΎαΜΔÎčÏƒÎŒÎ­ÎœÎż αÎșόΌα","Nothing found":"Nothing found","Nothing staked":"Î€ÎŻÏ€ÎżÏ„Î± ÎșλΔÎčÎŽÏ‰ÎŒÎ­ÎœÎż","Nothing supplied yet":"Î€ÎŻÏ€ÎżÏ„Î± ΎΔΜ έχΔÎč Ï€Î±ÏÎ±ÏƒÏ‡Î”ÎžÎ”ÎŻ αÎșόΌη","Ok, Close":"Î•ÎœÏ„ÎŹÎŸÎ”Îč, ÎšÎ»Î”ÎŻÏƒÎčÎŒÎż","Operation not supported":"Η λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± ΎΔΜ Ï…Ï€ÎżÏƒÏ„Î·ÏÎŻÎ¶Î”Ï„Î±Îč","Oracle price":"΀ÎčÎŒÎź Oracle","Overview":"ΕπÎčσÎșόπηση","Page not found":"Page not found","Participating in this {symbol} reserve gives annualized rewards.":["Η ÏƒÏ…ÎŒÎŒÎ”Ï„ÎżÏ‡Îź σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό ",["symbol"]," ÎŽÎŻÎœÎ”Îč Î”Ï„ÎźÏƒÎčΔς Î±ÎœÏ„Î±ÎŒÎżÎčÎČές."],"Pending...":"ΕÎșÎșÏÎ”ÎŒÎ”ÎŻ...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.","Please connect a wallet to view your personal information here.":"ΠαραÎșÎ±Î»ÎżÏÎŒÎ” συΜΎέστΔ έΜα Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ÎłÎčα Μα ÎŽÎ”ÎŻÏ„Î” τÎčς Ï€ÏÎżÏƒÏ‰Ï€ÎčÎșές σας Ï€Î»Î·ÏÎżÏ†ÎżÏÎŻÎ”Ï‚ ΔΎώ.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Please connect your wallet to be able to switch your tokens.","Please connect your wallet to get free testnet assets.":"Please connect your wallet to get free testnet assets.","Please connect your wallet to see migration tool.":"Please connect your wallet to see migration tool.","Please connect your wallet to see your supplies, borrowings, and open positions.":"ÎŁÏ…ÎœÎŽÎ­ÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας ÎłÎčα Μα ÎŽÎ”ÎŻÏ„Î” τÎčς Ï€ÏÎżÎŒÎźÎžÎ”ÎčΔς, τα ÎŽÎŹÎœÎ”Îčα ÎșαÎč τÎčς Î±ÎœÎżÎčχτές ΞέσΔÎčς σας.","Please connect your wallet to view transaction history.":"Please connect your wallet to view transaction history.","Please enter a valid wallet address.":"Please enter a valid wallet address.","Please switch to {networkName}.":["ΠαραÎșαλώ ΌΔταÎČÎ”ÎŻÏ„Î” ÏƒÏ„Îż ",["networkName"],"."],"Please, connect your wallet":"ΠαραÎșαλώ, συΜΎέστΔ Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας","Pool addresses provider is not registered":"Ο Ï€ÎŹÏÎżÏ‡ÎżÏ‚ ÎŽÎčΔυΞύΜσΔωΜ ÎșÎżÎčΜόχρηστωΜ Ï„Î±ÎŒÎ”ÎŻÏ‰Îœ ΎΔΜ Î”ÎŻÎœÎ±Îč Î”ÎłÎłÎ”ÎłÏÎ±ÎŒÎŒÎ­ÎœÎżÏ‚","Powered by":"Powered by","Preview tx and migrate":"Preview tx and migrate","Price":"Price","Price data is not currently available for this reserve on the protocol subgraph":"Price data is not currently available for this reserve on the protocol subgraph","Price impact":"Î•Ï€ÎŻÎŽÏÎ±ÏƒÎ· στηΜ τÎčÎŒÎź","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.","Price impact {0}%":["Price impact ",["0"],"%"],"Privacy":"Privacy","Proposal details":"Î›Î”Ï€Ï„ÎżÎŒÎ­ÏÎ”ÎčΔς πρότασης","Proposal overview":"ΕπÎčσÎșόπηση πρότασης","Proposals":"Î ÏÎżÏ„ÎŹÏƒÎ”Îčς","Proposition":"Proposition","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"Protocol supply cap at 100% for this asset. Further supply unavailable.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"Protocol supply cap is at 100% for this asset. Further supply unavailable.","Quorum":"Î‘Ï€Î±ÏÏ„ÎŻÎ±","Rate change":"Rate change","Raw-Ipfs":"Raw-Ipfs","Reached":"ΕπÎčτΔύχΞηÎșΔ","Reactivate cooldown period to unstake {0} {stakedToken}":["Reactivate cooldown period to unstake ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.","Read-only mode.":"Read-only mode.","Read-only mode. Connect to a wallet to perform transactions.":"Read-only mode. Connect to a wallet to perform transactions.","Receive (est.)":"Receive (est.)","Received":"Received","Recent Transactions":"Recent Transactions","Recipient address":"ΔÎčΔύΞυΜση Ï€Î±ÏÎ±Î»ÎźÏ€Ï„Î·","Rejected connection request":"ΑπόρρÎčψη αÎčÏ„ÎźÎŒÎ±Ï„ÎżÏ‚ σύΜΎΔσης","Reload":"Reload","Reload the page":"Reload the page","Remaining debt":"Î„Ï€ÎżÎ»Î”ÎčÏ€ÏŒÎŒÎ”ÎœÎż Ï‡ÏÎ­ÎżÏ‚","Remaining supply":"Î„Ï€ÎżÎ»Î”ÎčπόΌΔΜη Ï€ÏÎżÏƒÏ†ÎżÏÎŹ","Remind me":"Remind me","Remove":"Remove","Repaid":"Repaid","Repay":"Î‘Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź","Repay with":"Î‘Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ΌΔ","Repay {symbol}":["Î‘Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ",["symbol"]],"Repaying {symbol}":["Î‘Ï€ÎżÏ€Î»Î·ÏÏŽÎœÎżÎœÏ„Î±Ï‚ ",["symbol"]],"Repayment amount to reach {0}% utilization":["Repayment amount to reach ",["0"],"% utilization"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Representative smart contract wallet (ie. Safe) addresses on other chains.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Representing smart contract wallet (ie. Safe) addresses on other chains.","Reserve Size":"ÎœÎ­ÎłÎ”ÎžÎżÏ‚ Î‘Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșÎżÏ","Reserve factor":"Reserve factor","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["Reserve factor is a percentage of interest which goes to a ",["0"]," that is controlled by Aave governance to promote ecosystem growth."],"Reserve status & configuration":"ÎšÎ±Ï„ÎŹÏƒÏ„Î±ÏƒÎ· & ÎŽÎčαΌόρφωση Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșÎżÏ","Reset":"Reset","Restake":"Restake","Restake {symbol}":["Restake ",["symbol"]],"Restaked":"Restaked","Restaking {symbol}":["Restaking ",["symbol"]],"Review approval tx details":"ΑΜαΞΔώρηση Î»Î”Ï€Ï„ÎżÎŒÎ”ÏÎ”ÎčώΜ έγÎșρÎčσης ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Review tx":"ΑΜαΞΔώρηση ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Review tx details":"ΑΜαΞΔώρηση Î»Î”Ï€Ï„ÎżÎŒÎ”ÏÎ”ÎčώΜ ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Revoke power":"Revoke power","Reward(s) to claim":"Î‘ÎœÏ„Î±ÎŒÎżÎčÎČÎź(Δς) Ï€ÏÎżÏ‚ ÎŽÎčΔÎșÎŽÎŻÎșηση","Rewards APR":"Î‘ÎœÏ„Î±ÎŒÎżÎčÎČές APR","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"Î›Î”Ï€Ï„ÎżÎŒÎ­ÏÎ”ÎčΔς ÎșÎčÎœÎŽÏÎœÎżÏ…","Safety of your deposited collateral against the borrowed assets and its underlying value.":"Î‘ÏƒÏ†ÎŹÎ»Î”Îčα τωΜ ÎșατατΔΞΔÎčΌέΜωΜ Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”ÏŽÎœ σας έΜαΜτÎč τωΜ ΎαΜΔÎčζόΌΔΜωΜ πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ ÎșαÎč της Ï…Ï€ÎżÎșÎ”ÎŻÎŒÎ”ÎœÎ·Ï‚ Î±ÎŸÎŻÎ±Ï‚ Ï„ÎżÏ…Ï‚.","Save and share":"Save and share","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"ÎŠÎ±ÎŻÎœÎ”Ï„Î±Îč ότÎč ΎΔΜ ÎŒÏ€ÎżÏÎżÏÎŒÎ” Μα Î±Î»Î»ÎŹÎŸÎżÏ…ÎŒÎ” Ï„Îż ÎŽÎŻÎșÏ„Ï…Îż αυτόΌατα. Î•Î»Î­ÎłÎŸÏ„Î” αΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï„Îż Î±Î»Î»ÎŹÎŸÎ”Ï„Î” από Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč.","Select an asset":"Select an asset","Select language":"ΕπÎčλέΟτΔ ÎłÎ»ÏŽÏƒÏƒÎ±","Select slippage tolerance":"Select slippage tolerance","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Selected assets have successfully migrated. Visit the Market Dashboard to see them.","Selected borrow assets":"Selected borrow assets","Selected supply assets":"Selected supply assets","Send Feedback":"Send Feedback","Send feedback":"Send feedback","Set up delegation":"Set up delegation","Share on Lens":"Share on Lens","Share on twitter":"ΜοÎčÏÎ±ÏƒÏ„Î”ÎŻÏ„Î” Ï„Îż ÏƒÏ„Îż twitter","Show":"Î•ÎŒÏ†ÎŹÎœÎčση","Show Frozen or paused assets":"Show Frozen or paused assets","Show assets with 0 balance":"Î•ÎŒÏ†ÎŹÎœÎčση πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ ΌΔ Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż 0","Sign to continue":"Sign to continue","Signatures ready":"Signatures ready","Signing":"Signing","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Î”Î”ÎŽÎżÎŒÎ­ÎœÎżÏ… ότÎč πρόÎșΔÎčταÎč ÎłÎčα έΜα ÎŽÎżÎșÎčΌαστÎčÎșό ÎŽÎŻÎșÏ„Ï…Îż, ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Ï€ÎżÎșÏ„ÎźÏƒÎ”Ï„Î” ÎżÏ€ÎżÎčÎżÎŽÎźÏ€ÎżÏ„Î” από τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± αΜ έχΔτΔ ETH ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας","Slippage":"Slippage","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Some migrated assets will not be used as collateral due to enabled isolation mode in ",["marketName"]," V3 Market. Visit <0>",["marketName"]," V3 Dashboard to manage isolation mode."],"Something went wrong":"Something went wrong","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.","Sorry, we couldn't find the page you were looking for.":"Sorry, we couldn't find the page you were looking for.","Source":"Source","Spanish":"ΙσπαΜÎčÎșÎŹ","Stable":"ÎŁÏ„Î±ÎžÎ”ÏÏŒ","Stable borrowing is enabled":"Ο σταΞΔρός ΎαΜΔÎčσΌός Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎżÏ‚","Stable borrowing is not enabled":"Ο σταΞΔρός ΎαΜΔÎčσΌός ΎΔΜ Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎżÏ‚","Stable debt supply is not zero":"Η ÏƒÏ„Î±ÎžÎ”ÏÎź Ï€ÏÎżÏƒÏ†ÎżÏÎŹ Ï‡ÏÎ­ÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșÎź","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"΀ο σταΞΔρό ΔπÎčτόÎșÎčÎż Ξα <0>ÎŒÎ”ÎŻÎœÎ”Îč Ï„Îż ÎŻÎŽÎčÎż ÎłÎčα όλη τη ÎŽÎčÎŹÏÎșΔÎčα Ï„ÎżÏ… ÎŽÎ±ÎœÎ”ÎŻÎżÏ… σας. ÎŁÏ…ÎœÎčÏƒÏ„ÎŹÏ„Î±Îč ÎłÎčα ΌαÎșÏÎżÏ‡ÏÏŒÎœÎčΔς πΔρÎčÏŒÎŽÎżÏ…Ï‚ ΎαΜΔÎčÏƒÎŒÎżÏ ÎșαÎč ÎłÎčα Ï‡ÏÎźÏƒÏ„Î”Ï‚ Ï€ÎżÏ… Ï€ÏÎżÏ„ÎčÎŒÎżÏÎœ τηΜ Ï€ÏÎżÎČλΔψÎčΌότητα.","Stablecoin":"ÎŁÏ„Î±ÎžÎ”ÏÏŒ ΜόΌÎčσΌα","Stake":"ΚλΔÎčΎώστΔ","Stake AAVE":"Stake AAVE","Stake ABPT":"Stake ABPT","Stake GHO":"Stake GHO","Stake cooldown activated":"Stake cooldown activated","Staked":"ΚλΔÎčÎŽÏ‰ÎŒÎ­ÎœÎż","Staking":"ÎšÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±","Staking APR":"ÎšÎ»Î”ÎŻÎŽÏ‰ÎŒÎ± APR","Staking Rewards":"Staking Rewards","Staking balance":"Staking balance","Staking discount":"Staking discount","State":"ÎšÎ±Ï„ÎŹÏƒÏ„Î±ÏƒÎ·","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Supplied","Supplied asset amount":"Supplied asset amount","Supplied assets":"Supplied assets","Supply":"Î ÏÎżÏƒÏ†ÎżÏÎŹ","Supply APY":"Î ÏÎżÏƒÏ†ÎżÏÎŹ APY","Supply apy":"Î ÏÎżÏƒÏ†ÎżÏÎŹ apy","Supply balance":"Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚","Supply balance after switch":"Supply balance after switch","Supply cap is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚","Supply cap on target reserve reached. Try lowering the amount.":"Î•Ï€ÎŻÏ„Î”Ï…ÎŸÎ· Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… Î”Ï†ÎżÎŽÎčÎ±ÏƒÎŒÎżÏ ÏƒÏ„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό-ÏƒÏ„ÏŒÏ‡Îż. ΔοÎșÎčÎŒÎŹÏƒÏ„Î” Μα \nΌΔÎčώσΔτΔ τηΜ Ï€ÎżÏƒÏŒÏ„Î·Ï„Î±.","Supply {symbol}":["Î ÏÎżÏƒÏ†ÎżÏÎŹ ",["symbol"]],"Supplying your":"Î ÏÎżÎŒÎ·ÎžÎ”ÏÎżÎœÏ„Î±Ï‚ Ï„Îż","Supplying {symbol}":["Î Î±ÏÎżÏ‡Îź ",["symbol"]],"Switch":"Switch","Switch E-Mode":"Switch E-Mode","Switch Network":"ΑλλαγΟ ΔÎčÎșÏ„ÏÎżÏ…","Switch borrow position":"Switch borrow position","Switch to":"Switch to","Switched":"Switched","Switching":"Switching","Switching E-Mode":"Switching E-Mode","Techpaper":"Techpaper","Terms":"Terms","Test Assets":"Test Assets","Testnet mode":"ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Testnet","Testnet mode is ON":"Testnet mode is ON","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"Thank you for voting!!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"΀ο % της ÏƒÏ…ÎœÎżÎ»ÎčÎșÎźÏ‚ ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎźÏ‚ σας ΎύΜαΌης Ï€ÎżÏ… χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč. Αυτό ÎČÎ±ÏƒÎŻÎ¶Î”Ï„Î±Îč ÏƒÏ„Îż Ï€ÎżÏƒÏŒ της παρΔχόΌΔΜης Î”ÎŸÎ±ÏƒÏ†ÎŹÎ»ÎčÏƒÎźÏ‚ σας ÎșαÎč ÏƒÏ„Îż ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î”.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"Ο ΎΔίÎșτης ÎŒÎ­ÎłÎčÏƒÏ„ÎżÏ… LTV αΜτÎčÏ€ÏÎżÏƒÏ‰Ï€Î”ÏÎ”Îč τη ÎŒÎ­ÎłÎčστη ΎαΜΔÎčÎżÎ»Î·Ï€Ï„ÎčÎșÎź ÎčÎșαΜότητα ÎŒÎčας ÏƒÏ…ÎłÎșΔÎșρÎčΌέΜης Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚. ΓÎčα Ï€Î±ÏÎŹÎŽÎ”ÎčÎłÎŒÎ±, Î”ÎŹÎœ ÎŒÎčα Î”ÎłÎłÏÎ·ÏƒÎ· έχΔÎč LTV 75%, Îż Ï‡ÏÎźÏƒÏ„Î·Ï‚ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻ έως ÎșαÎč 0,75 ETH ÏƒÏ„Îż ÎșύρÎčÎż ΜόΌÎčσΌα ÎłÎčα ÎșΏΞΔ 1 ETH Î±ÎŸÎŻÎ±Ï‚ Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚.","The address of the pool addresses provider is invalid":"Η ÎŽÎčΔύΞυΜση Ï„ÎżÏ… Ï€Î±ÏÏŒÏ‡ÎżÏ… ÎŽÎčΔυΞύΜσΔωΜ ÎșÎżÎčÎœÏŒÏ‡ÏÎ·ÏƒÏ„ÎżÏ… Ï„Î±ÎŒÎ”ÎŻÎżÏ… Î”ÎŻÎœÎ±Îč ÎŹÎșυρη","The app is running in fork mode.":"The app is running in fork mode.","The app is running in testnet mode. Learn how it works in":"The app is running in testnet mode. Learn how it works in","The caller of the function is not an AToken":"Ο ÎșαλώΜ της ÏƒÏ…ÎœÎŹÏÏ„Î·ÏƒÎ·Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč AToken","The caller of this function must be a pool":"Ο ÎșαλώΜ Î±Ï…Ï„ÎźÏ‚ της ÏƒÏ…ÎœÎŹÏÏ„Î·ÏƒÎ·Ï‚ πρέπΔÎč Μα Î”ÎŻÎœÎ±Îč έΜα ÎșÎżÎčÎœÏŒÏ‡ÏÎ·ÏƒÏ„Îż Ï„Î±ÎŒÎ”ÎŻÎż","The collateral balance is 0":"΀ο Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż τωΜ Î”ÎłÎłÏ…ÎźÏƒÎ”Ï‰Îœ Î”ÎŻÎœÎ±Îč 0","The collateral chosen cannot be liquidated":"Η Î”ÎłÎłÏÎ·ÏƒÎ· Ï€ÎżÏ… έχΔÎč ΔπÎčλΔγΔί ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["Η Ï€Î”ÏÎŻÎżÎŽÎżÏ‚ ψύΟης Î”ÎŻÎœÎ±Îč ",["0"],". ÎœÎ”Ï„ÎŹ τηΜ ",["1"]," Ï€Î”ÏÎŻÎżÎŽÎż ψύΟης, Ξα ΔÎčσέλΞΔτΔ ÏƒÏ„Îż Ï€Î±ÏÎŹÎžÏ…ÏÎż ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚ ",["2"],". Θα ÏƒÏ…ÎœÎ”Ï‡ÎŻÏƒÎ”Ï„Î” Μα λαΌÎČÎŹÎœÎ”Ï„Î” Î±ÎœÏ„Î±ÎŒÎżÎčÎČές ÎșÎ±Ï„ÎŹ τη ÎŽÎčÎŹÏÎșΔÎčα της ψύΟης ÎșαÎč Ï„ÎżÏ… Ï€Î±ÏÎ±ÎžÏÏÎżÏ… ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.","The requested amount is greater than the max loan size in stable rate mode":"΀ο αÎčÏ„ÎżÏÎŒÎ”ÎœÎż Ï€ÎżÏƒÏŒ Î”ÎŻÎœÎ±Îč ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎż από Ï„Îż ÎŒÎ­ÎłÎčÏƒÏ„Îż ÎŒÎ­ÎłÎ”ÎžÎżÏ‚ ÎŽÎ±ÎœÎ”ÎŻÎżÏ… στη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± ÏƒÏ„Î±ÎžÎ”ÏÎżÏ ΔπÎčÏ„ÎżÎșÎŻÎżÏ…","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"΀ο ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ τωΜ πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ σας ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ σΔ ÎŽÎżÎ»ÎŹÏÎčα ΗΠΑ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎżÏÎœ Μα χρησÎčÎŒÎżÏ€ÎżÎčÎ·ÎžÎżÏÎœ ως Î”ÎłÎłÏÎ·ÏƒÎ· ÎłÎčα ΎαΜΔÎčσΌό πΔρÎčÎżÏ…ÏƒÎčαÎșώΜ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÏ‰Îœ.","The underlying asset cannot be rescued":"΀ο Ï…Ï€ÎżÎșÎ”ÎŻÎŒÎ”ÎœÎż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÎŽÎčÎ±ÏƒÏ‰ÎžÎ”ÎŻ","The underlying balance needs to be greater than 0":"΀ο Ï…Ï€ÎżÎșÎ”ÎŻÎŒÎ”ÎœÎż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż πρέπΔÎč Μα Î”ÎŻÎœÎ±Îč ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎż από 0","The weighted average of APY for all borrowed assets, including incentives.":"Ο σταΞΌÎčÏƒÎŒÎ­ÎœÎżÏ‚ ÎŒÎ­ÏƒÎżÏ‚ ÏŒÏÎżÏ‚ Ï„ÎżÏ… APY ÎłÎčα όλα τα ΎαΜΔÎčαÎșÎŹ πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÏ‰Îœ τωΜ ÎșÎčÎœÎźÏ„ÏÏ‰Îœ.","The weighted average of APY for all supplied assets, including incentives.":"Ο σταΞΌÎčÏƒÎŒÎ­ÎœÎżÏ‚ ÎŒÎ­ÏƒÎżÏ‚ ÏŒÏÎżÏ‚ Ï„ÎżÏ… APY ÎłÎčα όλα τα παρΔχόΌΔΜα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÏ‰Îœ τωΜ ÎșÎčÎœÎźÏ„ÏÏ‰Îœ.","There are not enough funds in the{0}reserve to borrow":["ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ αρÎșÎ”Ï„ÎŹ ÎșÎ”Ï†ÎŹÎ»Î±Îčα ÏƒÏ„Îż",["0"],"Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό ÎłÎčα ΎαΜΔÎčσΌό"],"There is not enough collateral to cover a new borrow":"ΔΔΜ Ï…Ï€ÎŹÏÏ‡ÎżÏ…Îœ ΔπαρÎșÎ”ÎŻÏ‚ Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς ÎłÎčα τηΜ ÎșÎŹÎ»Ï…ÏˆÎ· ΔΜός ÎœÎ­ÎżÏ… ÎŽÎ±ÎœÎ”ÎŻÎżÏ…","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.","There was some error. Please try changing the parameters or <0><1>copy the error":"Î„Ï€ÎźÏÎŸÎ” ÎșÎŹÏ€ÎżÎčÎż ÏƒÏ†ÎŹÎ»ÎŒÎ±. Î ÏÎżÏƒÏ€Î±ÎžÎźÏƒÏ„Î” Μα Î±Î»Î»ÎŹÎŸÎ”Ï„Î” τÎčς Ï€Î±ÏÎ±ÎŒÎ­Ï„ÏÎżÏ…Ï‚ Îź <0><1>αΜτÎčÎłÏÎŹÏˆÏ„Î” Ï„Îż ÏƒÏ†ÎŹÎ»ÎŒÎ±","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.","These funds have been borrowed and are not available for withdrawal at this time.":"΀α ÎșÎ”Ï†ÎŹÎ»Î±Îčα Î±Ï…Ï„ÎŹ Î­Ï‡ÎżÏ…Îœ ΎαΜΔÎčÏƒÏ„Î”ÎŻ ÎșαÎč ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčΌα ÎłÎčα Î±ÎœÎŹÎ»Î·ÏˆÎ· Î±Ï…Ï„Îź τη στÎčÎłÎŒÎź.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.","This address is blocked on app.aave.com because it is associated with one or more":"This address is blocked on app.aave.com because it is associated with one or more","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč σχΔΎόΜ Ï†Ï„ÎŹÏƒÎ”Îč ÏƒÏ„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ Ï„ÎżÏ…. Î„Ï€ÎŹÏÏ‡Î”Îč ÎŒÏŒÎœÎż ",["messageValue"]," ÎŽÎčαΞέσÎčÎŒÎż ÎłÎčα ΎαΜΔÎčσΌό από Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč σχΔΎόΜ Ï†Ï„ÎŹÏƒÎ”Îč ÏƒÏ„Îż όρÎčÎż της Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚ Ï„ÎżÏ…. ÎœÏŒÎœÎż ",["messageValue"]," ÎŒÏ€ÎżÏÎ”ÎŻ Μα Ï€Î±ÏÎ±ÏƒÏ‡Î”ÎžÎ”ÎŻ σΔ Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč Ï†ÎžÎŹÏƒÎ”Îč ÏƒÏ„Îż Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ Ï„ÎżÏ…. Î€ÎŻÏ€ÎżÏ„Î± ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎż ÎłÎčα ΎαΜΔÎčσΌό από Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"Αυτό Ï„Îż πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż έχΔÎč Ï†Ï„ÎŹÏƒÎ”Îč ÏƒÏ„Îż όρÎčÎż της Ï€ÏÎżÏƒÏ†ÎżÏÎŹÏ‚ Ï„ÎżÏ…. Î€ÎŻÏ€ÎżÏ„Î± ΎΔΜ Î”ÎŻÎœÎ±Îč ÎŽÎčαΞέσÎčÎŒÎż ÎłÎčα Ï€ÏÎżÎŒÎźÎžÎ”Îčα από Î±Ï…Ï„Îź τηΜ Î±ÎłÎżÏÎŹ.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. <0>More details","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details","This asset is frozen due to an Aave community decision. <0>More details":"This asset is frozen due to an Aave community decision. <0>More details","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"Αυτός Îż Ï…Ï€ÎżÎ»ÎżÎłÎčσΌός gas Î”ÎŻÎœÎ±Îč ÎŒÏŒÎœÎż ÎŒÎčα ΔÎșÏ„ÎŻÎŒÎ·ÏƒÎ·. ΀ο Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας Ξα ÎșÎ±ÎžÎżÏÎŻÏƒÎ”Îč τηΜ τÎčÎŒÎź της ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚. ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï„ÏÎżÏ€ÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” τÎčς ÏÏ…ÎžÎŒÎŻÏƒÎ”Îčς gas Î±Ï€Î”Ï…ÎžÎ”ÎŻÎ±Ï‚ από Ï„ÎżÎœ Ï€ÎŹÏÎżÏ‡Îż Ï„ÎżÏ… Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ σας.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"Αυτό Î”ÎŻÎœÎ±Îč Ï„Îż ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î”. ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î” ΌΔ ÎČÎŹÏƒÎ· τηΜ Î”ÎŸÎ±ÏƒÏ†ÎŹÎ»ÎčÏƒÎź σας ÎșαÎč ΌέχρÎč Μα ΔπÎčÏ„Î”Ï…Ï‡ÎžÎ”ÎŻ Ï„Îż Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż ΎαΜΔÎčÏƒÎŒÎżÏ.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"Αυτό Î”ÎŻÎœÎ±Îč Ï„Îż ÏƒÏ…ÎœÎżÎ»ÎčÎșό Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï€ÏÎżÎŒÎ·ÎžÎ”ÏÏƒÎ”Ï„Î” σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό. ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï€ÏÎżÎŒÎ·ÎžÎ”ÏÏƒÎ”Ï„Î” Ï„Îż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż Ï„ÎżÏ… Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ σας ΌέχρÎč Μα ΔπÎčÏ„Î”Ï…Ï‡ÎžÎ”ÎŻ Ï„Îż Î±ÎœÏŽÏ„Î±Ï„Îż όρÎčÎż Ï€ÏÎżÎŒÎ·ÎžÎ”ÎčώΜ.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"Αυτό αΜτÎčÏ€ÏÎżÏƒÏ‰Ï€Î”ÏÎ”Îč Ï„Îż ÎșÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż ÏƒÏ„Îż ÎżÏ€ÎżÎŻÎż ÎŒÎčα Ξέση ΎαΜΔÎčÏƒÎŒÎżÏ Ξα ÎžÎ”Ï‰ÏÎ·ÎžÎ”ÎŻ Ï…Ï€ÎżÎ”ÎłÎłÏ…Î·ÎŒÎ­ÎœÎ· ÎșαÎč Ξα υπόÎșΔÎčταÎč σΔ ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ· ÎłÎčα ÎșΏΞΔ Î”ÎłÎłÏÎ·ÏƒÎ·. ΓÎčα Ï€Î±ÏÎŹÎŽÎ”ÎčÎłÎŒÎ±, Î”ÎŹÎœ ÎŒÎčα Î”ÎłÎłÏÎ·ÏƒÎ· έχΔÎč ÎșÎ±Ï„ÏŽÏ„Î±Ï„Îż όρÎčÎż ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚ 80%, αυτό ÏƒÎ·ÎŒÎ±ÎŻÎœÎ”Îč ότÎč η Ξέση Ξα ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčηΞΔί όταΜ η Î±ÎŸÎŻÎ± Ï„ÎżÏ… Ï‡ÏÎ­ÎżÏ…Ï‚ αΜέρχΔταÎč ÏƒÏ„Îż 80% της Î±ÎŸÎŻÎ±Ï‚ της Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚.","Time left to unstake":"Î§ÏÏŒÎœÎżÏ‚ Ï€ÎżÏ… Î±Ï€ÎżÎŒÎ­ÎœÎ”Îč ÎłÎčα Ï„Îż ΟΔÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Tip: Try increasing slippage or reduce input amount","To":"To","To borrow you need to supply any asset to be used as collateral.":"ΓÎčα Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻÏ„Î” πρέπΔÎč Μα Ï€ÏÎżÏƒÎșÎżÎŒÎŻÏƒÎ”Ï„Î” ÎżÏ€ÎżÎčÎżÎŽÎźÏ€ÎżÏ„Î” πΔρÎčÎżÏ…ÏƒÎčαÎșό ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎż Ï€ÎżÏ… Ξα χρησÎčÎŒÎżÏ€ÎżÎčηΞΔί ως Î”ÎłÎłÏÎ·ÏƒÎ·.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more","To repay on behalf of a user an explicit amount to repay is needed":"ΓÎčα τηΜ ΔΟόφληση ΔÎș ÎŒÎ­ÏÎżÏ…Ï‚ ΔΜός Ï‡ÏÎźÏƒÏ„Î· απαÎčÏ„Î”ÎŻÏ„Î±Îč έΜα ρητό Ï€ÎżÏƒÏŒ Ï€ÏÎżÏ‚ ΔΟόφληση","To request access for this permissioned market, please visit: <0>Acces Provider Name":"ΓÎčα Μα Î¶Î·Ï„ÎźÏƒÎ”Ï„Î” πρόσÎČαση σΔ Î±Ï…Ï„Îź τηΜ αΎΔÎčÎżÎŽÎżÏ„Î·ÎŒÎ­ÎœÎ· Î±ÎłÎżÏÎŹ, ΔπÎčσÎșÎ”Ï†ÎžÎ”ÎŻÏ„Î” τηΜ ÎčÏƒÏ„ÎżÏƒÎ”Î»ÎŻÎŽÎ±: <0>ÎŒÎœÎżÎŒÎ± Î Î±ÏÏŒÏ‡ÎżÏ… ΠρόσÎČασης","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.","Top 10 addresses":"Top 10 addresses","Total available":"ÎŁÏÎœÎżÎ»Îż ÎŽÎčαΞέσÎčΌωΜ","Total borrowed":"ÎŁÏÎœÎżÎ»Îż ΎαΜΔÎčÎșώΜ","Total borrows":"ÎŁÏÎœÎżÎ»Îż ÎŽÎ±ÎœÎ”ÎŻÏ‰Îœ","Total emission per day":"ÎŁÏ…ÎœÎżÎ»ÎčÎșές ΔÎșÏ€ÎżÎŒÏ€Î­Ï‚ Î±ÎœÎŹ ηΌέρα","Total interest accrued":"Total interest accrued","Total market size":"ÎŁÏ…ÎœÎżÎ»ÎčÎșό ÎŒÎ­ÎłÎ”ÎžÎżÏ‚ της Î±ÎłÎżÏÎŹÏ‚","Total supplied":"ÎŁÏÎœÎżÎ»Îż παρΔχόΌΔΜωΜ","Total worth":"ÎŁÏ…ÎœÎżÎ»ÎčÎșÎź Î±ÎŸÎŻÎ±","Track wallet":"Track wallet","Track wallet balance in read-only mode":"Track wallet balance in read-only mode","Transaction failed":"Η ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎź απέτυχΔ","Transaction history":"Transaction history","Transaction history is not currently available for this market":"Transaction history is not currently available for this market","Transaction overview":"ΕπÎčσÎșόπηση ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎźÏ‚","Transactions":"Transactions","Unavailable":"Μη ÎŽÎčαΞέσÎčÎŒÎż","Unbacked":"Μη Ï…Ï€ÎżÏƒÏ„Î·ÏÎčÎ¶ÏŒÎŒÎ”ÎœÎż","Unbacked mint cap is exceeded":"΄πέρÎČαση Ï„ÎżÏ… Î±ÎœÏŽÏ„Î±Ï„ÎżÏ… ÎżÏÎŻÎżÏ… ÎœÎżÎŒÎčÏƒÎŒÎ±Ï„ÎżÎșÎżÏ€Î”ÎŻÎżÏ… Ï‡Ï‰ÏÎŻÏ‚ Î±ÎœÏ„ÎŻÎșρÎčσΌα","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["Underlying asset does not exist in ",["marketName"]," v3 Market, hence this position cannot be migrated."],"Underlying token":"Underlying token","Unstake":"Unstake","Unstake now":"ΞΔÎșλΔÎčΎώστΔ τώρα","Unstake window":"Î Î±ÏÎŹÎžÏ…ÏÎż ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚","Unstake {symbol}":["Unstake ",["symbol"]],"Unstaked":"Unstaked","Unstaking {symbol}":["Unstaking ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Use it to vote for or against active proposals.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.","Used as collateral":"ΧρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ως Î”ÎłÎłÏÎ·ÏƒÎ·","User cannot withdraw more than the available balance":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ ÎŒÏ€ÎżÏÎ”ÎŻ Μα ÎșÎŹÎœÎ”Îč Î±ÎœÎŹÎ»Î·ÏˆÎ· ÎŒÎ”ÎłÎ±Î»ÏÏ„Î”ÏÎ· από Ï„Îż ÎŽÎčαΞέσÎčÎŒÎż Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż","User did not borrow the specified currency":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ ÎŽÎ±ÎœÎ”ÎŻÏƒÏ„Î·ÎșΔ Ï„Îż ÎșÎ±ÎžÎżÏÎčÏƒÎŒÎ­ÎœÎż ΜόΌÎčσΌα","User does not have outstanding stable rate debt on this reserve":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ έχΔÎč Î±ÎœÎ”ÎŸÏŒÏ†Î»Î·Ï„Îż Ï‡ÏÎ­ÎżÏ‚ ÏƒÏ„Î±ÎžÎ”ÏÎżÏ ΔπÎčÏ„ÎżÎșÎŻÎżÏ… σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό","User does not have outstanding variable rate debt on this reserve":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ ΎΔΜ έχΔÎč Î±ÎœÎ”ÎŸÏŒÏ†Î»Î·Ï„Îż Ï‡ÏÎ­ÎżÏ‚ ΌΔταÎČÎ»Î·Ï„ÎżÏ ΔπÎčÏ„ÎżÎșÎŻÎżÏ… σΔ αυτό Ï„Îż Î±Ï€ÎżÎžÎ”ÎŒÎ±Ï„ÎčÎșό","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"Ο Ï‡ÏÎźÏƒÏ„Î·Ï‚ Ï€ÏÎżÏƒÏ€Î±ÎžÎ”ÎŻ Μα ΎαΜΔÎčÏƒÏ„Î”ÎŻ Ï€ÎżÎ»Î»Î±Ï€Î»ÎŹ πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±, συΌπΔρÎčλαΌÎČÎ±ÎœÎżÎŒÎ­ÎœÎżÏ… ΔΜός Î±Ï€ÎżÎŒÎżÎœÏ‰ÎŒÎ­ÎœÎżÏ… πΔρÎčÎżÏ…ÏƒÎčαÎșÎżÏ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎżÏ…","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.","Utilization Rate":"Î ÎżÏƒÎżÏƒÏ„ÏŒ χρησÎčÎŒÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚","VIEW TX":"VIEW TX","VOTE NAY":"ΚΗΊΙΣ΀Ε ΚΑ΀Α","VOTE YAE":"ΚΗΊΙΣ΀Ε ΄ΠΕΥ","Variable":"ΜΔταÎČλητό","Variable debt supply is not zero":"Η Ï€ÏÎżÏƒÏ†ÎżÏÎŹ ΌΔταÎČÎ»Î·Ï„ÎżÏ Ï‡ÏÎ­ÎżÏ…Ï‚ ΎΔΜ Î”ÎŻÎœÎ±Îč ΌηΎΔΜÎčÎșÎź","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Variable rate","Version 2":"Version 2","Version 3":"Version 3","View":"View","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"View Transactions","View all":"View all","View all votes":"View all votes","View contract":"View contract","View details":"Î ÏÎżÎČολΟ Î»Î”Ï€Ï„ÎżÎŒÎ”ÏÎ”ÎčώΜ","View on Explorer":"Î ÏÎżÎČολΟ ÏƒÏ„ÎżÎœ Explorer","Vote NAY":"ÎšÎ·Ï†ÎŻÏƒÏ„Î” ΚΑ΀Α","Vote YAE":"ÎšÎ·Ï†ÎŻÏƒÏ„Î” ΄ΠΕΥ","Voted NAY":"Voted NAY","Voted YAE":"Voted YAE","Votes":"Votes","Voting":"Voting","Voting is on":"Voting is on","Voting power":"ΔύΜαΌη ÏˆÎźÏ†ÎżÏ…","Voting results":"Î‘Ï€ÎżÏ„Î”Î»Î­ÏƒÎŒÎ±Ï„Î± ÏˆÎ·Ï†ÎżÏ†ÎżÏÎŻÎ±Ï‚","Wallet Balance":"Wallet Balance","Wallet balance":"Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż Ï€ÎżÏÏ„ÎżÏ†ÎżÎ»ÎčÎżÏ","Wallet not detected. Connect or install wallet and retry":"΀ο Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ΎΔΜ Î”ÎœÏ„ÎżÏ€ÎŻÏƒÏ„Î·ÎșΔ. ÎŁÏ…ÎœÎŽÎ­ÏƒÏ„Î” Îź ΔγÎșÎ±Ï„Î±ÏƒÏ„ÎźÏƒÏ„Î” Ï„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ÎșαÎč Î”Ï€Î±ÎœÎ±Î»ÎŹÎČΔτΔ τηΜ Ï€ÏÎżÏƒÏ€ÎŹÎžÎ”Îčα","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"΀α Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îčα Ï€Î±ÏÎ­Ï‡ÎżÎœÏ„Î±Îč από ΕΟωτΔρÎčÎșÎżÏÏ‚ Î Î±ÏÏŒÏ‡ÎżÏ…Ï‚ ÎșαÎč ΔπÎčÎ»Î­ÎłÎżÎœÏ„Î±Ï‚ τα ÏƒÏ…ÎŒÏ†Ï‰ÎœÎ”ÎŻÏ„Î” ΌΔ Ï„ÎżÏ…Ï‚ ÎŒÏÎżÏ…Ï‚ τωΜ ΔΜ Î»ÏŒÎłÏ‰ ΠαρόχωΜ. Η πρόσÎČÎ±ÏƒÎź σας ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč ΔΜΎέχΔταÎč Μα Î”ÎŸÎ±ÏÏ„ÎŹÏ„Î±Îč από τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Ï„ÎżÏ… ΕΟωτΔρÎčÎșÎżÏ Î Î±ÏÏŒÏ‡ÎżÏ….","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"We couldn’t detect a wallet. Connect a wallet to stake and view your balance.","We suggest you go back to the Dashboard.":"We suggest you go back to the Dashboard.","Website":"Website","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"ΌταΜ Ï€ÏÎ±ÎłÎŒÎ±Ï„ÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·, ÎżÎč ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčητές ΔπÎčÏƒÏ„ÏÎ­Ï†ÎżÏ…Îœ έως ÎșαÎč Ï„Îż 50% Ï„ÎżÏ… Î±ÎœÎ”ÎŸÏŒÏ†Î»Î·Ï„ÎżÏ… ΎαΜΔÎčÏƒÎŒÎ­ÎœÎżÏ… Ï€ÎżÏƒÎżÏ ÎłÎčα Î»ÎżÎłÎ±ÏÎčασΌό Ï„ÎżÏ… ΎαΜΔÎčÎżÎ»ÎźÏ€Ï„Î·. ΣΔ Î±ÎœÏ„ÎŹÎ»Î»Î±ÎłÎŒÎ±, ÎŒÏ€ÎżÏÎżÏÎœ Μα Î±ÎłÎżÏÎŹÏƒÎżÏ…Îœ τÎčς Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς ΌΔ έÎșπτωση ÎșαÎč Μα ÎșÏÎ±Ï„ÎźÏƒÎżÏ…Îœ τη ÎŽÎčÎ±Ï†ÎżÏÎŹ (Ï€ÎżÎčÎœÎź ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎŻÎ·ÏƒÎ·Ï‚) ως ÎŒÏ€ÏŒÎœÎżÏ…Ï‚.","With a voting power of <0/>":"ΜΔ ΎύΜαΌη ÏˆÎźÏ†ÎżÏ… <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more","Withdraw":"Î‘ÎœÎŹÎ»Î·ÏˆÎ·","Withdraw & Switch":"Withdraw & Switch","Withdraw and Switch":"Withdraw and Switch","Withdraw {symbol}":["Î‘ÎœÎŹÎ»Î·ÏˆÎ· ",["symbol"]],"Withdrawing":"Withdrawing","Withdrawing and Switching":"Withdrawing and Switching","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Withdrawing this amount will reduce your health factor and increase risk of liquidation.","Withdrawing {symbol}":["Î‘ÎœÎŹÎ»Î·ÏˆÎ· ",["symbol"]],"Wrong Network":"Î›ÎŹÎžÎżÏ‚ ÎŽÎŻÎșÏ„Ï…Îż","YAE":"΄ΠΕΥ","You are entering Isolation mode":"ΕÎčσέρχΔστΔ σΔ λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"ΔΔΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Î»Î»ÎŹÎŸÎ”Ï„Î” τη Ï‡ÏÎźÏƒÎ· ως λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚ ÎłÎčα αυτό Ï„Îż ΜόΌÎčσΌα, ÎŽÎčότÎč Ξα Ï€ÏÎżÎșαλέσΔÎč ÎșÎ»ÎźÏƒÎ· Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚","You can not use this currency as collateral":"ΔΔΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα χρησÎčÎŒÎżÏ€ÎżÎčÎźÏƒÎ”Ï„Î” αυτό Ï„Îż ΜόΌÎčσΌα ως Î”ÎłÎłÏÎ·ÏƒÎ·","You can not withdraw this amount because it will cause collateral call":"ΔΔΜ ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Ï€ÎżÏƒÏÏÎ”Ï„Î” αυτό Ï„Îż Ï€ÎżÏƒÏŒ, ÎŽÎčότÎč Ξα Ï€ÏÎżÎșληΞΔί ÎșÎ»ÎźÏƒÎ· Î”ÎłÎłÏÎ·ÏƒÎ·Ï‚","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Î±Ï€ÎżÏƒÏÏÎ”Ï„Î” τα πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ σας ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ± από τη ÎœÎżÎœÎŹÎŽÎ± Î‘ÏƒÏ†Î±Î»Î”ÎŻÎ±Ï‚ ÎŒÏŒÎœÎż Î±Ï†ÎżÏ Î»ÎźÎŸÎ”Îč η Ï€Î”ÏÎŻÎżÎŽÎżÏ‚ Î±ÎœÎ±ÎŒÎżÎœÎźÏ‚ ÎșαÎč Ï„Îż Ï€Î±ÏÎŹÎžÏ…ÏÎż ΟΔÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚ Î”ÎŻÎœÎ±Îč Î”ÎœÎ”ÏÎłÏŒ.","You can report incident to our <0>Discord or<1>Github.":"You can report incident to our <0>Discord or<1>Github.","You cancelled the transaction.":"ΑÎșυρώσατΔ τη ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎź.","You did not participate in this proposal":"ΔΔΜ ÏƒÏ…ÎŒÎŒÎ”Ï„Î”ÎŻÏ‡Î±Ï„Î” στηΜ Ï€Î±ÏÎżÏÏƒÎ± πρόταση","You do not have supplies in this currency":"ΔΔΜ έχΔτΔ Ï€ÏÎżÎŒÎźÎžÎ”ÎčΔς σΔ αυτό Ï„Îż ΜόΌÎčσΌα","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"ΔΔΜ έχΔτΔ αρÎșÎ”Ï„ÎŹ Ï‡ÏÎźÎŒÎ±Ï„Î± ÏƒÏ„Îż Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας ÎłÎčα Μα Î±Ï€ÎżÏ€Î»Î·ÏÏŽÏƒÎ”Ï„Î” ÎżÎ»ÏŒÎșÎ»Î·ÏÎż Ï„Îż Ï€ÎżÏƒÏŒ. Î•ÎŹÎœ Ï€ÏÎżÏ‡Ï‰ÏÎźÏƒÎ”Ï„Î” στηΜ Î±Ï€ÎżÏ€Î»Î·ÏÏ‰ÎŒÎź ΌΔ Ï„Îż Ï„ÏÎ­Ï‡ÎżÎœ Ï€ÎżÏƒÏŒ τωΜ Ï‡ÏÎ·ÎŒÎŹÏ„Ï‰Îœ σας, Ξα ΔΟαÎșÎżÎ»ÎżÏ…ÎžÎ”ÎŻÏ„Î” Μα έχΔτΔ ÎŒÎčα ÎŒÎčÎșÏÎź Ξέση ΎαΜΔÎčÏƒÎŒÎżÏ ÏƒÏ„Îż ταΌπλό σας.","You have no AAVE/stkAAVE/aAave balance to delegate.":"You have no AAVE/stkAAVE/aAave balance to delegate.","You may borrow up to <0/> GHO at <1/> (max discount)":"You may borrow up to <0/> GHO at <1/> (max discount)","You may enter a custom amount in the field.":"You may enter a custom amount in the field.","You switched to {0} rate":["Î‘Î»Î»ÎŹÎŸÎ±Ï„Î” σΔ Ï€ÎżÏƒÎżÏƒÏ„ÏŒ ",["0"]],"You unstake here":"ÎœÏ€ÎżÏÎ”ÎŻÏ„Î” Μα ΟΔÎșλΔÎčΎώσΔτΔ ΔΎώ","You voted {0}":["ÎšÎ·Ï†ÎŻÏƒÎ±Ï„Î” ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"Θα ÎČÎłÎ”ÎŻÏ„Î” από τη λΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŒÏŒÎœÏ‰ÏƒÎ·Ï‚ ÎșαÎč Ώλλα tokens ÎŒÏ€ÎżÏÎżÏÎœ Ï€Î»Î­ÎżÎœ Μα χρησÎčÎŒÎżÏ€ÎżÎčÎ·ÎžÎżÏÎœ ως Î”ÎłÎłÏÎ·ÏƒÎ·","You {action} <0/> {symbol}":["Î•ÏƒÎ”ÎŻÏ‚ ",["action"]," <0/> ",["symbol"]],"You've successfully switched borrow position.":"You've successfully switched borrow position.","You've successfully switched tokens.":"You've successfully switched tokens.","You've successfully withdrew & switched tokens.":"You've successfully withdrew & switched tokens.","Your balance is lower than the selected amount.":"Your balance is lower than the selected amount.","Your borrows":"΀α ÎŽÎŹÎœÎ”Îčα σας","Your current loan to value based on your collateral supplied.":"΀ο Ï„ÏÎ­Ï‡ÎżÎœ ÎŽÎŹÎœÎ”ÎčÎż Ï€ÏÎżÏ‚ Î±ÎŸÎŻÎ± ΌΔ ÎČÎŹÏƒÎ· τÎčς παρΔχόΌΔΜΔς Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς σας.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Ο ÏƒÏ…ÎœÏ„Î”Î»Î”ÏƒÏ„ÎźÏ‚ Ï…ÎłÎ”ÎŻÎ±Ï‚ ÎșαÎč Ï„Îż ÎŽÎŹÎœÎ”ÎčÎż Ï€ÏÎżÏ‚ Î±ÎŸÎŻÎ± ÎșÎ±ÎžÎżÏÎŻÎ¶ÎżÏ…Îœ τη ÎŽÎčÎ±ÏƒÏ†ÎŹÎ»Îčση τωΜ Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”ÏŽÎœ σας. ΓÎčα Μα Î±Ï€ÎżÏ†ÏÎłÎ”Ï„Î” τÎčς ÏÎ”Ï…ÏƒÏ„ÎżÏ€ÎżÎčÎźÏƒÎ”Îčς ÎŒÏ€ÎżÏÎ”ÎŻÏ„Î” Μα Ï€Î±ÏÎŹÏƒÏ‡Î”Ï„Î” πΔρÎčσσότΔρΔς Î”ÎŸÎ±ÏƒÏ†Î±Î»ÎŻÏƒÎ”Îčς Îź Μα Î”ÎŸÎżÏ†Î»ÎźÏƒÎ”Ï„Î” ΎαΜΔÎčαÎșές ΞέσΔÎčς.","Your info":"ΟÎč Ï€Î»Î·ÏÎżÏ†ÎżÏÎŻÎ”Ï‚ σας","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.","Your reward balance is 0":"΀ο Ï…Ï€ÏŒÎ»ÎżÎčÏ€Îż της Î±ÎœÏ„Î±ÎŒÎżÎčÎČÎźÏ‚ σας Î”ÎŻÎœÎ±Îč 0","Your supplies":"ΟÎč Ï€ÏÎżÎŒÎźÎžÎ”Îčές σας","Your voting info":"ΟÎč Ï€Î»Î·ÏÎżÏ†ÎżÏÎŻÎ”Ï‚ ÏˆÎźÏ†ÎżÏ… σας","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Your voting power is based on your AAVE/stkAAVE balance and received delegations.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Your ",["name"]," wallet is empty. Purchase or transfer assets or use <0>",["0"]," to transfer your ",["network"]," assets."],"Your {name} wallet is empty. Purchase or transfer assets.":["΀ο Ï€ÎżÏÏ„ÎżÏ†ÏŒÎ»Îč σας ",["name"]," Î”ÎŻÎœÎ±Îč ΏΎΔÎčÎż. Î‘ÎłÎżÏÎŹÏƒÏ„Î” Îź ΌΔταφέρΔτΔ πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±."],"Your {networkName} wallet is empty. Get free test assets at":["Your ",["networkName"]," wallet is empty. Get free test assets at"],"Your {networkName} wallet is empty. Get free test {0} at":["Your ",["networkName"]," wallet is empty. Get free test ",["0"]," at"],"Zero address not valid":"Η ΌηΎΔΜÎčÎșÎź ÎŽÎčΔύΞυΜση ΎΔΜ Î”ÎŻÎœÎ±Îč έγÎșυρη","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"πΔρÎčÎżÏ…ÏƒÎčαÎșÎŹ ÏƒÏ„ÎżÎčÏ‡Î”ÎŻÎ±","blocked activities":"blocked activities","copy the error":"αΜτÎčÎłÏÎŹÏˆÏ„Î” Ï„Îż ÏƒÏ†ÎŹÎ»ÎŒÎ±","disabled":"Î±Ï€Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","documentation":"τΔÎșÎŒÎ·ÏÎŻÏ‰ÏƒÎ·","enabled":"Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎčÎ·ÎŒÎ­ÎœÎż","ends":"τΔλΔÎčώΜΔÎč","for":"for","of":"of","on":"Î”ÎœÎ”ÏÎłÎżÏ€ÎżÎŻÎ·ÏƒÎ·","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"παραÎșÎ±Î»ÎżÏÎŒÎ” Î”Î»Î­ÎłÎŸÏ„Î” ότÎč Ï„Îż Ï€ÎżÏƒÏŒ Ï€ÎżÏ… ΞέλΔτΔ Μα παρέχΔτΔ ΎΔΜ χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč Î”Ï€ÎŻ Ï„ÎżÏ… Ï€Î±ÏÏŒÎœÏ„ÎżÏ‚ ÎłÎčα ÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±. Î•ÎŹÎœ χρησÎčÎŒÎżÏ€ÎżÎčÎ”ÎŻÏ„Î±Îč ÎłÎčα ÎșÎ»Î”ÎŻÎŽÏ‰ÎŒÎ±, η ÏƒÏ…ÎœÎ±Î»Î»Î±ÎłÎź σας ΔΜΎέχΔταÎč Μα Î±Ï€ÎżÏ„ÏÏ‡Î”Îč.","repaid":"repaid","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: ",["0"]],"staking view":"Ï€ÏÎżÎČολΟ ÎșλΔÎčÎŽÏŽÎŒÎ±Ï„ÎżÏ‚","starts":"starts","stkAAVE holders get a discount on GHO borrow rate":"stkAAVE holders get a discount on GHO borrow rate","to":"to","tokens is not the same as staking them. If you wish to stake your":"tokens ΎΔΜ Î”ÎŻÎœÎ±Îč Ï„Îż ÎŻÎŽÎčÎż ΌΔ Ï„Îż Μα τα ÎșλΔÎčΎώΜΔτΔ. Î•ÎŹÎœ ΔπÎčÎžÏ…ÎŒÎ”ÎŻÏ„Î” Μα ÎșλΔÎčΎώσΔτΔ τα","tokens, please go to the":"tokens, παραÎșÎ±Î»ÎżÏÎŒÎ” ΌΔταÎČÎ”ÎŻÏ„Î” ÏƒÏ„Îż","withdrew":"withdrew","{0}":[["0"]],"{0} Balance":[["0"]," Î„Ï€ÏŒÎ»ÎżÎčÏ€Îż"],"{0} Faucet":[["0"]," Βρύση"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"η"],"{h}h":[["h"],"ω"],"{label}":[["label"]],"{m}m":[["m"],"λ"],"{networkName} Faucet":[["networkName"]," Βρύση"],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," assets selected"],"{stepName}":[["stepName"]],"{s}s":[["s"],"ÎŽ"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file diff --git a/src/locales/el/messages.po b/src/locales/el/messages.po index a5451a567d..602ddc34be 100644 --- a/src/locales/el/messages.po +++ b/src/locales/el/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: aave-interface\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-11-27 18:06\n" +"PO-Revision-Date: 2024-12-11 18:06\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1006,7 +1006,7 @@ msgid "Efficiency mode (E-Mode)" msgstr "ΛΔÎčÏ„ÎżÏ…ÏÎłÎŻÎ± Î±Ï€ÎżÎŽÎżÏ„ÎčÎșότητας (E-Mode)" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." +msgid "Eligible for the Merit program." msgstr "" #: src/layouts/FeedbackDialog.tsx diff --git a/src/locales/es/messages.js b/src/locales/es/messages.js index faac417c7f..18047cfc62 100644 --- a/src/locales/es/messages.js +++ b/src/locales/es/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":".CSV",".JSON":".JSON","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>añade <3/> stkAAVE para tomar prestado al <4/> (descuento mĂĄximo)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Añade stkAAVE para ver la tasa de prĂ©stamo con descuento","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth es un activo con rebase. Visita la <1>documentaciĂłn para aprender mĂĄs.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>AtenciĂłn: Los cambios de parĂĄmetros a travĂ©s de la gobernanza pueden alterar el factor de salud de tu cuenta y el riesgo de liquidaciĂłn. Sigue el <1>foro de gobierno de Aave para mantenerte actualizado.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>Tolerancia de deslizamiento <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"Los poseedores de AAVE, GHO y ABPT (solo en la red de Ethereum) pueden stakear sus activos en el MĂłdulo de Seguridad para añadir mĂĄs seguridad al protocolo y obtener incentivos de seguridad. En el caso de un evento de shortfall, tu stakeo puede ser reducido para cubrir el dĂ©ficit. proporcionando una capa adicional de protecciĂłn para el protocolo.","APR":"APR","APY":"APY","APY change":"Cambio de APY","APY type":"Tipo APY","APY type change":"Cambio tipo de APY","APY with discount applied":"APY con descuento aplicado","APY, borrow rate":"APY, tasa de prĂ©stamo","APY, variable":"APY, variable","AToken supply is not zero":"El balance de AToken no es cero","Aave Governance":"Gobierno de Aave","Aave aToken":"aToken de Aave","Aave debt token":"Token de deuda de Aave","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave es un protocolo totalmente descentralizado, gobernado por la comunidad de poseedores de tokens AAVE. Los poseedores de tokens AAVE discuten, proponen y votan colectivamente sobre las actualizaciones del protocolo. Los poseedores de tokens AAVE (solo en la red Ethereum) pueden votar ellos mismos sobre nuevas propuestas o delegarse a una direcciĂłn de su elecciĂłn. Para aprender mĂĄs, consulta la","Aave per month":"Aave por mes","About GHO":"Sobre GHO","Account":"Cuenta","Action cannot be performed because the reserve is frozen":"No se puede realizar la acciĂłn porque la reserva estĂĄ congelada","Action cannot be performed because the reserve is paused":"No se puede realizar la acciĂłn porque la reserva estĂĄ pausada","Action requires an active reserve":"La acciĂłn requiere una reserva activa","Activate Cooldown":"Activar Cooldown","Add stkAAVE to see borrow APY with the discount":"Añade stkAAVE para ver el APY de prĂ©stamo con el descuento","Add to wallet":"Añadir a la cartera","Add {0} to wallet to track your balance.":["Añade ",["0"]," a tu cartera para hacer un seguimiento del balance."],"Address is not a contract":"La direcciĂłn no es un contrato","Addresses":"Direcciones","Addresses ({0})":["Direcciones (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"ÂĄTodo listo!","All proposals":"Todas las propuestas","All transactions":"Todas las transacciones","Allowance required action":"AcciĂłn de permiso requerida","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"Te permite decidir si utilizar un activo suministrado como garantĂ­a. Un activo utilizado como garantĂ­a afectarĂĄ a tu poder de prĂ©stamo y factor de salud.","Amount":"Cantidad","Amount After Fee":"Amount After Fee","Amount claimable":"Cantidad reclamable","Amount in cooldown":"Cantidad en cooldown","Amount must be greater than 0":"La cantidad debe ser mayor que 0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Cantidad para migrar","Amount to unstake":"Cantidad para unstakear","An error has occurred fetching the proposal.":"Se ha producido un error al recuperar la propuesta.","Approve Confirmed":"AprobaciĂłn confirmada","Approve with":"Aprobar con","Approve {symbol} to continue":["Aprueba ",["symbol"]," para continuar"],"Approving {symbol}...":["Aprobando ",["symbol"],"..."],"Array parameters that should be equal length are not":"Los parĂĄmetros del array que deberĂ­an ser iguales en longitud no lo son","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"Como resultado de las decisiones del gobierno, este pool de stakeo de ABPT estĂĄ obsoleto. Tienes la flexibilidad de migrar todos tus tokens a v2 o unstakearlos sin ningĂșn periodo de cooldown.","Asset":"Activo","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"Este activo solo se puede utilizar como garantĂ­a en isolation mode con poder de prĂ©stamo limitado. Para entrar en el isolation mode, deshabilita todas las demĂĄs garantĂ­as.","Asset can only be used as collateral in isolation mode only.":"El activo solo puede usarse como garantĂ­a en el Isolation mode Ășnicamente.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["Este activo no se puede migrar porque tienes una garantĂ­a en Isolation Mode en el mercado v3 de ",["marketName"]," que limita los activos prestados. Puedes administrar tu garantĂ­a en el <0>Panel de control V3 de ",["marketName"],""],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["Este activo no se puede migrar debido a una liquidez insuficiente o a una limitaciĂłn del lĂ­mite de prĂ©stamo en el mercado v3 de ",["marketName"],"."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["Este activo no se puede migrar debido a una restricciĂłn del lĂ­mite de suministro en el mercado v3 de ",["marketName"],"."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["Este activo no se puede migrar al mercado V3 de ",["marketName"]," debido a las restricciones del E-mode. Puedes deshabilitar o administrar las categorĂ­as del E-mode en tu <0>Panel de control V3"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["Este activo no se puede migrar al mercado v3 de ",["marketName"],", ya que el activo de garantĂ­a habilitarĂĄ el isolation mode."],"Asset cannot be used as collateral.":"Este activo no puede usarse como garantĂ­a.","Asset category":"CategorĂ­a de activos","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["Este activo estĂĄ congelado en el mercado v3 de ",["marketName"],", por lo tanto, esta posiciĂłn no se puede migrar."],"Asset is not borrowable in isolation mode":"El activo no se puede pedir prestado en isolation mode","Asset is not listed":"El activo no estĂĄ listado","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"El suministro de activos estĂĄ limitado a una cierta cantidad para reducir la exposiciĂłn del protocolo a este activo y ayudar a manejar los riesgos implicados.","Assets":"Activos","Assets to borrow":"Activos a tomar prestado","Assets to supply":"Activos a suministrar","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"Con un descuento","Available":"Disponible","Available liquidity":"Liquidez disponible","Available on":"Disponible en","Available rewards":"Recompensas disponibles","Available to borrow":"Disponible para tomar prestado","Available to supply":"Disponible para suministrar","Back to Dashboard":"Volver al panel de control","Balance":"Balance","Balance to revoke":"Balance a revocar","Balancer Pool":"Pool de Balancer","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Ten cuidado - EstĂĄs muy cerca de la liquidaciĂłn. Considera depositar mĂĄs garantĂ­a o pagar alguno de tus prĂ©stamos","Be mindful of the network congestion and gas prices.":"Ten en cuenta la congestiĂłn de la red y los precios del gas.","Because this asset is paused, no actions can be taken until further notice":"Debido a que este activo estĂĄ en pausa, no se pueden realizar acciones hasta nuevo aviso","Before supplying":"Antes de suministrar","Blocked Address":"DirecciĂłn bloqueada","Borrow":"Tomar prestado","Borrow APY":"APY prĂ©stamo","Borrow APY, variable":"APY prĂ©stamo, variable","Borrow amount to reach {0}% utilization":["Cantidad a tomar prestado para alcanzar el ",["0"],"% de utilizaciĂłn"],"Borrow and repay in same block is not allowed":"Tomar prestado y pagar en el mismo bloque no estĂĄ permitido","Borrow apy":"Apy prĂ©stamo","Borrow balance":"Balance tomado prestado","Borrow balance after repay":"Balance tomado prestado tras pagar","Borrow balance after switch":"Balance de prĂ©stamo despuĂ©s del cambio","Borrow cap":"LĂ­mite del prĂ©stamo","Borrow cap is exceeded":"El lĂ­mite del prĂ©stamo se ha sobrepasado","Borrow info":"InformaciĂłn de prĂ©stamo","Borrow power used":"Capacidad de prĂ©stamo utilizada","Borrow rate":"Borrow rate","Borrow rate change":"Cambio de tasa de prĂ©stamo","Borrow {symbol}":["Tomar prestado ",["symbol"]],"Borrowable":"Borrowable","Borrowed":"Prestado","Borrowed asset amount":"Cantidad de activos tomados prestados","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["Tomar prestado no estĂĄ disponible actualmente para ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"Tomar prestado estĂĄ deshabilitado debido a una decisiĂłn de la comunidad de Aave. <0>MĂĄs informaciĂłn","Borrowing is not enabled":"Tomar prestado no estĂĄ habilitado","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"Tomar prestado no estĂĄ disponible porque estĂĄs usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"Tomar prestado no estĂĄ disponible porque has habilitado el Efficiency Mode (E-Mode) y el Isolation mode. Para administrar el E-Mode y el Isolation Mode, visita tu <0>Panel de control.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["Tomar prestado no estĂĄ disponible porque has habilitado el Efficieny Mode (E-Mode) para la categorĂ­a ",["0"],". Para manejar las categorĂ­as del E-Mode visita tu <0>Panel de control."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"Tomar prestado este activo estĂĄ limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.","Borrowing power and assets are limited due to Isolation mode.":"El poder de prĂ©stamo y los activos estĂĄn limitados debido al Isolation mode.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Tomar prestado esta cantidad reducirĂĄ tu factor de salud y aumentarĂĄ el riesgo de liquidaciĂłn.","Borrowing {symbol}":["Tomando prestado ",["symbol"]],"Both":"Ambos","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Comprar Crypto con Fiat","Buy Crypto with Fiat":"Comprar Crypto con Fiat","Buy {cryptoSymbol} with Fiat":["Comprar ",["cryptoSymbol"]," con Fiat"],"COPIED!":"ÂĄCOPIADO!","COPY IMAGE":"COPIAR IMAGEN","Can be collateral":"Puede ser garantĂ­a","Can be executed":"Puede ser ejecutado","Can't validate the wallet address. Try again.":"No se puede validar la direcciĂłn de la cartera. Vuelve a intentarlo.","Cancel":"Cancelar","Cannot disable E-Mode":"No se puede deshabilitar E-Mode","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Elige cuĂĄnto poder de voto/proposiciĂłn otorgar a otra persona delegando parte de tu balance de AAVe o stkAAVE. Tus tokens permanecerĂĄn en tu cuenta, pero tu delegado podrĂĄ votar o proponer en tu lugar. Si tu balance de AAVE, stkAAVE o aAave cambia, el poder de voto/proposiciĂłn de tu delegado se ajustarĂĄ automĂĄticamente.","Choose one of the on-ramp services":"Elige uno de los servicios on-ramp","Claim":"Reclamar","Claim all":"Reclamar todo","Claim all rewards":"Reclamar todas las recompensas","Claim {0}":["Reclamar ",["0"]],"Claim {symbol}":["Reclamar ",["symbol"]],"Claimable AAVE":"AAVE Reclamable","Claimed":"Reclamado","Claiming":"Reclamando","Claiming {symbol}":["Reclamando ",["symbol"]],"Close":"Cerrar","Collateral":"GarantĂ­a","Collateral balance after repay":"Balance de la garantĂ­a tras pagar","Collateral change":"Cambio de garantĂ­a","Collateral is (mostly) the same currency that is being borrowed":"La garantĂ­a es (en su mayorĂ­a) el mismo activo que se estĂĄ tomando prestado","Collateral to repay with":"GarantĂ­a a pagar con","Collateral usage":"Uso de la garantĂ­a","Collateral usage is limited because of Isolation mode.":"El uso de garantĂ­as estĂĄ limitado debido al Isolation mode.","Collateral usage is limited because of isolation mode.":"El uso de garantĂ­as estĂĄ limitado debido al isolation mode.","Collateral usage is limited because of isolation mode. <0>Learn More":"El uso como garantĂ­a estĂĄ limitado debido al isolation mode. <0>Aprende mĂĄs","Collateralization":"ColateralizaciĂłn","Collector Contract":"Collector Contract","Collector Info":"Collector Info","Confirm transaction":"Confirmar transacciĂłn","Confirming transaction":"Confirmando transacciĂłn","Connect":"Conectar","Connect wallet":"Conectar cartera","Cooldown period":"Periodo de cooldown","Cooldown period warning":"Advertencia periodo de cooldown","Cooldown time left":"Periodo restante de cooldown","Cooldown to unstake":"Cooldown para undstakear","Cooling down...":"Cooling down...","Copy address":"Copiar direcciĂłn","Copy error message":"Copiar mensaje de error","Copy error text":"Copiar el texto del error","Covered debt":"Deuda cubierta","Current LTV":"LTV actual","Current differential":"Diferencial actual","Current v2 Balance":"Balance actual v2","Current v2 balance":"Balance actual v2","Current votes":"Votos actuales","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"El balance de DAI se convertirĂĄ a travĂ©s de los contratos de DSR y luego se suministrarĂĄ como sDAI. El cambio no genera costos adicionales ni deslizamientos.","Dark mode":"Modo oscuro","Dashboard":"Panel de control","Data couldn't be fetched, please reload graph.":"No se pudieron recuperar los datos, por favor recarga el grĂĄfico.","Debt":"Deuda","Debt ceiling is exceeded":"El lĂ­mite de deuda estĂĄ sobrepasado","Debt ceiling is not zero":"El lĂ­mite de deuda no es cero","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"El lĂ­mite de deuda limita la cantidad posible que los usuarios del protocolo pueden tomar prestado contra este activo. El lĂ­mite de deuda es especĂ­fico para los activos en isolation mode y se indica en USD.","Delegated power":"Poder delegado","Destination":"Destination","Details":"Detalles","Developers":"Desarrolladores","Differential":"Diferencial","Disable E-Mode":"Desactivar el E-Mode","Disable fork":"Deshabilitar fork","Disable testnet":"Deshabilitar testnet","Disable {symbol} as collateral":["Desactivar ",["symbol"]," como garantĂ­a"],"Disabled":"Deshabilitado","Disabling E-Mode":"Desactivando E-Mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"Deshabilitar este activo como garantĂ­a afecta tu poder de prĂ©stamo y Factor de Salud.","Disconnect Wallet":"Desconectar cartera","Discord channel":"Canal de Discord","Discount":"Descuento","Discount applied for <0/> staking AAVE":"Descuento aplicado para <0/> AAVE stakeados","Discount model parameters":"ParĂĄmetros del modelo de descuento","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Los parĂĄmetros de descuento son decididos por la comunidad de Aave y pueden cambiar con el tiempo. Consulta el Gobierno para ver actualizaciones y vota para participar. <0>-Aprende mĂĄs","Discountable amount":"Cantidad descontable","Docs":"Docs","Download":"Descargar","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Debido al impacto del factor de salud, se requiere un prĂ©stamo flash para realizar esta transacciĂłn, pero el Gobierno de Aave ha inhabilitado la disponibilidad de prĂ©stamos flash para este activo. Intenta reducir la cantidad o suministrar garantĂ­a adicional.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"Debido a mecĂĄnicas internas de stETH requeridas para el soporte del rebase, no es posible realizar un cambio de garantĂ­a donde stETH es el token de origen.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"El E-Mode incrementa tu LTV para una categorĂ­a seleccionada de activos hasta el <0/>. <1>Aprende mĂĄs","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Editar","Effective interest rate":"Tasa de interĂ©s efectiva","Efficiency mode (E-Mode)":"Modo de eficiencia (E-Mode)","Eligible for the merit program.":"Eligible for the merit program.","Email":"Email","Emode":"Modo E","Enable E-Mode":"Habilitar E-Mode","Enable {symbol} as collateral":["Habilitar ",["symbol"]," como garantĂ­a"],"Enabled":"Habilitado","Enabling E-Mode":"Habilitar E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"Habilitar este activo como garantĂ­a aumenta tu poder prĂ©stamo y el factor de salud. Sin embargo, puede ser liquidado si tu factor de salud cae por debajo de 1.","English":"InglĂ©s","Enter ETH address":"Introduce la direcciĂłn ETH","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"Ingresa una cantidad","Error connecting. Try refreshing the page.":"Error de conexiĂłn. Intenta actualizar la pĂĄgina.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["InterĂ©s compuesto estimado, incluyendo el descuento por Staking ",["0"],"AAVE en el MĂłdulo de Seguridad."],"Estimated time":"Estimated time","Exceeds the discount":"Supera el descuento","Exchange rate":"Tasa de cambio","Expected amount to repay":"Cantidad esperada a pagar","Expires":"Caduca","Export data to":"Exportar datos a","FAQ":"Preguntas frecuentes","FAQS":"FAQS","Failed to load proposal voters. Please refresh the page.":"Error al cargar los votantes de la propuesta. Por favor actualiza la pĂĄgina.","Faucet":"Faucet","Faucet {0}":["Faucet ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"Recuperando datos...","Filter":"Filtro","Fixed rate":"InterĂ©s fijo","Flashloan is disabled for this asset, hence this position cannot be migrated.":"El prĂ©stamo flash estĂĄ deshabilitado para este activo, por lo tanto, esta posiciĂłn no se puede migrar.","For repayment of a specific type of debt, the user needs to have debt that type":"Para el pago de un tipo especĂ­fico de deuda, el usuario necesita tener una deuda de ese tipo","Fork mode is ON":"El fork mode estĂĄ activado","Forum discussion":"Hilo de discusiĂłn del foro","French":"FrancĂ©s","Funds in the Safety Module":"Fondos en el MĂłdulo de Seguridad","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO es un activo nativo descentralizado, digital y respaldado por garantĂ­a, vinculado al USD. Es creado por los usuarios que lo toman prestado contra mĂșltiples garantĂ­as. Cuando el usuario paga su posiciĂłn de prĂ©stamo de GHO, el protocolo quema el GHO de ese usuario. Todos los pagos de interĂ©s acumulados por los acuñadores de GHO serĂĄn transferidos directamente a la tesorerĂ­a de la DAO de Aave.","Get ABP Token":"Obtener Token ABP","Get ABP v2 Token":"Obtener Token ABP v2","Get GHO":"Obtener GHO","Global settings":"ConfiguraciĂłn global","Go Back":"Volver atrĂĄs","Go to Balancer Pool":"Ir al pool de Balancer","Go to V3 Dashboard":"Ir al panel de control V3","Governance":"Gobierno","Greek":"Griego","Health factor":"Factor de salud","Health factor is lesser than the liquidation threshold":"El factor de salud es menor que el umbral de liquidaciĂłn","Health factor is not below the threshold":"El factor de salud no estĂĄ por debajo del umbral","Hide":"Ocultar","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Los poseedores de stkAAVE reciben un descuento en la tasa de prĂ©stamo de GHO","I acknowledge the risks involved.":"Acepto los riesgos involucadros.","I fully understand the risks of migrating.":"Entiendo completamente los riesgos de migrar.","I understand how cooldown ({0}) and unstaking ({1}) work":["Entiendo como el cooldown (",["0"],") y el proceso de unstaking (",["1"],") funcionan"],"If the error continues to happen,<0/> you may report it to this":"Si el error persiste, <0/> podrĂ­as reportarlo a esto","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"Si el factor de salud se encuentra por debajo de 1, la liquidaciĂłn de tu colateral puede ser activada.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["Si NO unstakeas entre ",["0"]," de la ventana de unstakeo, necesitarĂĄs activar el proceso de cooldown de nuevo."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"Si tu relaciĂłn prĂ©stamo-valor supera el umbral de liquidaciĂłn, tu garantĂ­a puede ser liquidada.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["En el Isolation mode, no puedes suministrar otros activos como garantĂ­a. Un lĂ­mite de deuda global limita la capacidad de prĂ©stamo del activo aislado. Para salir del Isolation mode, deshabilita ",["0"]," como garantĂ­a antes de tomar prestado otro activo. Lee mĂĄs en nuestras <0>preguntas frecuentes "],"Inconsistent flashloan parameters":"ParĂĄmetros inconsistentes del prĂ©stamo flash","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"GarantĂ­a insuficiente para cubrir la nueva posiciĂłn de prĂ©stamo. La cartera debe tener poder de prĂ©stamo suficiente para realizar el cambio de deuda.","Interest accrued":"InterĂ©s acumulado","Interest rate rebalance conditions were not met":"No se cumplieron las condiciones de ajuste de tasas de interĂ©s","Interest rate strategy":"Estrategia de tasa de interĂ©s","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Tasa de interĂ©s determinada por el gobierno de Aave. Esta tasa puede cambiar con el tiempo dependiendo de la necesidad de que el suministro de GHO se contraiga/expanda. <0>Aprende mĂĄs","Invalid amount to burn":"Cantidad invĂĄlida para quemar","Invalid amount to mint":"Cantidad invalidad para generar","Invalid bridge protocol fee":"ComisiĂłn de puente de protocolo invĂĄlida","Invalid expiration":"ExpiraciĂłn invĂĄlida","Invalid flashloan premium":"PrĂ©stamo flash invĂĄlido","Invalid return value of the flashloan executor function":"Valor de retorno invĂĄlido en la funciĂłn executor del prĂ©stamo flash","Invalid signature":"Firma invĂĄlida","Isolated":"Aislado","Isolated Debt Ceiling":"LĂ­mite de deuda aislado","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"Los activos aislados han limitado tu capacidad de prĂ©stamo y otros activos no pueden ser usados como garantĂ­a.","Join the community discussion":"Únete a la discusiĂłn de la comunidad","Language":"Idioma","Learn more":"Aprende mĂĄs","Learn more about risks involved":"Aprende mĂĄs sobre los riesgos involucrados","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"Aprende mĂĄs en nuestra guĂ­a <0>Preguntas frecuentes","Learn more.":"Aprende mĂĄs.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Direcciones vinculadas","Links":"Enlaces","Liquidated collateral":"GarantĂ­a liquidada","Liquidation":"LiquidaciĂłn","Liquidation <0/> threshold":"Umbral <0/> de liquidaciĂłn","Liquidation Threshold":"Umbral de liquidaciĂłn","Liquidation at":"LiquidaciĂłn en","Liquidation penalty":"PenalizaciĂłn de liquidaciĂłn","Liquidation risk":"Riesgo de liquidaciĂłn","Liquidation risk parameters":"ParĂĄmetros de riesgo de liquidaciĂłn","Liquidation threshold":"Umbral de liquidaciĂłn","Liquidation value":"Valor de liquidaciĂłn","Loading data...":"Cargando datos...","Ltv validation failed":"La validaciĂłn del LTV ha fallado","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"MAI ha sido pausado debido a una decisiĂłn de la comunidad. Los suministros, prĂ©stamos y pagos se han visto afectados. <0>MĂĄs informaciĂłn","MAX":"MAX","Manage E-Mode":"Manage E-Mode","Manage analytics":"Administrar analĂ­ticas","Market":"Mercado","Markets":"Mercados","Max":"Max","Max LTV":"LTV mĂĄximo","Max slashing":"Max slashing","Max slippage":"Deslizamiento mĂĄximo","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["La cantidad mĂĄxima disponible para tomar prestado contra este activo estĂĄ limitada porque el lĂ­mite de deuda estĂĄ al ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["La mĂĄxima cantidad disponible para tomar prestado es <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"La cantidad mĂĄxima disponible para tomar prestado estĂĄ limitada porque casi se ha alcanzado el lĂ­mite de prĂ©stamo del protocolo.","Maximum amount available to supply is <0/> {0} (<1/>).":["La cantidad mĂĄxima disponible para suministrar es <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["La cantidad mĂĄxima disponible para suministrar estĂĄ limitada porque el lĂ­mite de suministro del protocolo estĂĄ al ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"MĂĄximo disponible para tomar prestado","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Conoce GHO","Menu":"MenĂș","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Migrar","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrar a V3","Migrate to stkABPT v2":"Migrar a stkABPT v2","Migrate to v3":"Migrar a V3","Migrate to {0} v3 Market":["Migrar al mercado V3 de ",["0"]],"Migrate your assets":"Migrate your assets","Migrated":"Migrado","Migrating":"Migrando","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"Migrar mĂșltiples garantĂ­as y activos prestados al mismo tiempo puede ser una operaciĂłn costosa y podrĂ­a fallar en ciertas situaciones.<0>Por lo tanto, no se recomienda migrar posiciones con mĂĄs de 5 activos (depositados + tomados prestados) al mismo tiempo.","Migration risks":"Riesgos de migraciĂłn","Minimum GHO borrow amount":"Cantidad de prĂ©stamo mĂ­nima de GHO","Minimum USD value received":"Valor mĂ­nimo en USD recibido","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Cantidad mĂ­nima recibida","Minimum staked Aave amount":"Cantidad mĂ­nima de Aave stakeado","Minimum {0} received":["MĂ­nimo ",["0"]," recibido"],"More":"MĂĄs","NAY":"NO","Need help connecting a wallet? <0>Read our FAQ":"ÂżNecesitas ayuda para conectar una cartera? <0>Lee nuestras preguntas frecuentes","Net APR":"APR Neto","Net APY":"APY neto","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"El APY neto es el efecto combinado de todos los suministros y prĂ©stamos sobre total, incluidos los incentivos. Es posible tener un APY neto negativo si el APY de la deuda es mayor que el APY de suministro.","Net worth":"Valor neto","Network":"Red","Network not supported for this wallet":"Red no soportada para esta cartera","No assets selected to migrate.":"No hay activos seleccionados para migrar.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"No hay recompensas para reclamar","No search results{0}":["Sin resultados de bĂșsqueda",["0"]],"No transactions yet.":"AĂșn no hay transacciones.","No voting power":"Sin poder de voto","None":"Ninguno","Not a valid address":"DirecciĂłn no vĂĄlida","Not enough balance on your wallet":"No hay suficiente balance en tu cartera","Not enough collateral to repay this amount of debt with":"No hay suficiente garantĂ­a para pagar esta cantidad de deuda con","Not enough staked balance":"No hay suficiente balance stakeado","Not enough voting power to participate in this proposal":"No hay suficiente poder de voto para participar en esta propuesta","Not reached":"No alcanzado","Nothing borrowed yet":"Nada tomado prestado aĂșn","Nothing found":"Sin resultados","Nothing staked":"Nada invertido","Nothing supplied yet":"Nada suministrado aĂșn","Ok, Close":"Vale, cerrar","Operation not supported":"OperaciĂłn no soportada","Oracle price":"Precio del orĂĄculo","Overview":"Resumen","Page not found":"PĂĄgina no encontrada","Participating in this {symbol} reserve gives annualized rewards.":["Participar en esta reserva de ",["symbol"]," da recompensas anuales."],"Pending...":"Pendiente...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Por favor ten siempre en cuenta tu <0>factor de salud (HF) cuando migres parcialmente una posiciĂłn y que tus tasas serĂĄn actualizadas a tasas de la V3.","Please connect a wallet to view your personal information here.":"Por favor conecta una cartera para ver tu informaciĂłn personal aquĂ­.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Por favor conecta tu cartera para cambiar tus tokens.","Please connect your wallet to get free testnet assets.":"Por favor conecta tu cartera para obtener activos testnet gratis.","Please connect your wallet to see migration tool.":"Por favor conecta tu cartera para ver la herramienta de migraciĂłn.","Please connect your wallet to see your supplies, borrowings, and open positions.":"Por favor, conecta tu cartera para ver tus suministros, prĂ©stamos y posiciones abiertas.","Please connect your wallet to view transaction history.":"Por favor conecta tu cartera para ver el historial de transacciones.","Please enter a valid wallet address.":"Por favor introduce una direcciĂłn de cartera vĂĄlida.","Please switch to {networkName}.":["Por favor, cambia a ",["networkName"],"."],"Please, connect your wallet":"Por favor, conecta tu cartera","Pool addresses provider is not registered":"La direcciĂłn del proveedor del pool no esta registrada","Powered by":"Powered by","Preview tx and migrate":"Previsualizar la tx y migrar","Price":"Precio","Price data is not currently available for this reserve on the protocol subgraph":"Los datos de los precios no estĂĄn disponibles actualmente para esta reserva en el subgraph del protocolo","Price impact":"Impacto del precio","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"El impacto del precio es la diferencia entre el valor total de los tokens de entrada cambiados y los tokens de destino obtenidos (en USD), que resulta de la liquidez limitada del par de cambio.","Price impact {0}%":["Impacto en el precio ",["0"],"%"],"Privacy":"Privacidad","Proposal details":"Detalles de la propuesta","Proposal overview":"Resumen de la propuesta","Proposals":"Propuestas","Proposition":"ProposiciĂłn","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"El lĂ­mite de prĂ©stamo del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"El lĂ­mite de prĂ©stamo del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"El lĂ­mite de deuda del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado usando este activo como garantĂ­a.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"El lĂ­mite de deuda del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado usando este activo como garantĂ­a.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"El lĂ­mite de suministro del protocolo estĂĄ al 100% para este activo. No es posible suministrar mĂĄs.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"El lĂ­mite de suministro del protocolo estĂĄ al 100% para este activo. No es posible suministrar mĂĄs.","Quorum":"Quorum","Rate change":"Cambio de tasa","Raw-Ipfs":"Raw-Ipfs","Reached":"Alcanzado","Reactivate cooldown period to unstake {0} {stakedToken}":["Reactivar el periodo de cooldown para unstakear ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrĂĄs realizar transacciones.","Read-only mode.":"Modo de solo lectura.","Read-only mode. Connect to a wallet to perform transactions.":"Modo de solo lectura. ConĂ©ctate a una cartera para realizar transacciones.","Receive (est.)":"Recibir (est.)","Received":"Recibido","Recent Transactions":"Recent Transactions","Recipient address":"DirecciĂłn del destinatario","Rejected connection request":"Solicitud de conexiĂłn rechazada","Reload":"Recargar","Reload the page":"Recarga la pĂĄgina","Remaining debt":"Deuda restante","Remaining supply":"Suministro restante","Remind me":"Remind me","Remove":"Eliminar","Repaid":"Pagado","Repay":"Pagar","Repay with":"Pagar con","Repay {symbol}":["Pagar ",["symbol"]],"Repaying {symbol}":["Pagando ",["symbol"]],"Repayment amount to reach {0}% utilization":["Cantidad a pagar para alcanzar el ",["0"],"% de utilizaciĂłn"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.","Reserve Size":"Tamaño de la reserva","Reserve factor":"Factor de reserva","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["El factor de reserva es un porcentaje de interĂ©s que va a un ",["0"]," que es controlado por el gobierno de Aave para promover el crecimiento del ecosistema."],"Reserve status & configuration":"ConfiguraciĂłn y estado de la reserva","Reset":"Restablecer","Restake":"Restakear","Restake {symbol}":["Restakear ",["symbol"]],"Restaked":"Restakeado","Restaking {symbol}":["Restakeando ",["symbol"]],"Review approval tx details":"Revisa los detalles del approve","Review tx":"RevisiĂłn tx","Review tx details":"Revisar detalles de la tx","Revoke power":"Revocar poder","Reward(s) to claim":"Recompensa(s) por reclamar","Rewards APR":"APR de recompensas","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"Detalles de riesgo","Safety of your deposited collateral against the borrowed assets and its underlying value.":"Seguridad de tu garantĂ­a depositada contra los activos prestados y su valor subyacente.","Save and share":"Guardar y compartir","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"Parece que no podemos cambiar la red automĂĄticamente. Por favor, comprueba si puedes cambiarla desde la cartera.","Select an asset":"Selecciona un activo","Select language":"Seleccionar idioma","Select slippage tolerance":"Seleccionar tolerancia de deslizamiento","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.","Selected borrow assets":"Activos de prĂ©stamo seleccionados","Selected supply assets":"Activos de suministro seleccionados","Send Feedback":"Send Feedback","Send feedback":"Enviar feedback","Set up delegation":"Configurar la delegaciĂłn","Share on Lens":"Compartir en Lens","Share on twitter":"Compartir en twitter","Show":"Mostrar","Show Frozen or paused assets":"Mostrar activos congelados o pausados","Show assets with 0 balance":"Mostrar activos con 0 balance","Sign to continue":"Firma para continuar","Signatures ready":"Firmas listas","Signing":"Firmando","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Dado que este activo estĂĄ congelado, las Ășnicas acciones disponibles son retirar y pagar, a las que se puede acceder desde el <0>Panel de control","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera","Slippage":"Deslizamiento","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"El deslizamiento es la diferencia entre las cantidades calculadas y las recibidas debido a las condiciones cambiantes del mercado entre el momento en que se envĂ­a la transacciĂłn y su verificaciĂłn.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Algunos activos migrados no se utilizarĂĄn como garantĂ­a debido al isolation mode habilitado en el mercado V3 de ",["marketName"],". Visita el <0>Panel de control de ",["marketName"]," V3 para administrar el isolation mode."],"Something went wrong":"Se produjo un error","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la pĂĄgina, o volver despuĂ©s.","Sorry, we couldn't find the page you were looking for.":"Lo sentimos, no hemos podido encontrar la pĂĄgina que estabas buscando.","Source":"Source","Spanish":"Español","Stable":"Estable","Stable borrowing is enabled":"El prĂ©stamo estable no estĂĄ habilitado","Stable borrowing is not enabled":"El prĂ©stamo estable no estĂĄ habilitado","Stable debt supply is not zero":"El balance de deuda estable no es cero","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"La tasa de interĂ©s estable <0>permanecerĂĄ igual durante la duraciĂłn de su prĂ©stamo. EstĂĄ recomendado para los perĂ­odos de prĂ©stamo a largo plazo y para los usuarios que prefieren la previsibilidad.","Stablecoin":"Stablecoin","Stake":"Stakear","Stake AAVE":"Stakea AAVE","Stake ABPT":"Stakea ABPT","Stake GHO":"Stakear GHO","Stake cooldown activated":"Cooldown de stakeo activado","Staked":"Stakeado","Staking":"Staking","Staking APR":"Staking APR","Staking Rewards":"Recompensas de Staking","Staking balance":"Balance stakeado","Staking discount":"Descuento por staking","State":"Estado","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Suministrado","Supplied asset amount":"Cantidad de activos suministrados","Supplied assets":"Supplied assets","Supply":"Suministrar","Supply APY":"Suministrar APY","Supply apy":"Apy de suministro","Supply balance":"Balance de suministro","Supply balance after switch":"Balance del suministro despuĂ©s del cambio","Supply cap is exceeded":"El lĂ­mite de suministro se ha sobrepasado","Supply cap on target reserve reached. Try lowering the amount.":"Se ha alcanzado el lĂ­mite de suministro en la reserva especificada. Prueba reduciendo la cantidad.","Supply {symbol}":["Suministrar ",["symbol"]],"Supplying your":"Suministrando tu","Supplying {symbol}":["Suministrando ",["symbol"]],"Switch":"Cambiar","Switch E-Mode":"Cambiar E-Mode","Switch Network":"Cambiar de red","Switch borrow position":"Cambiar posiciĂłn de prĂ©stamo","Switch to":"Cambiar a","Switched":"Cambiado","Switching":"Cambiando","Switching E-Mode":"Cambiando E-Mode","Techpaper":"Documento tĂ©cnico","Terms":"TĂ©rminos","Test Assets":"Activos de prueba","Testnet mode":"Testnet mode","Testnet mode is ON":"Testnet mode estĂĄ ON","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"ÂĄGracias por votar!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"El % de tu poder de prĂ©stamo total utilizado. Esto se basa en la cantidad de tu garantĂ­a suministrada y la cantidad total que puedes pedir prestado.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"El Aave Balancer Pool Token (ABPT) es un token de pool de liquidez. Puedes recibir ABPT depositando una combinaciĂłn de AAVE + wstETH en el pool de liquidez de Balancer. Luego puedes stakear tu BPT en el mĂłdulo de seguridad para asegurar el protocolo y ganar incentivos de seguridad.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"El Protocolo Aave estĂĄ programado para usar siempre el precio de 1 GHO = $1. Esto es diferente del uso del precio de mercado a travĂ©s de orĂĄculos para otros criptoactivos. Esto crea oportunidades de arbitraje estabilizadoras cuando el precio de GHO fluctĂșa.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"El ratio LTV mĂĄximo representa el poder de endeudamiento mĂĄximo de una garantĂ­a especĂ­fica. Por ejemplo, si una garantĂ­a tiene un LTV del 75 %, el usuario puede pedir prestado hasta 0,75 ETH en la moneda principal por cada 1 ETH de garantĂ­a.","The address of the pool addresses provider is invalid":"La direcciĂłn del proveedor del grupo de direcciones no es vĂĄlida","The app is running in fork mode.":"La aplicaciĂłn se ejecuta en fork mode.","The app is running in testnet mode. Learn how it works in":"La aplicaciĂłn se estĂĄ ejecutando en testnet mode. Aprende como funciona en","The caller of the function is not an AToken":"El llamador de la funciĂłn no es un AToken","The caller of this function must be a pool":"La funciĂłn debe ser llamada por un pool","The collateral balance is 0":"El balance de garantĂ­a es 0","The collateral chosen cannot be liquidated":"La garantĂ­a elegida no puede ser liquidada","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"El periodo de cooldown es el tiempo requerido antes de unstakear tus tokens (20 dĂ­as). Solo puedes retirar tus activos del MĂłdulo de Seguridad despuĂ©s del periodo de cooldown y dentro de la ventana de unstakeo.<0>Aprende mĂĄs","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["El periodo de cooldown es ",["0"],". DespuĂ©s ",["1"]," del cooldown, entrarĂĄs a la ventana de unstakeo de ",["2"],". ContinuarĂĄs recibiendo premios durante el cooldown y la ventana de unstakeo."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"La relaciĂłn prĂ©stamo-valor de las posiciones migradas provocarĂ­a la liquidaciĂłn. Aumenta la garantĂ­a migrada o reduce el prĂ©stamo migrado para continuar.","The requested amount is greater than the max loan size in stable rate mode":"La cantidad solicitada es mayor que el tamaño mĂĄximo del prĂ©stamo en el modo de tasa estable","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"La cantidad total de tus activos denominados en USD que pueden ser usados como garantĂ­a para activos de prĂ©stamo.","The underlying asset cannot be rescued":"El activo base no puede ser rescatado","The underlying balance needs to be greater than 0":"El balance subyacente debe ser mayor que 0","The weighted average of APY for all borrowed assets, including incentives.":"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.","The weighted average of APY for all supplied assets, including incentives.":"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.","There are not enough funds in the{0}reserve to borrow":["No hay fondos suficientes en la reserva",["0"],"para tomar prestado"],"There is not enough collateral to cover a new borrow":"No hay suficiente garantĂ­a para cubrir un nuevo prĂ©stamo","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"No hay suficiente liquidez para que el activo seleccionado realice el cambio. Prueba reduciendo la cantidad.","There was some error. Please try changing the parameters or <0><1>copy the error":"Hubo un error. Por favor intenta cambiar los parĂĄmetros o <0><1>copiar el error","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"Estos activos estĂĄn temporalmente congelados o pausados por decisiones de la comunidad de Aave, lo que significa que no se puede suministrar / tomar prestado o intercambiar tasas de estos activos. Se permiten retiros y pagos de deuda. Sigue el <0>foro de gobierno de Aave para mĂĄs actualizaciones.","These funds have been borrowed and are not available for withdrawal at this time.":"Estos fondos se han tomado prestados y no estĂĄn disponibles para su retirada en este momento.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"Esta acciĂłn reducirĂĄ el factor de salud V2 por debajo del umbral de liquidaciĂłn. MantĂ©n la garantĂ­a o migra la posiciĂłn de prĂ©stamo para continuar.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"Esta acciĂłn reducirĂĄ el factor de salud de V3 por debajo del umbral de liquidaciĂłn. Aumenta la garantĂ­a migrada o reduce el prĂ©stamo migrado para continuar.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"Esta acciĂłn reducirĂĄ tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidaciĂłn de la garantĂ­a.","This address is blocked on app.aave.com because it is associated with one or more":"Esta direcciĂłn estĂĄ bloqueada en app.aave.com porque estĂĄ asociada con una o mĂĄs","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["Este activo casi ha alcanzado su lĂ­mite de prĂ©stamo. Solo hay ",["messageValue"]," disponibles para ser prestado de este mercado."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["Este activo casi ha alcanzado su lĂ­mite de suministro. Solo se puede suministrar ",["messageValue"]," a este mercado."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"Este activo ha sido pausado debido a una decisiĂłn de la comunidad. El suministro, los retiros, los prĂ©stamos y los pagos se han visto afectados.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"Este activo ha alcanzado su lĂ­mite de prĂ©stamo. No queda nada disponible para ser prestado de este mercado.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"Este activo ha alcanzado su lĂ­mite de suministro. No queda nada disponible para ser suministrado desde este mercado.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"Este activo estĂĄ congelado debido a una decisiĂłn del Gobierno del Protocolo Aave. <0>More informaciĂłn","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"Este activo estĂĄ congelado debido a una decisiĂłn del Gobierno del Protocolo Aave. El 20 de diciembre de 2022, renFIL ya no serĂĄ compatible y no se podrĂĄ conectar de nuevo a su red nativa. Se recomienda retirar las posiciones de suministro y pagar las posiciones de prĂ©stamo para que renFIL se pueda convertir de nuevo a FIL antes de la fecha lĂ­mite. DespuĂ©s de esta fecha, ya no serĂĄ posible convertir renFIL a FIL. <0>MĂĄs detalles","This asset is frozen due to an Aave community decision. <0>More details":"Este activo estĂĄ congelado debido a una decisiĂłn de la comunidad de Aave. <0>MĂĄs informaciĂłn","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"EstĂĄ previsto que este activo se desvincule debido a una decisiĂłn del Gobierno del Protocolo Aave. <0>MĂĄs detalles","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"Este cĂĄlculo de gas es solo una estimaciĂłn. Tu cartera establecerĂĄ el precio de la transacciĂłn. Puedes modificar la configuraciĂłn de gas directamente desde tu proveedor de cartera.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"Esta es la cantidad total disponible que puedes tomar prestada. Puedes tomar prestado basado en tu garantĂ­a y hasta que el lĂ­mite de prĂ©stamo se alcance.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"Esta es la cantidad total que puedes suministrar en esta reserva. Puedes suministrar el balance de tu cartera hasta que se alcance el lĂ­mite de suministro.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"Esto representa el umbral en el que un prĂ©stamo serĂĄ considerado sin garantĂ­a suficiente y sujeto a la liquidaciĂłn de la misma. Por ejemplo, si una garantĂ­a tiene un umbral de liquidaciĂłn del 80 %, significa que el prĂ©stamo serĂĄ liquidado cuando el valor de la deuda alcanze el 80% del valor de la garantĂ­a.","Time left to unstake":"Tempo restante para unstakear","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada","To":"To","To borrow you need to supply any asset to be used as collateral.":"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantĂ­a.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"Para continuar, necesitas otorgar permiso a los contratos inteligentes de Aave para mover tus fondos de tu cartera. SegĂșn el activo y la cartera que uses, se hace firmando el mensaje de permiso (sin coste de gas), o enviando una transacciĂłn de aprobaciĂłn (requiere coste de gas). <0>Aprende mĂĄs","To repay on behalf of a user an explicit amount to repay is needed":"Para pagar en nombre de un usuario, se necesita una cantidad explĂ­cita para pagar","To request access for this permissioned market, please visit: <0>Acces Provider Name":"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"Para enviar una propuesta de cambios menores al protocolo, necesitarĂĄs al menos 80K de poder. Si deseas cambiar la base central del cĂłdigo, necesitarĂĄs un poder de 320K.<0>Aprende mĂĄs","Top 10 addresses":"Top 10 direcciones","Total available":"Total disponible","Total borrowed":"Total tomado prestado","Total borrows":"Total de prĂ©stamos","Total emission per day":"Emisiones totales por dĂ­a","Total interest accrued":"InterĂ©s total acumulado","Total market size":"Tamaño total del mercado","Total supplied":"Total suministrado","Total worth":"Valor total","Track wallet":"Haz seguimiento de tu cartera","Track wallet balance in read-only mode":"Haz un seguimiento del balance de la cartera en el modo de solo lectura","Transaction failed":"Error en la transacciĂłn","Transaction history":"Historial de transacciones","Transaction history is not currently available for this market":"El historial de transacciones no estĂĄ disponible actualmente para este mercado","Transaction overview":"Resumen de la transacciĂłn","Transactions":"Transacciones","Unavailable":"No disponible","Unbacked":"No respaldado","Unbacked mint cap is exceeded":"El lĂ­mite de minteo sin respaldo ha sido excedido","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["El activo subyacente no existe en el mercado v3 de ",["marketName"],", por lo tanto, esta posiciĂłn no se puede migrar."],"Underlying token":"Token subyacente","Unstake":"Unstakear","Unstake now":"Unstakea ahora","Unstake window":"Ventana de unstakeo","Unstake {symbol}":["Unstakear ",["symbol"]],"Unstaked":"Unstakeado","Unstaking {symbol}":["Unstakeando ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Úsalo para votar a favor o en contra de propuestas activas.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Utiliza tu balance de AAVE, stkAAVE o aAava para delegar tu voto y poder de proposiciĂłn. No enviarĂĄs ningĂșn token, solo los derechos de votar y proponer cambios en el protocolo. Puedes volver a delegar o revocar el poder de vuelta en cualquier momento.","Used as collateral":"Utilizado como garantĂ­a","User cannot withdraw more than the available balance":"El usuario no puede retirar mĂĄs que el balance disponible","User did not borrow the specified currency":"El usuario no tomĂł prestado el activo especificado","User does not have outstanding stable rate debt on this reserve":"El usuario no tiene deuda pendiente de tasa estable en esta reserva","User does not have outstanding variable rate debt on this reserve":"El usuario no tiene deuda pendiente de tasa variable en esta reserva","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"El usuario estĂĄ intentando tomar prestado mĂșltiples activos incluido uno aislado","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Los usuarios que stakean AAVE en el Modulo de Seguridad (es decir, poseedores de stkAAVE) reciben un descuento en la tasa de interĂ©s de prĂ©stamo de GHO. Este descuento se aplica a 100 GHO por cada 1 stkAAVE en posesiĂłn. Usa el calculador de abajo para ver la tasa de prĂ©stamo de GHO con el descuento aplicado.","Utilization Rate":"Tasa de uso","VIEW TX":"VER TX","VOTE NAY":"VOTAR NO","VOTE YAE":"VOTAR SI","Variable":"Variable","Variable debt supply is not zero":"El suministro de deuda variable no es cero","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Tasa variable","Version 2":"VersiĂłn 2","Version 3":"VersiĂłn 3","View":"Ver","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"Ver Transacciones","View all":"View all","View all votes":"Ver todos los votos","View contract":"Ver contrato","View details":"Ver detalles","View on Explorer":"Ver en el explorador","Vote NAY":"Votar NO","Vote YAE":"Votar SI","Voted NAY":"VotĂł NAY","Voted YAE":"VotĂł YAE","Votes":"Votos","Voting":"Votando","Voting is on":"La votaciĂłn estĂĄ activa","Voting power":"Poder de votaciĂłn","Voting results":"Resultados de la votaciĂłn","Wallet Balance":"Balance de la cartera","Wallet balance":"Balance de la cartera","Wallet not detected. Connect or install wallet and retry":"Cartera no detectada. Conecta o instala la cartera y vuelve a intentarlo","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"Las carteras son proporcionadas por proveedores externos y al seleccionarla, aceptas los tĂ©rminos de dichos proveedores. Tu acceso a la cartera podrĂ­a depender de que el proveedor externo estĂ© operativo.","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"No pudimos encontrar ningĂșn activo relacionado con tu bĂșsqueda. Vuelve a intentarlo con un nombre diferente de activo, sĂ­mbolo o direcciĂłn.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"No pudimos encontrar ninguna transacciĂłn relacionada con tu bĂșsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"No podemos detectar una cartera. Conecta una cartera para stakear y ver tu balance.","We suggest you go back to the Dashboard.":"Te sugerimos volver al Panel de control.","Website":"PĂĄgina web","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"Cuando ocurre una liquidaciĂłn, los liquidadores pagan hasta el 50% de la cantidad pendiente del prĂ©stamo en nombre del prestatario. A cambio, pueden comprar la garantĂ­a con descuento y quedarse con la diferencia (sanciĂłn de liquidaciĂłn) como bonificaciĂłn.","With a voting power of <0/>":"Con un poder de votaciĂłn de <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"Con la testnet Faucet puedes obtener activos gratuitos para probar el Protocolo Aave. AsegĂșrate de cambiar tu proveedor de cartera a la red de testnet adecuada, selecciona el activo deseado y haz clic en \"Faucet\" para obtener tokens transferidos a tu cartera. Los activos de una testnet no son \"reales\", lo que significada que no tienen valor monetario. <0>Aprende mĂĄs","Withdraw":"Retirar","Withdraw & Switch":"Retirar y Cambiar","Withdraw and Switch":"Retirar y Cambiar","Withdraw {symbol}":["Retirar ",["symbol"]],"Withdrawing":"Retirando","Withdrawing and Switching":"Retirando y Cambiando","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Retirar esta cantidad reducirĂĄ tu factor de salud y aumentarĂĄ el riesgo de liquidaciĂłn.","Withdrawing {symbol}":["Retirando ",["symbol"]],"Wrong Network":"Red incorrecta","YAE":"YAE","You are entering Isolation mode":"EstĂĄs entrando en el Isolation mode","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"No puedes cambiar el uso como modo de garantĂ­a para este activo, porque causarĂĄ una liquidaciĂłn","You can not use this currency as collateral":"No puedes usar este activo como garantĂ­a","You can not withdraw this amount because it will cause collateral call":"No puedes retirar esta cantidad porque causarĂĄ una liquidaciĂłn","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"Solo puedes retirar tus activos del MĂłdulo de Seguridad despuĂ©s de que finalice el perĂ­odo de cooldown y la ventana de unstakeo estĂ© activa.","You can report incident to our <0>Discord or<1>Github.":"Puedes reportar cualquier incidente a nuestro <0>Discord o <1>Github.","You cancelled the transaction.":"Has cancelado la transacciĂłn.","You did not participate in this proposal":"No has participado en esta propuesta","You do not have supplies in this currency":"No tienes suministros en este activo","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"No tienes suficientes fondos en tu cartera para pagar la cantidad total. Si procedes a pagar con tu cantidad actual de fondos, aĂșn tendrĂĄs un pequeño prĂ©stamo en tu panel de control.","You have no AAVE/stkAAVE/aAave balance to delegate.":"No tienes balance de AAVE/stkAAVE/aAave para delegar.","You may borrow up to <0/> GHO at <1/> (max discount)":"Puedes tomar prestado hasta <0/> GHO al <1/> (descuento mĂĄximo)","You may enter a custom amount in the field.":"Puedes ingresar una cantidad especĂ­fica en el campo.","You switched to {0} rate":["Has cambiado a tasa ",["0"]],"You unstake here":"Unstakea aquĂ­","You voted {0}":["Has votado ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"SaldrĂĄs del modo aislamiento y otros tokens pueden ser usados ahora como garantĂ­a","You {action} <0/> {symbol}":["Tu ",["action"]," <0/> ",["symbol"]],"You've successfully switched borrow position.":"Has cambiado con Ă©xito la posiciĂłn de prĂ©stamo.","You've successfully switched tokens.":"Has cambiado los tokens con Ă©xito.","You've successfully withdrew & switched tokens.":"Has retirado y cambiado tokens con Ă©xito.","Your balance is lower than the selected amount.":"Tu balance es mĂĄs bajo que la cantidad seleccionada.","Your borrows":"Tus prĂ©stamos","Your current loan to value based on your collateral supplied.":"Tu actual relaciĂłn prĂ©stamo-valor basado en tu garantĂ­a suministrada.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Tu factor de salud y la relaciĂłn prĂ©stamo-valor determinan la seguridad de tu garantĂ­a. Para evitar liquidaciones, puedes suministrar mĂĄs garantĂ­a o pagar las posiciones de prĂ©stamo.","Your info":"Tu informaciĂłn","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Tu poder de proposiciĂłn se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.","Your reward balance is 0":"Tu balance de recompensa es 0","Your supplies":"Tus suministros","Your voting info":"Tu informaciĂłn de voto","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Tu cartera de ",["name"]," estĂĄ vacĂ­a. Compra o transfiere activos o usa <0>",["0"]," para transferir tus activos de ",["network"],"."],"Your {name} wallet is empty. Purchase or transfer assets.":["Tu cartera de ",["name"]," estĂĄ vacĂ­a. Compra o transfiere activos."],"Your {networkName} wallet is empty. Get free test assets at":["Tu cartera de ",["networkName"]," estĂĄ vacĂ­a. Consigue activos de prueba gratis en"],"Your {networkName} wallet is empty. Get free test {0} at":["Tu cartera de ",["networkName"]," estĂĄ vacĂ­a. Consigue ",["0"]," de prueba gratis en"],"Zero address not valid":"DirecciĂłn cero no vĂĄlida","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"activos","blocked activities":"actividades bloqueadas","copy the error":"copiar el error","disabled":"deshabilitado","documentation":"documentaciĂłn","enabled":"habilitado","ends":"finaliza","for":"para","of":"de","on":"en","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"por favor comprueba que la cantidad que deseas depositar no estĂĄ siendo utilizada actualmente para stakear. Si estĂĄ utilizando para stakear, tu transacciĂłn podrĂ­a fallar.","repaid":"reembolsado","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"stETH suministrado como garantĂ­a continuarĂĄ acumulando recompensas de staking proporcionadas por rebases diarios.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["Los tokens stETH se migrarĂĄn a Wrapped stETH usando el wrapper del protocolo de Lido, lo que provoca un cambio en el balance de suministro despuĂ©s de la migraciĂłn: ",["0"]],"staking view":"vista de stakeo","starts":"empieza","stkAAVE holders get a discount on GHO borrow rate":"poseedores de stkAAVE obtienen un descuento en la tasa de prĂ©stamo de GHO","to":"para","tokens is not the same as staking them. If you wish to stake your":"tokens no es lo mismo que stakearlos. Si deseas stakearlos","tokens, please go to the":"tokens, por favor ve al","withdrew":"retirado","{0}":[["0"]],"{0} Balance":["Balance ",["0"]],"{0} Faucet":[["0"]," Faucet"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," el servicio on-ramp es proporcionado por proveedores externos y al seleccionarlo, estĂĄs aceptando los tĂ©rminos de dichos proveedores. Tu acceso al servicio podrĂ­a depender de que el proveedor externo estĂ© operativo."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"d"],"{h}h":[["h"],"h"],"{label}":[["label"]],"{m}m":[["m"],"m"],"{networkName} Faucet":["Faucet ",["networkName"]],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," activos seleccionados"],"{stepName}":[["stepName"]],"{s}s":[["s"],"s"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":".CSV",".JSON":".JSON","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>añade <3/> stkAAVE para tomar prestado al <4/> (descuento mĂĄximo)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Añade stkAAVE para ver la tasa de prĂ©stamo con descuento","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth es un activo con rebase. Visita la <1>documentaciĂłn para aprender mĂĄs.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>AtenciĂłn: Los cambios de parĂĄmetros a travĂ©s de la gobernanza pueden alterar el factor de salud de tu cuenta y el riesgo de liquidaciĂłn. Sigue el <1>foro de gobierno de Aave para mantenerte actualizado.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>Tolerancia de deslizamiento <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"Los poseedores de AAVE, GHO y ABPT (solo en la red de Ethereum) pueden stakear sus activos en el MĂłdulo de Seguridad para añadir mĂĄs seguridad al protocolo y obtener incentivos de seguridad. En el caso de un evento de shortfall, tu stakeo puede ser reducido para cubrir el dĂ©ficit. proporcionando una capa adicional de protecciĂłn para el protocolo.","APR":"APR","APY":"APY","APY change":"Cambio de APY","APY type":"Tipo APY","APY type change":"Cambio tipo de APY","APY with discount applied":"APY con descuento aplicado","APY, borrow rate":"APY, tasa de prĂ©stamo","APY, variable":"APY, variable","AToken supply is not zero":"El balance de AToken no es cero","Aave Governance":"Gobierno de Aave","Aave aToken":"aToken de Aave","Aave debt token":"Token de deuda de Aave","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave es un protocolo totalmente descentralizado, gobernado por la comunidad de poseedores de tokens AAVE. Los poseedores de tokens AAVE discuten, proponen y votan colectivamente sobre las actualizaciones del protocolo. Los poseedores de tokens AAVE (solo en la red Ethereum) pueden votar ellos mismos sobre nuevas propuestas o delegarse a una direcciĂłn de su elecciĂłn. Para aprender mĂĄs, consulta la","Aave per month":"Aave por mes","About GHO":"Sobre GHO","Account":"Cuenta","Action cannot be performed because the reserve is frozen":"No se puede realizar la acciĂłn porque la reserva estĂĄ congelada","Action cannot be performed because the reserve is paused":"No se puede realizar la acciĂłn porque la reserva estĂĄ pausada","Action requires an active reserve":"La acciĂłn requiere una reserva activa","Activate Cooldown":"Activar Cooldown","Add stkAAVE to see borrow APY with the discount":"Añade stkAAVE para ver el APY de prĂ©stamo con el descuento","Add to wallet":"Añadir a la cartera","Add {0} to wallet to track your balance.":["Añade ",["0"]," a tu cartera para hacer un seguimiento del balance."],"Address is not a contract":"La direcciĂłn no es un contrato","Addresses":"Direcciones","Addresses ({0})":["Direcciones (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"ÂĄTodo listo!","All proposals":"Todas las propuestas","All transactions":"Todas las transacciones","Allowance required action":"AcciĂłn de permiso requerida","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"Te permite decidir si utilizar un activo suministrado como garantĂ­a. Un activo utilizado como garantĂ­a afectarĂĄ a tu poder de prĂ©stamo y factor de salud.","Amount":"Cantidad","Amount After Fee":"Amount After Fee","Amount claimable":"Cantidad reclamable","Amount in cooldown":"Cantidad en cooldown","Amount must be greater than 0":"La cantidad debe ser mayor que 0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Cantidad para migrar","Amount to unstake":"Cantidad para unstakear","An error has occurred fetching the proposal.":"Se ha producido un error al recuperar la propuesta.","Approve Confirmed":"AprobaciĂłn confirmada","Approve with":"Aprobar con","Approve {symbol} to continue":["Aprueba ",["symbol"]," para continuar"],"Approving {symbol}...":["Aprobando ",["symbol"],"..."],"Array parameters that should be equal length are not":"Los parĂĄmetros del array que deberĂ­an ser iguales en longitud no lo son","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"Como resultado de las decisiones del gobierno, este pool de stakeo de ABPT estĂĄ obsoleto. Tienes la flexibilidad de migrar todos tus tokens a v2 o unstakearlos sin ningĂșn periodo de cooldown.","Asset":"Activo","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"Este activo solo se puede utilizar como garantĂ­a en isolation mode con poder de prĂ©stamo limitado. Para entrar en el isolation mode, deshabilita todas las demĂĄs garantĂ­as.","Asset can only be used as collateral in isolation mode only.":"El activo solo puede usarse como garantĂ­a en el Isolation mode Ășnicamente.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["Este activo no se puede migrar porque tienes una garantĂ­a en Isolation Mode en el mercado v3 de ",["marketName"]," que limita los activos prestados. Puedes administrar tu garantĂ­a en el <0>Panel de control V3 de ",["marketName"],""],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["Este activo no se puede migrar debido a una liquidez insuficiente o a una limitaciĂłn del lĂ­mite de prĂ©stamo en el mercado v3 de ",["marketName"],"."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["Este activo no se puede migrar debido a una restricciĂłn del lĂ­mite de suministro en el mercado v3 de ",["marketName"],"."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["Este activo no se puede migrar al mercado V3 de ",["marketName"]," debido a las restricciones del E-mode. Puedes deshabilitar o administrar las categorĂ­as del E-mode en tu <0>Panel de control V3"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["Este activo no se puede migrar al mercado v3 de ",["marketName"],", ya que el activo de garantĂ­a habilitarĂĄ el isolation mode."],"Asset cannot be used as collateral.":"Este activo no puede usarse como garantĂ­a.","Asset category":"CategorĂ­a de activos","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["Este activo estĂĄ congelado en el mercado v3 de ",["marketName"],", por lo tanto, esta posiciĂłn no se puede migrar."],"Asset is not borrowable in isolation mode":"El activo no se puede pedir prestado en isolation mode","Asset is not listed":"El activo no estĂĄ listado","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"El suministro de activos estĂĄ limitado a una cierta cantidad para reducir la exposiciĂłn del protocolo a este activo y ayudar a manejar los riesgos implicados.","Assets":"Activos","Assets to borrow":"Activos a tomar prestado","Assets to supply":"Activos a suministrar","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"Con un descuento","Available":"Disponible","Available liquidity":"Liquidez disponible","Available on":"Disponible en","Available rewards":"Recompensas disponibles","Available to borrow":"Disponible para tomar prestado","Available to supply":"Disponible para suministrar","Back to Dashboard":"Volver al panel de control","Balance":"Balance","Balance to revoke":"Balance a revocar","Balancer Pool":"Pool de Balancer","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Ten cuidado - EstĂĄs muy cerca de la liquidaciĂłn. Considera depositar mĂĄs garantĂ­a o pagar alguno de tus prĂ©stamos","Be mindful of the network congestion and gas prices.":"Ten en cuenta la congestiĂłn de la red y los precios del gas.","Because this asset is paused, no actions can be taken until further notice":"Debido a que este activo estĂĄ en pausa, no se pueden realizar acciones hasta nuevo aviso","Before supplying":"Antes de suministrar","Blocked Address":"DirecciĂłn bloqueada","Borrow":"Tomar prestado","Borrow APY":"APY prĂ©stamo","Borrow APY, variable":"APY prĂ©stamo, variable","Borrow amount to reach {0}% utilization":["Cantidad a tomar prestado para alcanzar el ",["0"],"% de utilizaciĂłn"],"Borrow and repay in same block is not allowed":"Tomar prestado y pagar en el mismo bloque no estĂĄ permitido","Borrow apy":"Apy prĂ©stamo","Borrow balance":"Balance tomado prestado","Borrow balance after repay":"Balance tomado prestado tras pagar","Borrow balance after switch":"Balance de prĂ©stamo despuĂ©s del cambio","Borrow cap":"LĂ­mite del prĂ©stamo","Borrow cap is exceeded":"El lĂ­mite del prĂ©stamo se ha sobrepasado","Borrow info":"InformaciĂłn de prĂ©stamo","Borrow power used":"Capacidad de prĂ©stamo utilizada","Borrow rate":"Borrow rate","Borrow rate change":"Cambio de tasa de prĂ©stamo","Borrow {symbol}":["Tomar prestado ",["symbol"]],"Borrowable":"Borrowable","Borrowed":"Prestado","Borrowed asset amount":"Cantidad de activos tomados prestados","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["Tomar prestado no estĂĄ disponible actualmente para ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"Tomar prestado estĂĄ deshabilitado debido a una decisiĂłn de la comunidad de Aave. <0>MĂĄs informaciĂłn","Borrowing is not enabled":"Tomar prestado no estĂĄ habilitado","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"Tomar prestado no estĂĄ disponible porque estĂĄs usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"Tomar prestado no estĂĄ disponible porque has habilitado el Efficiency Mode (E-Mode) y el Isolation mode. Para administrar el E-Mode y el Isolation Mode, visita tu <0>Panel de control.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["Tomar prestado no estĂĄ disponible porque has habilitado el Efficieny Mode (E-Mode) para la categorĂ­a ",["0"],". Para manejar las categorĂ­as del E-Mode visita tu <0>Panel de control."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"Tomar prestado este activo estĂĄ limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.","Borrowing power and assets are limited due to Isolation mode.":"El poder de prĂ©stamo y los activos estĂĄn limitados debido al Isolation mode.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Tomar prestado esta cantidad reducirĂĄ tu factor de salud y aumentarĂĄ el riesgo de liquidaciĂłn.","Borrowing {symbol}":["Tomando prestado ",["symbol"]],"Both":"Ambos","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Comprar Crypto con Fiat","Buy Crypto with Fiat":"Comprar Crypto con Fiat","Buy {cryptoSymbol} with Fiat":["Comprar ",["cryptoSymbol"]," con Fiat"],"COPIED!":"ÂĄCOPIADO!","COPY IMAGE":"COPIAR IMAGEN","Can be collateral":"Puede ser garantĂ­a","Can be executed":"Puede ser ejecutado","Can't validate the wallet address. Try again.":"No se puede validar la direcciĂłn de la cartera. Vuelve a intentarlo.","Cancel":"Cancelar","Cannot disable E-Mode":"No se puede deshabilitar E-Mode","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Elige cuĂĄnto poder de voto/proposiciĂłn otorgar a otra persona delegando parte de tu balance de AAVe o stkAAVE. Tus tokens permanecerĂĄn en tu cuenta, pero tu delegado podrĂĄ votar o proponer en tu lugar. Si tu balance de AAVE, stkAAVE o aAave cambia, el poder de voto/proposiciĂłn de tu delegado se ajustarĂĄ automĂĄticamente.","Choose one of the on-ramp services":"Elige uno de los servicios on-ramp","Claim":"Reclamar","Claim all":"Reclamar todo","Claim all rewards":"Reclamar todas las recompensas","Claim {0}":["Reclamar ",["0"]],"Claim {symbol}":["Reclamar ",["symbol"]],"Claimable AAVE":"AAVE Reclamable","Claimed":"Reclamado","Claiming":"Reclamando","Claiming {symbol}":["Reclamando ",["symbol"]],"Close":"Cerrar","Collateral":"GarantĂ­a","Collateral balance after repay":"Balance de la garantĂ­a tras pagar","Collateral change":"Cambio de garantĂ­a","Collateral is (mostly) the same currency that is being borrowed":"La garantĂ­a es (en su mayorĂ­a) el mismo activo que se estĂĄ tomando prestado","Collateral to repay with":"GarantĂ­a a pagar con","Collateral usage":"Uso de la garantĂ­a","Collateral usage is limited because of Isolation mode.":"El uso de garantĂ­as estĂĄ limitado debido al Isolation mode.","Collateral usage is limited because of isolation mode.":"El uso de garantĂ­as estĂĄ limitado debido al isolation mode.","Collateral usage is limited because of isolation mode. <0>Learn More":"El uso como garantĂ­a estĂĄ limitado debido al isolation mode. <0>Aprende mĂĄs","Collateralization":"ColateralizaciĂłn","Collector Contract":"Collector Contract","Collector Info":"Collector Info","Confirm transaction":"Confirmar transacciĂłn","Confirming transaction":"Confirmando transacciĂłn","Connect":"Conectar","Connect wallet":"Conectar cartera","Cooldown period":"Periodo de cooldown","Cooldown period warning":"Advertencia periodo de cooldown","Cooldown time left":"Periodo restante de cooldown","Cooldown to unstake":"Cooldown para undstakear","Cooling down...":"Cooling down...","Copy address":"Copiar direcciĂłn","Copy error message":"Copiar mensaje de error","Copy error text":"Copiar el texto del error","Covered debt":"Deuda cubierta","Current LTV":"LTV actual","Current differential":"Diferencial actual","Current v2 Balance":"Balance actual v2","Current v2 balance":"Balance actual v2","Current votes":"Votos actuales","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"El balance de DAI se convertirĂĄ a travĂ©s de los contratos de DSR y luego se suministrarĂĄ como sDAI. El cambio no genera costos adicionales ni deslizamientos.","Dark mode":"Modo oscuro","Dashboard":"Panel de control","Data couldn't be fetched, please reload graph.":"No se pudieron recuperar los datos, por favor recarga el grĂĄfico.","Debt":"Deuda","Debt ceiling is exceeded":"El lĂ­mite de deuda estĂĄ sobrepasado","Debt ceiling is not zero":"El lĂ­mite de deuda no es cero","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"El lĂ­mite de deuda limita la cantidad posible que los usuarios del protocolo pueden tomar prestado contra este activo. El lĂ­mite de deuda es especĂ­fico para los activos en isolation mode y se indica en USD.","Delegated power":"Poder delegado","Destination":"Destination","Details":"Detalles","Developers":"Desarrolladores","Differential":"Diferencial","Disable E-Mode":"Desactivar el E-Mode","Disable fork":"Deshabilitar fork","Disable testnet":"Deshabilitar testnet","Disable {symbol} as collateral":["Desactivar ",["symbol"]," como garantĂ­a"],"Disabled":"Deshabilitado","Disabling E-Mode":"Desactivando E-Mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"Deshabilitar este activo como garantĂ­a afecta tu poder de prĂ©stamo y Factor de Salud.","Disconnect Wallet":"Desconectar cartera","Discord channel":"Canal de Discord","Discount":"Descuento","Discount applied for <0/> staking AAVE":"Descuento aplicado para <0/> AAVE stakeados","Discount model parameters":"ParĂĄmetros del modelo de descuento","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Los parĂĄmetros de descuento son decididos por la comunidad de Aave y pueden cambiar con el tiempo. Consulta el Gobierno para ver actualizaciones y vota para participar. <0>-Aprende mĂĄs","Discountable amount":"Cantidad descontable","Docs":"Docs","Download":"Descargar","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Debido al impacto del factor de salud, se requiere un prĂ©stamo flash para realizar esta transacciĂłn, pero el Gobierno de Aave ha inhabilitado la disponibilidad de prĂ©stamos flash para este activo. Intenta reducir la cantidad o suministrar garantĂ­a adicional.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"Debido a mecĂĄnicas internas de stETH requeridas para el soporte del rebase, no es posible realizar un cambio de garantĂ­a donde stETH es el token de origen.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"El E-Mode incrementa tu LTV para una categorĂ­a seleccionada de activos hasta el <0/>. <1>Aprende mĂĄs","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Editar","Effective interest rate":"Tasa de interĂ©s efectiva","Efficiency mode (E-Mode)":"Modo de eficiencia (E-Mode)","Eligible for the Merit program.":"Eligible for the Merit program.","Email":"Email","Emode":"Modo E","Enable E-Mode":"Habilitar E-Mode","Enable {symbol} as collateral":["Habilitar ",["symbol"]," como garantĂ­a"],"Enabled":"Habilitado","Enabling E-Mode":"Habilitar E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"Habilitar este activo como garantĂ­a aumenta tu poder prĂ©stamo y el factor de salud. Sin embargo, puede ser liquidado si tu factor de salud cae por debajo de 1.","English":"InglĂ©s","Enter ETH address":"Introduce la direcciĂłn ETH","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"Ingresa una cantidad","Error connecting. Try refreshing the page.":"Error de conexiĂłn. Intenta actualizar la pĂĄgina.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["InterĂ©s compuesto estimado, incluyendo el descuento por Staking ",["0"],"AAVE en el MĂłdulo de Seguridad."],"Estimated time":"Estimated time","Exceeds the discount":"Supera el descuento","Exchange rate":"Tasa de cambio","Expected amount to repay":"Cantidad esperada a pagar","Expires":"Caduca","Export data to":"Exportar datos a","FAQ":"Preguntas frecuentes","FAQS":"FAQS","Failed to load proposal voters. Please refresh the page.":"Error al cargar los votantes de la propuesta. Por favor actualiza la pĂĄgina.","Faucet":"Faucet","Faucet {0}":["Faucet ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"Recuperando datos...","Filter":"Filtro","Fixed rate":"InterĂ©s fijo","Flashloan is disabled for this asset, hence this position cannot be migrated.":"El prĂ©stamo flash estĂĄ deshabilitado para este activo, por lo tanto, esta posiciĂłn no se puede migrar.","For repayment of a specific type of debt, the user needs to have debt that type":"Para el pago de un tipo especĂ­fico de deuda, el usuario necesita tener una deuda de ese tipo","Fork mode is ON":"El fork mode estĂĄ activado","Forum discussion":"Hilo de discusiĂłn del foro","French":"FrancĂ©s","Funds in the Safety Module":"Fondos en el MĂłdulo de Seguridad","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO es un activo nativo descentralizado, digital y respaldado por garantĂ­a, vinculado al USD. Es creado por los usuarios que lo toman prestado contra mĂșltiples garantĂ­as. Cuando el usuario paga su posiciĂłn de prĂ©stamo de GHO, el protocolo quema el GHO de ese usuario. Todos los pagos de interĂ©s acumulados por los acuñadores de GHO serĂĄn transferidos directamente a la tesorerĂ­a de la DAO de Aave.","Get ABP Token":"Obtener Token ABP","Get ABP v2 Token":"Obtener Token ABP v2","Get GHO":"Obtener GHO","Global settings":"ConfiguraciĂłn global","Go Back":"Volver atrĂĄs","Go to Balancer Pool":"Ir al pool de Balancer","Go to V3 Dashboard":"Ir al panel de control V3","Governance":"Gobierno","Greek":"Griego","Health factor":"Factor de salud","Health factor is lesser than the liquidation threshold":"El factor de salud es menor que el umbral de liquidaciĂłn","Health factor is not below the threshold":"El factor de salud no estĂĄ por debajo del umbral","Hide":"Ocultar","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Los poseedores de stkAAVE reciben un descuento en la tasa de prĂ©stamo de GHO","I acknowledge the risks involved.":"Acepto los riesgos involucadros.","I fully understand the risks of migrating.":"Entiendo completamente los riesgos de migrar.","I understand how cooldown ({0}) and unstaking ({1}) work":["Entiendo como el cooldown (",["0"],") y el proceso de unstaking (",["1"],") funcionan"],"If the error continues to happen,<0/> you may report it to this":"Si el error persiste, <0/> podrĂ­as reportarlo a esto","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"Si el factor de salud se encuentra por debajo de 1, la liquidaciĂłn de tu colateral puede ser activada.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["Si NO unstakeas entre ",["0"]," de la ventana de unstakeo, necesitarĂĄs activar el proceso de cooldown de nuevo."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"Si tu relaciĂłn prĂ©stamo-valor supera el umbral de liquidaciĂłn, tu garantĂ­a puede ser liquidada.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["En el Isolation mode, no puedes suministrar otros activos como garantĂ­a. Un lĂ­mite de deuda global limita la capacidad de prĂ©stamo del activo aislado. Para salir del Isolation mode, deshabilita ",["0"]," como garantĂ­a antes de tomar prestado otro activo. Lee mĂĄs en nuestras <0>preguntas frecuentes "],"Inconsistent flashloan parameters":"ParĂĄmetros inconsistentes del prĂ©stamo flash","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"GarantĂ­a insuficiente para cubrir la nueva posiciĂłn de prĂ©stamo. La cartera debe tener poder de prĂ©stamo suficiente para realizar el cambio de deuda.","Interest accrued":"InterĂ©s acumulado","Interest rate rebalance conditions were not met":"No se cumplieron las condiciones de ajuste de tasas de interĂ©s","Interest rate strategy":"Estrategia de tasa de interĂ©s","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Tasa de interĂ©s determinada por el gobierno de Aave. Esta tasa puede cambiar con el tiempo dependiendo de la necesidad de que el suministro de GHO se contraiga/expanda. <0>Aprende mĂĄs","Invalid amount to burn":"Cantidad invĂĄlida para quemar","Invalid amount to mint":"Cantidad invalidad para generar","Invalid bridge protocol fee":"ComisiĂłn de puente de protocolo invĂĄlida","Invalid expiration":"ExpiraciĂłn invĂĄlida","Invalid flashloan premium":"PrĂ©stamo flash invĂĄlido","Invalid return value of the flashloan executor function":"Valor de retorno invĂĄlido en la funciĂłn executor del prĂ©stamo flash","Invalid signature":"Firma invĂĄlida","Isolated":"Aislado","Isolated Debt Ceiling":"LĂ­mite de deuda aislado","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"Los activos aislados han limitado tu capacidad de prĂ©stamo y otros activos no pueden ser usados como garantĂ­a.","Join the community discussion":"Únete a la discusiĂłn de la comunidad","Language":"Idioma","Learn more":"Aprende mĂĄs","Learn more about risks involved":"Aprende mĂĄs sobre los riesgos involucrados","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"Aprende mĂĄs en nuestra guĂ­a <0>Preguntas frecuentes","Learn more.":"Aprende mĂĄs.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Direcciones vinculadas","Links":"Enlaces","Liquidated collateral":"GarantĂ­a liquidada","Liquidation":"LiquidaciĂłn","Liquidation <0/> threshold":"Umbral <0/> de liquidaciĂłn","Liquidation Threshold":"Umbral de liquidaciĂłn","Liquidation at":"LiquidaciĂłn en","Liquidation penalty":"PenalizaciĂłn de liquidaciĂłn","Liquidation risk":"Riesgo de liquidaciĂłn","Liquidation risk parameters":"ParĂĄmetros de riesgo de liquidaciĂłn","Liquidation threshold":"Umbral de liquidaciĂłn","Liquidation value":"Valor de liquidaciĂłn","Loading data...":"Cargando datos...","Ltv validation failed":"La validaciĂłn del LTV ha fallado","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"MAI ha sido pausado debido a una decisiĂłn de la comunidad. Los suministros, prĂ©stamos y pagos se han visto afectados. <0>MĂĄs informaciĂłn","MAX":"MAX","Manage E-Mode":"Manage E-Mode","Manage analytics":"Administrar analĂ­ticas","Market":"Mercado","Markets":"Mercados","Max":"Max","Max LTV":"LTV mĂĄximo","Max slashing":"Max slashing","Max slippage":"Deslizamiento mĂĄximo","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["La cantidad mĂĄxima disponible para tomar prestado contra este activo estĂĄ limitada porque el lĂ­mite de deuda estĂĄ al ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["La mĂĄxima cantidad disponible para tomar prestado es <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"La cantidad mĂĄxima disponible para tomar prestado estĂĄ limitada porque casi se ha alcanzado el lĂ­mite de prĂ©stamo del protocolo.","Maximum amount available to supply is <0/> {0} (<1/>).":["La cantidad mĂĄxima disponible para suministrar es <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["La cantidad mĂĄxima disponible para suministrar estĂĄ limitada porque el lĂ­mite de suministro del protocolo estĂĄ al ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"MĂĄximo disponible para tomar prestado","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Conoce GHO","Menu":"MenĂș","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Migrar","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrar a V3","Migrate to stkABPT v2":"Migrar a stkABPT v2","Migrate to v3":"Migrar a V3","Migrate to {0} v3 Market":["Migrar al mercado V3 de ",["0"]],"Migrate your assets":"Migrate your assets","Migrated":"Migrado","Migrating":"Migrando","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"Migrar mĂșltiples garantĂ­as y activos prestados al mismo tiempo puede ser una operaciĂłn costosa y podrĂ­a fallar en ciertas situaciones.<0>Por lo tanto, no se recomienda migrar posiciones con mĂĄs de 5 activos (depositados + tomados prestados) al mismo tiempo.","Migration risks":"Riesgos de migraciĂłn","Minimum GHO borrow amount":"Cantidad de prĂ©stamo mĂ­nima de GHO","Minimum USD value received":"Valor mĂ­nimo en USD recibido","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Cantidad mĂ­nima recibida","Minimum staked Aave amount":"Cantidad mĂ­nima de Aave stakeado","Minimum {0} received":["MĂ­nimo ",["0"]," recibido"],"More":"MĂĄs","NAY":"NO","Need help connecting a wallet? <0>Read our FAQ":"ÂżNecesitas ayuda para conectar una cartera? <0>Lee nuestras preguntas frecuentes","Net APR":"APR Neto","Net APY":"APY neto","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"El APY neto es el efecto combinado de todos los suministros y prĂ©stamos sobre total, incluidos los incentivos. Es posible tener un APY neto negativo si el APY de la deuda es mayor que el APY de suministro.","Net worth":"Valor neto","Network":"Red","Network not supported for this wallet":"Red no soportada para esta cartera","No assets selected to migrate.":"No hay activos seleccionados para migrar.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"No hay recompensas para reclamar","No search results{0}":["Sin resultados de bĂșsqueda",["0"]],"No transactions yet.":"AĂșn no hay transacciones.","No voting power":"Sin poder de voto","None":"Ninguno","Not a valid address":"DirecciĂłn no vĂĄlida","Not enough balance on your wallet":"No hay suficiente balance en tu cartera","Not enough collateral to repay this amount of debt with":"No hay suficiente garantĂ­a para pagar esta cantidad de deuda con","Not enough staked balance":"No hay suficiente balance stakeado","Not enough voting power to participate in this proposal":"No hay suficiente poder de voto para participar en esta propuesta","Not reached":"No alcanzado","Nothing borrowed yet":"Nada tomado prestado aĂșn","Nothing found":"Sin resultados","Nothing staked":"Nada invertido","Nothing supplied yet":"Nada suministrado aĂșn","Ok, Close":"Vale, cerrar","Operation not supported":"OperaciĂłn no soportada","Oracle price":"Precio del orĂĄculo","Overview":"Resumen","Page not found":"PĂĄgina no encontrada","Participating in this {symbol} reserve gives annualized rewards.":["Participar en esta reserva de ",["symbol"]," da recompensas anuales."],"Pending...":"Pendiente...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Por favor ten siempre en cuenta tu <0>factor de salud (HF) cuando migres parcialmente una posiciĂłn y que tus tasas serĂĄn actualizadas a tasas de la V3.","Please connect a wallet to view your personal information here.":"Por favor conecta una cartera para ver tu informaciĂłn personal aquĂ­.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Por favor conecta tu cartera para cambiar tus tokens.","Please connect your wallet to get free testnet assets.":"Por favor conecta tu cartera para obtener activos testnet gratis.","Please connect your wallet to see migration tool.":"Por favor conecta tu cartera para ver la herramienta de migraciĂłn.","Please connect your wallet to see your supplies, borrowings, and open positions.":"Por favor, conecta tu cartera para ver tus suministros, prĂ©stamos y posiciones abiertas.","Please connect your wallet to view transaction history.":"Por favor conecta tu cartera para ver el historial de transacciones.","Please enter a valid wallet address.":"Por favor introduce una direcciĂłn de cartera vĂĄlida.","Please switch to {networkName}.":["Por favor, cambia a ",["networkName"],"."],"Please, connect your wallet":"Por favor, conecta tu cartera","Pool addresses provider is not registered":"La direcciĂłn del proveedor del pool no esta registrada","Powered by":"Powered by","Preview tx and migrate":"Previsualizar la tx y migrar","Price":"Precio","Price data is not currently available for this reserve on the protocol subgraph":"Los datos de los precios no estĂĄn disponibles actualmente para esta reserva en el subgraph del protocolo","Price impact":"Impacto del precio","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"El impacto del precio es la diferencia entre el valor total de los tokens de entrada cambiados y los tokens de destino obtenidos (en USD), que resulta de la liquidez limitada del par de cambio.","Price impact {0}%":["Impacto en el precio ",["0"],"%"],"Privacy":"Privacidad","Proposal details":"Detalles de la propuesta","Proposal overview":"Resumen de la propuesta","Proposals":"Propuestas","Proposition":"ProposiciĂłn","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"El lĂ­mite de prĂ©stamo del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"El lĂ­mite de prĂ©stamo del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"El lĂ­mite de deuda del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado usando este activo como garantĂ­a.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"El lĂ­mite de deuda del protocolo estĂĄ al 100% para este activo. No es posible tomar mĂĄs prestado usando este activo como garantĂ­a.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"El lĂ­mite de suministro del protocolo estĂĄ al 100% para este activo. No es posible suministrar mĂĄs.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"El lĂ­mite de suministro del protocolo estĂĄ al 100% para este activo. No es posible suministrar mĂĄs.","Quorum":"Quorum","Rate change":"Cambio de tasa","Raw-Ipfs":"Raw-Ipfs","Reached":"Alcanzado","Reactivate cooldown period to unstake {0} {stakedToken}":["Reactivar el periodo de cooldown para unstakear ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrĂĄs realizar transacciones.","Read-only mode.":"Modo de solo lectura.","Read-only mode. Connect to a wallet to perform transactions.":"Modo de solo lectura. ConĂ©ctate a una cartera para realizar transacciones.","Receive (est.)":"Recibir (est.)","Received":"Recibido","Recent Transactions":"Recent Transactions","Recipient address":"DirecciĂłn del destinatario","Rejected connection request":"Solicitud de conexiĂłn rechazada","Reload":"Recargar","Reload the page":"Recarga la pĂĄgina","Remaining debt":"Deuda restante","Remaining supply":"Suministro restante","Remind me":"Remind me","Remove":"Eliminar","Repaid":"Pagado","Repay":"Pagar","Repay with":"Pagar con","Repay {symbol}":["Pagar ",["symbol"]],"Repaying {symbol}":["Pagando ",["symbol"]],"Repayment amount to reach {0}% utilization":["Cantidad a pagar para alcanzar el ",["0"],"% de utilizaciĂłn"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.","Reserve Size":"Tamaño de la reserva","Reserve factor":"Factor de reserva","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["El factor de reserva es un porcentaje de interĂ©s que va a un ",["0"]," que es controlado por el gobierno de Aave para promover el crecimiento del ecosistema."],"Reserve status & configuration":"ConfiguraciĂłn y estado de la reserva","Reset":"Restablecer","Restake":"Restakear","Restake {symbol}":["Restakear ",["symbol"]],"Restaked":"Restakeado","Restaking {symbol}":["Restakeando ",["symbol"]],"Review approval tx details":"Revisa los detalles del approve","Review tx":"RevisiĂłn tx","Review tx details":"Revisar detalles de la tx","Revoke power":"Revocar poder","Reward(s) to claim":"Recompensa(s) por reclamar","Rewards APR":"APR de recompensas","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"Detalles de riesgo","Safety of your deposited collateral against the borrowed assets and its underlying value.":"Seguridad de tu garantĂ­a depositada contra los activos prestados y su valor subyacente.","Save and share":"Guardar y compartir","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"Parece que no podemos cambiar la red automĂĄticamente. Por favor, comprueba si puedes cambiarla desde la cartera.","Select an asset":"Selecciona un activo","Select language":"Seleccionar idioma","Select slippage tolerance":"Seleccionar tolerancia de deslizamiento","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.","Selected borrow assets":"Activos de prĂ©stamo seleccionados","Selected supply assets":"Activos de suministro seleccionados","Send Feedback":"Send Feedback","Send feedback":"Enviar feedback","Set up delegation":"Configurar la delegaciĂłn","Share on Lens":"Compartir en Lens","Share on twitter":"Compartir en twitter","Show":"Mostrar","Show Frozen or paused assets":"Mostrar activos congelados o pausados","Show assets with 0 balance":"Mostrar activos con 0 balance","Sign to continue":"Firma para continuar","Signatures ready":"Firmas listas","Signing":"Firmando","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Dado que este activo estĂĄ congelado, las Ășnicas acciones disponibles son retirar y pagar, a las que se puede acceder desde el <0>Panel de control","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera","Slippage":"Deslizamiento","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"El deslizamiento es la diferencia entre las cantidades calculadas y las recibidas debido a las condiciones cambiantes del mercado entre el momento en que se envĂ­a la transacciĂłn y su verificaciĂłn.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Algunos activos migrados no se utilizarĂĄn como garantĂ­a debido al isolation mode habilitado en el mercado V3 de ",["marketName"],". Visita el <0>Panel de control de ",["marketName"]," V3 para administrar el isolation mode."],"Something went wrong":"Se produjo un error","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la pĂĄgina, o volver despuĂ©s.","Sorry, we couldn't find the page you were looking for.":"Lo sentimos, no hemos podido encontrar la pĂĄgina que estabas buscando.","Source":"Source","Spanish":"Español","Stable":"Estable","Stable borrowing is enabled":"El prĂ©stamo estable no estĂĄ habilitado","Stable borrowing is not enabled":"El prĂ©stamo estable no estĂĄ habilitado","Stable debt supply is not zero":"El balance de deuda estable no es cero","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"La tasa de interĂ©s estable <0>permanecerĂĄ igual durante la duraciĂłn de su prĂ©stamo. EstĂĄ recomendado para los perĂ­odos de prĂ©stamo a largo plazo y para los usuarios que prefieren la previsibilidad.","Stablecoin":"Stablecoin","Stake":"Stakear","Stake AAVE":"Stakea AAVE","Stake ABPT":"Stakea ABPT","Stake GHO":"Stakear GHO","Stake cooldown activated":"Cooldown de stakeo activado","Staked":"Stakeado","Staking":"Staking","Staking APR":"Staking APR","Staking Rewards":"Recompensas de Staking","Staking balance":"Balance stakeado","Staking discount":"Descuento por staking","State":"Estado","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Suministrado","Supplied asset amount":"Cantidad de activos suministrados","Supplied assets":"Supplied assets","Supply":"Suministrar","Supply APY":"Suministrar APY","Supply apy":"Apy de suministro","Supply balance":"Balance de suministro","Supply balance after switch":"Balance del suministro despuĂ©s del cambio","Supply cap is exceeded":"El lĂ­mite de suministro se ha sobrepasado","Supply cap on target reserve reached. Try lowering the amount.":"Se ha alcanzado el lĂ­mite de suministro en la reserva especificada. Prueba reduciendo la cantidad.","Supply {symbol}":["Suministrar ",["symbol"]],"Supplying your":"Suministrando tu","Supplying {symbol}":["Suministrando ",["symbol"]],"Switch":"Cambiar","Switch E-Mode":"Cambiar E-Mode","Switch Network":"Cambiar de red","Switch borrow position":"Cambiar posiciĂłn de prĂ©stamo","Switch to":"Cambiar a","Switched":"Cambiado","Switching":"Cambiando","Switching E-Mode":"Cambiando E-Mode","Techpaper":"Documento tĂ©cnico","Terms":"TĂ©rminos","Test Assets":"Activos de prueba","Testnet mode":"Testnet mode","Testnet mode is ON":"Testnet mode estĂĄ ON","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"ÂĄGracias por votar!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"El % de tu poder de prĂ©stamo total utilizado. Esto se basa en la cantidad de tu garantĂ­a suministrada y la cantidad total que puedes pedir prestado.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"El Aave Balancer Pool Token (ABPT) es un token de pool de liquidez. Puedes recibir ABPT depositando una combinaciĂłn de AAVE + wstETH en el pool de liquidez de Balancer. Luego puedes stakear tu BPT en el mĂłdulo de seguridad para asegurar el protocolo y ganar incentivos de seguridad.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"El Protocolo Aave estĂĄ programado para usar siempre el precio de 1 GHO = $1. Esto es diferente del uso del precio de mercado a travĂ©s de orĂĄculos para otros criptoactivos. Esto crea oportunidades de arbitraje estabilizadoras cuando el precio de GHO fluctĂșa.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"El ratio LTV mĂĄximo representa el poder de endeudamiento mĂĄximo de una garantĂ­a especĂ­fica. Por ejemplo, si una garantĂ­a tiene un LTV del 75 %, el usuario puede pedir prestado hasta 0,75 ETH en la moneda principal por cada 1 ETH de garantĂ­a.","The address of the pool addresses provider is invalid":"La direcciĂłn del proveedor del grupo de direcciones no es vĂĄlida","The app is running in fork mode.":"La aplicaciĂłn se ejecuta en fork mode.","The app is running in testnet mode. Learn how it works in":"La aplicaciĂłn se estĂĄ ejecutando en testnet mode. Aprende como funciona en","The caller of the function is not an AToken":"El llamador de la funciĂłn no es un AToken","The caller of this function must be a pool":"La funciĂłn debe ser llamada por un pool","The collateral balance is 0":"El balance de garantĂ­a es 0","The collateral chosen cannot be liquidated":"La garantĂ­a elegida no puede ser liquidada","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"El periodo de cooldown es el tiempo requerido antes de unstakear tus tokens (20 dĂ­as). Solo puedes retirar tus activos del MĂłdulo de Seguridad despuĂ©s del periodo de cooldown y dentro de la ventana de unstakeo.<0>Aprende mĂĄs","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["El periodo de cooldown es ",["0"],". DespuĂ©s ",["1"]," del cooldown, entrarĂĄs a la ventana de unstakeo de ",["2"],". ContinuarĂĄs recibiendo premios durante el cooldown y la ventana de unstakeo."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"La relaciĂłn prĂ©stamo-valor de las posiciones migradas provocarĂ­a la liquidaciĂłn. Aumenta la garantĂ­a migrada o reduce el prĂ©stamo migrado para continuar.","The requested amount is greater than the max loan size in stable rate mode":"La cantidad solicitada es mayor que el tamaño mĂĄximo del prĂ©stamo en el modo de tasa estable","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"La cantidad total de tus activos denominados en USD que pueden ser usados como garantĂ­a para activos de prĂ©stamo.","The underlying asset cannot be rescued":"El activo base no puede ser rescatado","The underlying balance needs to be greater than 0":"El balance subyacente debe ser mayor que 0","The weighted average of APY for all borrowed assets, including incentives.":"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.","The weighted average of APY for all supplied assets, including incentives.":"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.","There are not enough funds in the{0}reserve to borrow":["No hay fondos suficientes en la reserva",["0"],"para tomar prestado"],"There is not enough collateral to cover a new borrow":"No hay suficiente garantĂ­a para cubrir un nuevo prĂ©stamo","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"No hay suficiente liquidez para que el activo seleccionado realice el cambio. Prueba reduciendo la cantidad.","There was some error. Please try changing the parameters or <0><1>copy the error":"Hubo un error. Por favor intenta cambiar los parĂĄmetros o <0><1>copiar el error","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"Estos activos estĂĄn temporalmente congelados o pausados por decisiones de la comunidad de Aave, lo que significa que no se puede suministrar / tomar prestado o intercambiar tasas de estos activos. Se permiten retiros y pagos de deuda. Sigue el <0>foro de gobierno de Aave para mĂĄs actualizaciones.","These funds have been borrowed and are not available for withdrawal at this time.":"Estos fondos se han tomado prestados y no estĂĄn disponibles para su retirada en este momento.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"Esta acciĂłn reducirĂĄ el factor de salud V2 por debajo del umbral de liquidaciĂłn. MantĂ©n la garantĂ­a o migra la posiciĂłn de prĂ©stamo para continuar.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"Esta acciĂłn reducirĂĄ el factor de salud de V3 por debajo del umbral de liquidaciĂłn. Aumenta la garantĂ­a migrada o reduce el prĂ©stamo migrado para continuar.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"Esta acciĂłn reducirĂĄ tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidaciĂłn de la garantĂ­a.","This address is blocked on app.aave.com because it is associated with one or more":"Esta direcciĂłn estĂĄ bloqueada en app.aave.com porque estĂĄ asociada con una o mĂĄs","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["Este activo casi ha alcanzado su lĂ­mite de prĂ©stamo. Solo hay ",["messageValue"]," disponibles para ser prestado de este mercado."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["Este activo casi ha alcanzado su lĂ­mite de suministro. Solo se puede suministrar ",["messageValue"]," a este mercado."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"Este activo ha sido pausado debido a una decisiĂłn de la comunidad. El suministro, los retiros, los prĂ©stamos y los pagos se han visto afectados.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"Este activo ha alcanzado su lĂ­mite de prĂ©stamo. No queda nada disponible para ser prestado de este mercado.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"Este activo ha alcanzado su lĂ­mite de suministro. No queda nada disponible para ser suministrado desde este mercado.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"Este activo estĂĄ congelado debido a una decisiĂłn del Gobierno del Protocolo Aave. <0>More informaciĂłn","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"Este activo estĂĄ congelado debido a una decisiĂłn del Gobierno del Protocolo Aave. El 20 de diciembre de 2022, renFIL ya no serĂĄ compatible y no se podrĂĄ conectar de nuevo a su red nativa. Se recomienda retirar las posiciones de suministro y pagar las posiciones de prĂ©stamo para que renFIL se pueda convertir de nuevo a FIL antes de la fecha lĂ­mite. DespuĂ©s de esta fecha, ya no serĂĄ posible convertir renFIL a FIL. <0>MĂĄs detalles","This asset is frozen due to an Aave community decision. <0>More details":"Este activo estĂĄ congelado debido a una decisiĂłn de la comunidad de Aave. <0>MĂĄs informaciĂłn","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"EstĂĄ previsto que este activo se desvincule debido a una decisiĂłn del Gobierno del Protocolo Aave. <0>MĂĄs detalles","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"Este cĂĄlculo de gas es solo una estimaciĂłn. Tu cartera establecerĂĄ el precio de la transacciĂłn. Puedes modificar la configuraciĂłn de gas directamente desde tu proveedor de cartera.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"Esta es la cantidad total disponible que puedes tomar prestada. Puedes tomar prestado basado en tu garantĂ­a y hasta que el lĂ­mite de prĂ©stamo se alcance.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"Esta es la cantidad total que puedes suministrar en esta reserva. Puedes suministrar el balance de tu cartera hasta que se alcance el lĂ­mite de suministro.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"Esto representa el umbral en el que un prĂ©stamo serĂĄ considerado sin garantĂ­a suficiente y sujeto a la liquidaciĂłn de la misma. Por ejemplo, si una garantĂ­a tiene un umbral de liquidaciĂłn del 80 %, significa que el prĂ©stamo serĂĄ liquidado cuando el valor de la deuda alcanze el 80% del valor de la garantĂ­a.","Time left to unstake":"Tempo restante para unstakear","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada","To":"To","To borrow you need to supply any asset to be used as collateral.":"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantĂ­a.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"Para continuar, necesitas otorgar permiso a los contratos inteligentes de Aave para mover tus fondos de tu cartera. SegĂșn el activo y la cartera que uses, se hace firmando el mensaje de permiso (sin coste de gas), o enviando una transacciĂłn de aprobaciĂłn (requiere coste de gas). <0>Aprende mĂĄs","To repay on behalf of a user an explicit amount to repay is needed":"Para pagar en nombre de un usuario, se necesita una cantidad explĂ­cita para pagar","To request access for this permissioned market, please visit: <0>Acces Provider Name":"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"Para enviar una propuesta de cambios menores al protocolo, necesitarĂĄs al menos 80K de poder. Si deseas cambiar la base central del cĂłdigo, necesitarĂĄs un poder de 320K.<0>Aprende mĂĄs","Top 10 addresses":"Top 10 direcciones","Total available":"Total disponible","Total borrowed":"Total tomado prestado","Total borrows":"Total de prĂ©stamos","Total emission per day":"Emisiones totales por dĂ­a","Total interest accrued":"InterĂ©s total acumulado","Total market size":"Tamaño total del mercado","Total supplied":"Total suministrado","Total worth":"Valor total","Track wallet":"Haz seguimiento de tu cartera","Track wallet balance in read-only mode":"Haz un seguimiento del balance de la cartera en el modo de solo lectura","Transaction failed":"Error en la transacciĂłn","Transaction history":"Historial de transacciones","Transaction history is not currently available for this market":"El historial de transacciones no estĂĄ disponible actualmente para este mercado","Transaction overview":"Resumen de la transacciĂłn","Transactions":"Transacciones","Unavailable":"No disponible","Unbacked":"No respaldado","Unbacked mint cap is exceeded":"El lĂ­mite de minteo sin respaldo ha sido excedido","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["El activo subyacente no existe en el mercado v3 de ",["marketName"],", por lo tanto, esta posiciĂłn no se puede migrar."],"Underlying token":"Token subyacente","Unstake":"Unstakear","Unstake now":"Unstakea ahora","Unstake window":"Ventana de unstakeo","Unstake {symbol}":["Unstakear ",["symbol"]],"Unstaked":"Unstakeado","Unstaking {symbol}":["Unstakeando ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Úsalo para votar a favor o en contra de propuestas activas.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Utiliza tu balance de AAVE, stkAAVE o aAava para delegar tu voto y poder de proposiciĂłn. No enviarĂĄs ningĂșn token, solo los derechos de votar y proponer cambios en el protocolo. Puedes volver a delegar o revocar el poder de vuelta en cualquier momento.","Used as collateral":"Utilizado como garantĂ­a","User cannot withdraw more than the available balance":"El usuario no puede retirar mĂĄs que el balance disponible","User did not borrow the specified currency":"El usuario no tomĂł prestado el activo especificado","User does not have outstanding stable rate debt on this reserve":"El usuario no tiene deuda pendiente de tasa estable en esta reserva","User does not have outstanding variable rate debt on this reserve":"El usuario no tiene deuda pendiente de tasa variable en esta reserva","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"El usuario estĂĄ intentando tomar prestado mĂșltiples activos incluido uno aislado","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Los usuarios que stakean AAVE en el Modulo de Seguridad (es decir, poseedores de stkAAVE) reciben un descuento en la tasa de interĂ©s de prĂ©stamo de GHO. Este descuento se aplica a 100 GHO por cada 1 stkAAVE en posesiĂłn. Usa el calculador de abajo para ver la tasa de prĂ©stamo de GHO con el descuento aplicado.","Utilization Rate":"Tasa de uso","VIEW TX":"VER TX","VOTE NAY":"VOTAR NO","VOTE YAE":"VOTAR SI","Variable":"Variable","Variable debt supply is not zero":"El suministro de deuda variable no es cero","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Tasa variable","Version 2":"VersiĂłn 2","Version 3":"VersiĂłn 3","View":"Ver","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"Ver Transacciones","View all":"View all","View all votes":"Ver todos los votos","View contract":"Ver contrato","View details":"Ver detalles","View on Explorer":"Ver en el explorador","Vote NAY":"Votar NO","Vote YAE":"Votar SI","Voted NAY":"VotĂł NAY","Voted YAE":"VotĂł YAE","Votes":"Votos","Voting":"Votando","Voting is on":"La votaciĂłn estĂĄ activa","Voting power":"Poder de votaciĂłn","Voting results":"Resultados de la votaciĂłn","Wallet Balance":"Balance de la cartera","Wallet balance":"Balance de la cartera","Wallet not detected. Connect or install wallet and retry":"Cartera no detectada. Conecta o instala la cartera y vuelve a intentarlo","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"Las carteras son proporcionadas por proveedores externos y al seleccionarla, aceptas los tĂ©rminos de dichos proveedores. Tu acceso a la cartera podrĂ­a depender de que el proveedor externo estĂ© operativo.","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"No pudimos encontrar ningĂșn activo relacionado con tu bĂșsqueda. Vuelve a intentarlo con un nombre diferente de activo, sĂ­mbolo o direcciĂłn.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"No pudimos encontrar ninguna transacciĂłn relacionada con tu bĂșsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"No podemos detectar una cartera. Conecta una cartera para stakear y ver tu balance.","We suggest you go back to the Dashboard.":"Te sugerimos volver al Panel de control.","Website":"PĂĄgina web","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"Cuando ocurre una liquidaciĂłn, los liquidadores pagan hasta el 50% de la cantidad pendiente del prĂ©stamo en nombre del prestatario. A cambio, pueden comprar la garantĂ­a con descuento y quedarse con la diferencia (sanciĂłn de liquidaciĂłn) como bonificaciĂłn.","With a voting power of <0/>":"Con un poder de votaciĂłn de <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"Con la testnet Faucet puedes obtener activos gratuitos para probar el Protocolo Aave. AsegĂșrate de cambiar tu proveedor de cartera a la red de testnet adecuada, selecciona el activo deseado y haz clic en \"Faucet\" para obtener tokens transferidos a tu cartera. Los activos de una testnet no son \"reales\", lo que significada que no tienen valor monetario. <0>Aprende mĂĄs","Withdraw":"Retirar","Withdraw & Switch":"Retirar y Cambiar","Withdraw and Switch":"Retirar y Cambiar","Withdraw {symbol}":["Retirar ",["symbol"]],"Withdrawing":"Retirando","Withdrawing and Switching":"Retirando y Cambiando","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Retirar esta cantidad reducirĂĄ tu factor de salud y aumentarĂĄ el riesgo de liquidaciĂłn.","Withdrawing {symbol}":["Retirando ",["symbol"]],"Wrong Network":"Red incorrecta","YAE":"YAE","You are entering Isolation mode":"EstĂĄs entrando en el Isolation mode","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"No puedes cambiar el uso como modo de garantĂ­a para este activo, porque causarĂĄ una liquidaciĂłn","You can not use this currency as collateral":"No puedes usar este activo como garantĂ­a","You can not withdraw this amount because it will cause collateral call":"No puedes retirar esta cantidad porque causarĂĄ una liquidaciĂłn","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"Solo puedes retirar tus activos del MĂłdulo de Seguridad despuĂ©s de que finalice el perĂ­odo de cooldown y la ventana de unstakeo estĂ© activa.","You can report incident to our <0>Discord or<1>Github.":"Puedes reportar cualquier incidente a nuestro <0>Discord o <1>Github.","You cancelled the transaction.":"Has cancelado la transacciĂłn.","You did not participate in this proposal":"No has participado en esta propuesta","You do not have supplies in this currency":"No tienes suministros en este activo","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"No tienes suficientes fondos en tu cartera para pagar la cantidad total. Si procedes a pagar con tu cantidad actual de fondos, aĂșn tendrĂĄs un pequeño prĂ©stamo en tu panel de control.","You have no AAVE/stkAAVE/aAave balance to delegate.":"No tienes balance de AAVE/stkAAVE/aAave para delegar.","You may borrow up to <0/> GHO at <1/> (max discount)":"Puedes tomar prestado hasta <0/> GHO al <1/> (descuento mĂĄximo)","You may enter a custom amount in the field.":"Puedes ingresar una cantidad especĂ­fica en el campo.","You switched to {0} rate":["Has cambiado a tasa ",["0"]],"You unstake here":"Unstakea aquĂ­","You voted {0}":["Has votado ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"SaldrĂĄs del modo aislamiento y otros tokens pueden ser usados ahora como garantĂ­a","You {action} <0/> {symbol}":["Tu ",["action"]," <0/> ",["symbol"]],"You've successfully switched borrow position.":"Has cambiado con Ă©xito la posiciĂłn de prĂ©stamo.","You've successfully switched tokens.":"Has cambiado los tokens con Ă©xito.","You've successfully withdrew & switched tokens.":"Has retirado y cambiado tokens con Ă©xito.","Your balance is lower than the selected amount.":"Tu balance es mĂĄs bajo que la cantidad seleccionada.","Your borrows":"Tus prĂ©stamos","Your current loan to value based on your collateral supplied.":"Tu actual relaciĂłn prĂ©stamo-valor basado en tu garantĂ­a suministrada.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Tu factor de salud y la relaciĂłn prĂ©stamo-valor determinan la seguridad de tu garantĂ­a. Para evitar liquidaciones, puedes suministrar mĂĄs garantĂ­a o pagar las posiciones de prĂ©stamo.","Your info":"Tu informaciĂłn","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Tu poder de proposiciĂłn se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.","Your reward balance is 0":"Tu balance de recompensa es 0","Your supplies":"Tus suministros","Your voting info":"Tu informaciĂłn de voto","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Tu cartera de ",["name"]," estĂĄ vacĂ­a. Compra o transfiere activos o usa <0>",["0"]," para transferir tus activos de ",["network"],"."],"Your {name} wallet is empty. Purchase or transfer assets.":["Tu cartera de ",["name"]," estĂĄ vacĂ­a. Compra o transfiere activos."],"Your {networkName} wallet is empty. Get free test assets at":["Tu cartera de ",["networkName"]," estĂĄ vacĂ­a. Consigue activos de prueba gratis en"],"Your {networkName} wallet is empty. Get free test {0} at":["Tu cartera de ",["networkName"]," estĂĄ vacĂ­a. Consigue ",["0"]," de prueba gratis en"],"Zero address not valid":"DirecciĂłn cero no vĂĄlida","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"activos","blocked activities":"actividades bloqueadas","copy the error":"copiar el error","disabled":"deshabilitado","documentation":"documentaciĂłn","enabled":"habilitado","ends":"finaliza","for":"para","of":"de","on":"en","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"por favor comprueba que la cantidad que deseas depositar no estĂĄ siendo utilizada actualmente para stakear. Si estĂĄ utilizando para stakear, tu transacciĂłn podrĂ­a fallar.","repaid":"reembolsado","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"stETH suministrado como garantĂ­a continuarĂĄ acumulando recompensas de staking proporcionadas por rebases diarios.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["Los tokens stETH se migrarĂĄn a Wrapped stETH usando el wrapper del protocolo de Lido, lo que provoca un cambio en el balance de suministro despuĂ©s de la migraciĂłn: ",["0"]],"staking view":"vista de stakeo","starts":"empieza","stkAAVE holders get a discount on GHO borrow rate":"poseedores de stkAAVE obtienen un descuento en la tasa de prĂ©stamo de GHO","to":"para","tokens is not the same as staking them. If you wish to stake your":"tokens no es lo mismo que stakearlos. Si deseas stakearlos","tokens, please go to the":"tokens, por favor ve al","withdrew":"retirado","{0}":[["0"]],"{0} Balance":["Balance ",["0"]],"{0} Faucet":[["0"]," Faucet"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," el servicio on-ramp es proporcionado por proveedores externos y al seleccionarlo, estĂĄs aceptando los tĂ©rminos de dichos proveedores. Tu acceso al servicio podrĂ­a depender de que el proveedor externo estĂ© operativo."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"d"],"{h}h":[["h"],"h"],"{label}":[["label"]],"{m}m":[["m"],"m"],"{networkName} Faucet":["Faucet ",["networkName"]],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," activos seleccionados"],"{stepName}":[["stepName"]],"{s}s":[["s"],"s"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file diff --git a/src/locales/es/messages.po b/src/locales/es/messages.po index c2183724be..efedad0b1e 100644 --- a/src/locales/es/messages.po +++ b/src/locales/es/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: aave-interface\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-11-27 18:06\n" +"PO-Revision-Date: 2024-12-11 18:07\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -1006,7 +1006,7 @@ msgid "Efficiency mode (E-Mode)" msgstr "Modo de eficiencia (E-Mode)" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." +msgid "Eligible for the Merit program." msgstr "" #: src/layouts/FeedbackDialog.tsx diff --git a/src/locales/fr/messages.js b/src/locales/fr/messages.js index 19febcd77e..8df10c1953 100644 --- a/src/locales/fr/messages.js +++ b/src/locales/fr/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":". .CSV",".JSON":". JSON (en anglais seulement)","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>Ajoutez <3/> stkAAVE pour emprunter Ă  <4/> (remise maximale)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Ajoutez stkAAVE pour voir le taux d’emprunt avec escompte","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>Attention: Les changements de paramĂštres via la gouvernance peuvent modifier le facteur de santĂ© de votre compte et le risque de liquidation. Suivez le <1>forum de gouvernance d’Aave pour les mises Ă  jour.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>TolĂ©rance de glissement <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.","APR":"APR","APY":"APY","APY change":"Changement d’APY","APY type":"APY type","APY type change":"Changement de type APY","APY with discount applied":"APY avec remise appliquĂ©e","APY, borrow rate":"APY, borrow rate","APY, variable":"APY, variable","AToken supply is not zero":"L'approvisionnement en aTokens n'est pas nul","Aave Governance":"Gouvernance Aave","Aave aToken":"Aave aToken","Aave debt token":"Jeton de dette Aave","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave est un protocole entiĂšrement dĂ©centralisĂ© et rĂ©gi par la communautĂ© par les dĂ©tenteurs de jetons AAVE. Les dĂ©tenteurs de jetons AAVE discutent, proposent et votent collectivement sur les mises Ă  niveau du protocole. Les dĂ©tenteurs de jetons AAVE (rĂ©seau Ethereum uniquement) peuvent soit voter eux-mĂȘmes sur de nouvelles propositions, soit choisir l’adresse de leur choix. Pour en savoir plus, consultez la page Gouvernance","Aave per month":"Aave par mois","About GHO":"À propos de GHO","Account":"Compte","Action cannot be performed because the reserve is frozen":"L'action ne peut pas ĂȘtre effectuĂ©e car la rĂ©serve est gelĂ©e","Action cannot be performed because the reserve is paused":"L'action ne peut pas ĂȘtre effectuĂ©e car la rĂ©serve est mise en pause","Action requires an active reserve":"L'action nĂ©cessite une rĂ©serve active","Activate Cooldown":"Activer le temps de recharge","Add stkAAVE to see borrow APY with the discount":"Ajoutez stkAAVE pour voir l’APY d’emprunt avec la remise","Add to wallet":"Ajouter au portefeuille","Add {0} to wallet to track your balance.":["Ajouter ",["0"]," Ă  Wallet pour suivre votre solde."],"Address is not a contract":"L'adresse n'est pas un contrat","Addresses":"Adresses","Addresses ({0})":["Adresses (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"Tout est fait !","All proposals":"Toutes les propositions","All transactions":"Toutes les transactions","Allowance required action":"Allocation action requise","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"Vous permet de dĂ©cider si vous souhaitez utiliser un actif fourni en tant que collatĂ©ral. Un actif utilisĂ© comme collatĂ©ral affectera votre pouvoir d'emprunt et votre Health Factor.","Amount":"Montant","Amount After Fee":"Amount After Fee","Amount claimable":"Montant rĂ©clamable","Amount in cooldown":"QuantitĂ© en temps de recharge","Amount must be greater than 0":"Le montant doit ĂȘtre supĂ©rieur Ă  0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Amount to migrate","Amount to unstake":"Montant Ă  la mise en jeu","An error has occurred fetching the proposal.":"An error has occurred fetching the proposal.","Approve Confirmed":"Approuver ConfirmĂ©","Approve with":"Approuvez avec","Approve {symbol} to continue":["Approuver ",["symbol"]," pour continuer"],"Approving {symbol}...":["Approuver ",["symbol"],"..."],"Array parameters that should be equal length are not":"Les paramĂštres de tableau devraient ĂȘtre de mĂȘme longueur ne sont pas","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.","Asset":"Actif","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"L’actif ne peut ĂȘtre utilisĂ© comme garantie qu’en mode isolĂ© avec un pouvoir d’emprunt limitĂ©. Pour passer en mode d’isolation, dĂ©sactivez toutes les autres garanties.","Asset can only be used as collateral in isolation mode only.":"L'actif ne peut ĂȘtre utilisĂ© comme garantie qu'en mode isolĂ©.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["L’actif ne peut pas ĂȘtre migrĂ© car vous disposez d’une garantie isolĂ©e dans ",["marketName"]," v3 MarchĂ© qui limite les actifs empruntables. Vous pouvez gĂ©rer vos garanties dans <0>",["marketName"]," Tableau de bord V3"],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["L’actif ne peut pas ĂȘtre migrĂ© en raison d’une liquiditĂ© insuffisante ou d’une limitation du plafond d’emprunt ",["marketName"]," v3 marchĂ©."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["L’actif ne peut pas ĂȘtre migrĂ© en raison d’une restriction de plafond d’approvisionnement dans ",["marketName"]," v3 marchĂ©."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["La ressource ne peut pas ĂȘtre migrĂ©e vers ",["marketName"]," V3 Market en raison des restrictions du mode E. Vous pouvez dĂ©sactiver ou gĂ©rer les catĂ©gories du mode E dans votre <0>tableau de bord V3"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["La ressource ne peut pas ĂȘtre migrĂ©e vers ",["marketName"]," v3 MarchĂ© puisque l’actif collatĂ©ral activera le mode d’isolation."],"Asset cannot be used as collateral.":"L'actif ne peut pas ĂȘtre utilisĂ© comme collatĂ©ral.","Asset category":"CatĂ©gorie d'actifs","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["L’actif est gelĂ© ",["marketName"]," v3, donc cette position ne peut pas ĂȘtre migrĂ©e."],"Asset is not borrowable in isolation mode":"L'actif n'est pas empruntable en mode d'isolement","Asset is not listed":"L'actif n'est pas rĂ©pertoriĂ©","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"L’offre d’actifs est limitĂ©e Ă  un certain montant afin de rĂ©duire l’exposition du protocole Ă  l’actif et d’aider Ă  gĂ©rer les risques encourus.","Assets":"Actifs","Assets to borrow":"Actifs Ă  emprunter","Assets to supply":"Actifs Ă  dĂ©poser","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"À prix rĂ©duit","Available":"Disponible","Available liquidity":"LiquiditĂ©s disponibles","Available on":"Disponible sur","Available rewards":"RĂ©compenses disponibles","Available to borrow":"Disponible Ă  emprunter","Available to supply":"Disponible au dĂ©pĂŽt","Back to Dashboard":"Retour au tableau de bord","Balance":"Solde","Balance to revoke":"Solde Ă  rĂ©voquer","Balancer Pool":"Balancer Pool","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Soyez prudent - Vous ĂȘtes trĂšs proche de la liquidation. Envisagez de dĂ©poser plus de collatĂ©ral ou de rembourser certaines de vos positions empruntĂ©es","Be mindful of the network congestion and gas prices.":"Faites attention Ă  la congestion du rĂ©seau et aux prix de l’essence.","Because this asset is paused, no actions can be taken until further notice":"Étant donnĂ© que cette ressource est suspendue, aucune action ne peut ĂȘtre entreprise jusqu’à nouvel ordre","Before supplying":"Avant de dĂ©poser","Blocked Address":"Adresse bloquĂ©e","Borrow":"Emprunter","Borrow APY":"Emprunter de l’APY","Borrow APY, variable":"PrĂȘt APY, variable","Borrow amount to reach {0}% utilization":["Emprunter le montant Ă  atteindre ",["0"],"% d’utilisation"],"Borrow and repay in same block is not allowed":"Emprunter et rembourser dans le mĂȘme bloc n'est pas autorisĂ©","Borrow apy":"Emprunter apy","Borrow balance":"Emprunter le solde","Borrow balance after repay":"Emprunter le solde aprĂšs le remboursement","Borrow balance after switch":"Emprunter le solde aprĂšs le changement","Borrow cap":"Limite d'emprunt","Borrow cap is exceeded":"Le plafond d'emprunt est dĂ©passĂ©","Borrow info":"Emprunter des informations","Borrow power used":"Puissance d'emprunt utilisĂ©e","Borrow rate":"Borrow rate","Borrow rate change":"Modification du taux d’emprunt","Borrow {symbol}":["Emprunter ",["symbole"]],"Borrowable":"Borrowable","Borrowed":"EmpruntĂ©","Borrowed asset amount":"Montant de l’actif empruntĂ©","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["L'emprunt n'est actuellement pas disponible pour ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"L’emprunt est dĂ©sactivĂ© en raison d’une dĂ©cision de la communautĂ© Aave. <0>Plus d’informations","Borrowing is not enabled":"L'emprunt n'est pas activĂ©","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"L’emprunt n’est pas disponible car vous utilisez le mode Isolation. Pour gĂ©rer le mode d’isolation, rendez-vous sur votre <0>tableau de bord.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"L'emprunt n'est pas disponible car vous avez activĂ© le mode EfficacitĂ© (E-Mode) et le mode Isolation. Pour gĂ©rer le mode E et le mode Isolation, rendez-vous sur votre <0>tableau de bord.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["L'emprunt n'est pas disponible, car vous avez activĂ© le mode d'efficacitĂ© (E-Mode) pour la catĂ©gorie ",["0"],". Pour gĂ©rer les catĂ©gories E-Mode, visitez votre <0>tableau de bord."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"L’emprunt de cet actif est limitĂ© Ă  un certain montant afin de minimiser l’insolvabilitĂ© du pool de liquiditĂ©s.","Borrowing power and assets are limited due to Isolation mode.":"Le pouvoir d'emprunt et les actifs sont limitĂ©s en raison du mode d'isolement.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Emprunter ce montant rĂ©duira votre facteur santĂ© et augmentera le risque de liquidation.","Borrowing {symbol}":["Emprunter ",["symbole"]],"Both":"Les deux","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Acheter des crypto-monnaies avec des monnaies fiduciaires","Buy Crypto with Fiat":"Acheter des crypto-monnaies avec des monnaies fiduciaires","Buy {cryptoSymbol} with Fiat":["Acheter ",["cryptoSymbol"]," avec Fiat"],"COPIED!":"COPIÉ!","COPY IMAGE":"COPIER L’IMAGE","Can be collateral":"Peut ĂȘtre collatĂ©ral","Can be executed":"Peut ĂȘtre exĂ©cutĂ©","Can't validate the wallet address. Try again.":"Can't validate the wallet address. Try again.","Cancel":"Annuler","Cannot disable E-Mode":"Impossible de dĂ©sactiver le mode E","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.","Choose one of the on-ramp services":"Choisissez l’un des services de rampe d’accĂšs","Claim":"RĂ©clamer","Claim all":"RĂ©clamer tout","Claim all rewards":"RĂ©clamez toutes les rĂ©compenses","Claim {0}":["RĂ©clamer ",["0"]],"Claim {symbol}":["Revendication ",["symbol"]],"Claimable AAVE":"AAVE RĂ©clamable","Claimed":"RevendiquĂ©","Claiming":"RĂ©clamer","Claiming {symbol}":["PrĂ©tendant ",["symbol"]],"Close":"Fermer","Collateral":"CollatĂ©rale","Collateral balance after repay":"Solde de garantie aprĂšs remboursement","Collateral change":"Modification des garanties","Collateral is (mostly) the same currency that is being borrowed":"La garantie est (principalement) la mĂȘme devise que celle qui est empruntĂ©e","Collateral to repay with":"Garantie Ă  rembourser","Collateral usage":"Usage de collatĂ©ral","Collateral usage is limited because of Isolation mode.":"L'utilisation du collatĂ©ral est limitĂ©e en raison du mode d'isolation.","Collateral usage is limited because of isolation mode.":"L’utilisation des garanties est limitĂ©e en raison du mode d’isolation.","Collateral usage is limited because of isolation mode. <0>Learn More":"L'utilisation de la garantie est limitĂ©e en raison du mode d'isolement. <0>En savoir plus","Collateralization":"CollatĂ©ralisation","Collector Contract":"Contrat de collectionneur","Collector Info":"Informations sur le collectionneur","Confirm transaction":"Confirm transaction","Confirming transaction":"Confirming transaction","Connect":"Connect","Connect wallet":"Connecter le portefeuille","Cooldown period":"PĂ©riode de recharge","Cooldown period warning":"Avertissement de pĂ©riode de refroidissement","Cooldown time left":"Temps de recharge restant","Cooldown to unstake":"Temps de recharge pour dĂ©staker","Cooling down...":"Refroidissement...","Copy address":"Copier l'adresse","Copy error message":"Copier le message d’erreur","Copy error text":"Copier le texte d'erreur","Covered debt":"Dette couverte","Current LTV":"LTV actuelle","Current differential":"DiffĂ©rentiel de courant","Current v2 Balance":"Solde actuel v2","Current v2 balance":"Solde actuel de la v2","Current votes":"Votes actuels","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.","Dark mode":"Mode Sombre","Dashboard":"Tableau de bord","Data couldn't be fetched, please reload graph.":"Les donnĂ©es n’ont pas pu ĂȘtre rĂ©cupĂ©rĂ©es, veuillez recharger le graphique.","Debt":"Dette","Debt ceiling is exceeded":"Le plafond de la dette est dĂ©passĂ©","Debt ceiling is not zero":"Le plafond de la dette n'est pas nul","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"Le plafond de la dette limite le montant que les utilisateurs du protocole peuvent emprunter sur cet actif. Le plafond de la dette est spĂ©cifique aux actifs isolĂ©s et est indiquĂ© en USD.","Delegated power":"DĂ©lĂ©gation de pouvoirs","Destination":"Destination","Details":"DĂ©tails","Developers":"DĂ©veloppeurs","Differential":"DiffĂ©rentiel","Disable E-Mode":"DĂ©sactiver le E-mode","Disable fork":"Disable fork","Disable testnet":"DĂ©sactiver le rĂ©seau de test","Disable {symbol} as collateral":["DĂ©sactiver ",["symbol"]," comme garantie"],"Disabled":"DĂ©sactivĂ©","Disabling E-Mode":"DĂ©sactiver le E-mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"La dĂ©sactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santĂ©.","Disconnect Wallet":"DĂ©connecter le portefeuille","Discord channel":"Canal Discord","Discount":"Rabais","Discount applied for <0/> staking AAVE":"Remise appliquĂ©e pour <0/> le staking d’AAVE","Discount model parameters":"ParamĂštres du modĂšle de remise","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Les paramĂštres de remise sont dĂ©cidĂ©s par la communautĂ© Aave et peuvent ĂȘtre modifiĂ©s au fil du temps. Consultez la section Gouvernance pour les mises Ă  jour et votez pour participer. <0>Pour en savoir plus","Discountable amount":"Montant actualisable","Docs":"Docs","Download":"TĂ©lĂ©charger","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"En raison de la mĂ©canique interne de stETH requise pour le rebasage de la prise en charge, il n’est pas possible d’effectuer un changement de garantie oĂč stETH est le jeton source.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"E-Mode augmente votre LTV pour une catĂ©gorie d'actifs sĂ©lectionnĂ©e jusqu'Ă  <0/>. <1>En savoir plus","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Edit","Effective interest rate":"Taux d’intĂ©rĂȘt effectif","Efficiency mode (E-Mode)":"Mode efficacitĂ© (E-Mode)","Eligible for the merit program.":"Eligible for the merit program.","Email":"Email","Emode":"Emode","Enable E-Mode":"Activer le E-Mode","Enable {symbol} as collateral":["Activer ",["symbol"]," comme collatĂ©ral"],"Enabled":"ActivĂ©","Enabling E-Mode":"Activation du E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"L'activation de cet actif comme garantie augmente votre pouvoir d'emprunt et votre facteur de santĂ©. Cependant, il peut ĂȘtre liquidĂ© si votre facteur de santĂ© tombe en dessous de 1.","English":"Anglais","Enter ETH address":"Entrez l'adresse ETH","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"Entrez un montant","Error connecting. Try refreshing the page.":"Erreur de connexion. Essayez d'actualiser la page.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["IntĂ©rĂȘts composĂ©s estimĂ©s, y compris l’escompte pour le jalonnement ",["0"],"AAVE dans le module de sĂ©curitĂ©."],"Estimated time":"Estimated time","Exceeds the discount":"DĂ©passe la remise","Exchange rate":"Exchange rate","Expected amount to repay":"Montant prĂ©vu Ă  rembourser","Expires":"Expire","Export data to":"Exporter des donnĂ©es vers","FAQ":"FAQ","FAQS":"Foire aux questions","Failed to load proposal voters. Please refresh the page.":"Impossible de charger les votants de proposition. Veuillez rafraĂźchir la page.","Faucet":"Faucet","Faucet {0}":["Faucet ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"RĂ©cupĂ©ration de donnĂ©es...","Filter":"Filtrer","Fixed rate":"Taux fixe","Flashloan is disabled for this asset, hence this position cannot be migrated.":"Flashloan est dĂ©sactivĂ© pour cet actif, cette position ne peut donc pas ĂȘtre migrĂ©e.","For repayment of a specific type of debt, the user needs to have debt that type":"For repayment of a specific type of debt, the user needs to have debt that type","Fork mode is ON":"Fork mode is ON","Forum discussion":"Discussion de forum","French":"Français","Funds in the Safety Module":"Fonds dans le Safety Module","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO est un actif numĂ©rique natif dĂ©centralisĂ© et adossĂ© Ă  des garanties, indexĂ© sur le dollar amĂ©ricain. Il est crĂ©Ă© par les utilisateurs en empruntant contre plusieurs garanties. Lorsque l’utilisateur rembourse sa position d’emprunt de HO, le protocole brĂ»le le GHO de cet utilisateur. Tous les paiements d’intĂ©rĂȘts accumulĂ©s par les minters de GHO seraient directement transfĂ©rĂ©s Ă  la trĂ©sorerie d’AaveDAO.","Get ABP Token":"Obtenir le jeton ABP","Get ABP v2 Token":"Get ABP v2 Token","Get GHO":"Get GHO","Global settings":"ParamĂštres globaux","Go Back":"Retourner","Go to Balancer Pool":"AccĂ©der Ă  Balancer Pool","Go to V3 Dashboard":"AccĂ©der au tableau de bord V3","Governance":"Gouvernance","Greek":"Grec","Health factor":"Facteur de santĂ©","Health factor is lesser than the liquidation threshold":"Le facteur santĂ© est infĂ©rieur au seuil de liquidation","Health factor is not below the threshold":"Le facteur de santĂ© n'est pas infĂ©rieur au seuil","Hide":"Cacher","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Les dĂ©tenteurs de stkAAVE bĂ©nĂ©ficient d’une rĂ©duction sur le taux d’emprunt GHO","I acknowledge the risks involved.":"Je reconnais les risques encourus.","I fully understand the risks of migrating.":"Je comprends parfaitement les risques liĂ©s Ă  la migration.","I understand how cooldown ({0}) and unstaking ({1}) work":["Je comprends comment fonctionnent le temps de recharge (",["0"],") et le retrait (",["1"],")"],"If the error continues to happen,<0/> you may report it to this":"Si l’erreur persiste,<0/> vous pouvez la signaler Ă  ce","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"Si le facteur de santĂ© descend en dessous de 1, la liquidation de votre collatĂ©ral peut ĂȘtre dĂ©clenchĂ©e.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["Si vous NE vous dĂ©sengagez PAS dans les ",["0"]," de la fenĂȘtre de dĂ©sengagement, vous devrez rĂ©activer le processus de refroidissement."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"Si votre prĂȘt Ă  la valeur dĂ©passe le seuil de liquidation, votre garantie fournie peut ĂȘtre liquidĂ©e.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accĂ©der Ă  tous les actifs","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["En mode Isolation, vous ne pouvez pas fournir d’autres actifs en garantie. Un plafond d’endettement global limite le pouvoir d’emprunt de l’actif isolĂ©. Pour quitter le mode d’isolement, dĂ©sactivez ",["0"]," en garantie avant d’emprunter un autre actif. Pour en savoir plus, consultez notre <0>FAQ"],"Inconsistent flashloan parameters":"ParamĂštres de prĂȘt flash incohĂ©rents","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacitĂ© d’emprunt restante pour effectuer le transfert de dette.","Interest accrued":"IntĂ©rĂȘts courus","Interest rate rebalance conditions were not met":"Les conditions de rĂ©Ă©quilibrage des taux d'intĂ©rĂȘt n'ont pas Ă©tĂ© remplies","Interest rate strategy":"StratĂ©gie de taux d’intĂ©rĂȘt","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more","Invalid amount to burn":"Montant non valide Ă  brĂ»ler","Invalid amount to mint":"Montant invalide Ă  frapper","Invalid bridge protocol fee":"Frais de protocole de pont invalide","Invalid expiration":"Expiration invalide","Invalid flashloan premium":"Prime flash non valide","Invalid return value of the flashloan executor function":"Valeur de retour invalide de la fonction flashloan executor","Invalid signature":"Signature non valide","Isolated":"IsolĂ©","Isolated Debt Ceiling":"Plafond de la dette isolĂ©e","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"Les actifs isolĂ©s ont un pouvoir d'emprunt limitĂ© et les autres actifs ne peuvent pas ĂȘtre utilisĂ©s comme garantie.","Join the community discussion":"Rejoignez la discussion de la communautĂ©","Language":"Language","Learn more":"Apprendre encore plus","Learn more about risks involved":"En savoir plus sur les risques encourus","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"En savoir plus dans notre <0>guide FAQ","Learn more.":"Pour en savoir plus.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Linked addresses","Links":"Liens","Liquidated collateral":"Garantie liquidĂ©e","Liquidation":"Liquidation","Liquidation <0/> threshold":"Seuil de liquidation <0/>","Liquidation Threshold":"Seuil de liquidation","Liquidation at":"Liquidation Ă ","Liquidation penalty":"PĂ©nalitĂ© de liquidation","Liquidation risk":"Risque de liquidation","Liquidation risk parameters":"ParamĂštres du risque de liquidation","Liquidation threshold":"Seuil de liquidation","Liquidation value":"Valeur de liquidation","Loading data...":"Chargement des donnĂ©es...","Ltv validation failed":"Échec de la validation LTV","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"L’AMI a Ă©tĂ© suspendu en raison d’une dĂ©cision de la communautĂ©. L’offre, les emprunts et les remboursements sont impactĂ©s. <0>Plus d’informations","MAX":"MAX","Manage E-Mode":"Manage E-Mode","Manage analytics":"GĂ©rer l’analytique","Market":"MarchĂ©","Markets":"MarchĂ©s","Max":"Max","Max LTV":"Max LTV","Max slashing":"Coupure maximale","Max slippage":"Glissement maximal","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["Le montant maximal disponible pour emprunter sur cet actif est limitĂ© car le plafond de la dette est Ă  ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["Le montant maximal disponible pour emprunter est de <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"Le montant maximum disponible pour emprunter est limitĂ© car le plafond d’emprunt du protocole est presque atteint.","Maximum amount available to supply is <0/> {0} (<1/>).":["La quantitĂ© maximale disponible pour la fourniture est de <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["La quantitĂ© maximale disponible pour l’approvisionnement est limitĂ©e parce que le plafond d’approvisionnement du protocole est Ă  ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"Maximum available to borrow","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Rencontrez GHO","Menu":"Menu","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Émigrer","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrer vers la V3","Migrate to stkABPT v2":"Migrate to stkABPT v2","Migrate to v3":"Migrer vers la v3","Migrate to {0} v3 Market":["Migrer vers ",["0"]," MarchĂ© v3"],"Migrate your assets":"Migrate your assets","Migrated":"MigrĂ©","Migrating":"Migration","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"La migration simultanĂ©e de plusieurs garanties et d’actifs empruntĂ©s peut s’avĂ©rer coĂ»teuse et peut Ă©chouer dans certaines situations. <0>Par consĂ©quent, il n’est pas recommandĂ© de migrer des positions avec plus de 5 actifs (dĂ©posĂ©s + empruntĂ©s) en mĂȘme temps.","Migration risks":"Risques liĂ©s Ă  la migration","Minimum GHO borrow amount":"Montant minimum d’emprunt GHO","Minimum USD value received":"Valeur minimale en USD reçue","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Minimum amount received","Minimum staked Aave amount":"Montant minimum d’Aave mis en jeu","Minimum {0} received":["Minimum ",["0"]," reçu"],"More":"Plus","NAY":"NON","Need help connecting a wallet? <0>Read our FAQ":"Besoin d'aide pour connecter un portefeuille ? <0>Lire notre FAQ","Net APR":"APR Net","Net APY":"APY Net","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"L'APY net est l'effet combinĂ© de toutes les positions d'offre et d'emprunt sur la valeur nette, y compris les incitations. Il est possible d'avoir un APY net nĂ©gatif si l'APY de la dette est supĂ©rieur Ă  l'APY de l'offre.","Net worth":"Valeur nette","Network":"RĂ©seau","Network not supported for this wallet":"RĂ©seau non pris en charge pour ce portefeuille","No assets selected to migrate.":"Aucune ressource n’a Ă©tĂ© sĂ©lectionnĂ©e pour la migration.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"Aucune rĂ©compense Ă  rĂ©clamer","No search results{0}":["Aucun rĂ©sultat de recherche",["0"]],"No transactions yet.":"Aucune transaction n’a encore Ă©tĂ© effectuĂ©e.","No voting power":"Pas de pouvoir de vote","None":"Aucun/Aucune","Not a valid address":"Pas une adresse valide","Not enough balance on your wallet":"Pas assez de solde sur votre portefeuille","Not enough collateral to repay this amount of debt with":"Pas assez de collatĂ©ral pour rembourser ce montant de dette avec","Not enough staked balance":"Pas assez de solde stakĂ©","Not enough voting power to participate in this proposal":"Pas assez de pouvoir de vote pour participer Ă  cette proposition","Not reached":"Non atteint","Nothing borrowed yet":"Aucun emprunt pour l'instant","Nothing found":"Rien n’a Ă©tĂ© trouvĂ©","Nothing staked":"Rien stakĂ©","Nothing supplied yet":"Rien fourni pour le moment","Ok, Close":"D'accord, fermer","Operation not supported":"OpĂ©ration non prise en charge","Oracle price":"Prix Oracle","Overview":"Aperçu","Page not found":"Page introuvable","Participating in this {symbol} reserve gives annualized rewards.":["Participer Ă  cette rĂ©serve ",["symbol"]," donne des rĂ©compenses annualisĂ©es."],"Pending...":"En attente...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Veuillez toujours tenir compte de votre <0>facteur de santĂ© (HF) lors de la migration partielle d’une position et que vos tarifs seront mis Ă  jour vers les taux V3.","Please connect a wallet to view your personal information here.":"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Veuillez connecter votre portefeuille pour pouvoir Ă©changer vos jetons.","Please connect your wallet to get free testnet assets.":"Veuillez connecter votre portefeuille pour obtenir des ressources de rĂ©seau de test gratuites.","Please connect your wallet to see migration tool.":"Veuillez connecter votre portefeuille pour voir l’outil de migration.","Please connect your wallet to see your supplies, borrowings, and open positions.":"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.","Please connect your wallet to view transaction history.":"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.","Please enter a valid wallet address.":"Veuillez saisir une adresse de portefeuille valide.","Please switch to {networkName}.":["Veuillez passer Ă  ",["networkName"],"."],"Please, connect your wallet":"S'il vous plaĂźt, connectez votre portefeuille","Pool addresses provider is not registered":"Le fournisseur d'adresses de pool n'est pas enregistrĂ©","Powered by":"AlimentĂ© par","Preview tx and migrate":"PrĂ©visualiser tx et migrer","Price":"Prix","Price data is not currently available for this reserve on the protocol subgraph":"À l’heure actuelle, les donnĂ©es sur les prix ne sont pas disponibles pour cette rĂ©serve dans le sous-graphe du protocole","Price impact":"Impact sur les prix","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"L’impact sur les prix est l’écart entre la valeur totale des tokens d’entrĂ©e Ă©changĂ©s et les tokens de destination obtenus (en USD), qui rĂ©sulte de la liquiditĂ© limitĂ©e de la paire de trading.","Price impact {0}%":["Impact sur les prix ",["0"],"%"],"Privacy":"Vie privĂ©e","Proposal details":"DĂ©tails de la proposition","Proposal overview":"Aperçu de la proposition","Proposals":"Les propositions","Proposition":"Proposition","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"Plafond d’emprunt du protocole Ă  100% pour cet actif. Il n’est pas possible d’emprunter davantage.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"Limite d’approvisionnement du protocole Ă  100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.","Quorum":"Quorum","Rate change":"Changement de taux","Raw-Ipfs":"Raw-Ipfs","Reached":"Atteint","Reactivate cooldown period to unstake {0} {stakedToken}":["RĂ©activer la pĂ©riode de recharge pour annuler le pieu ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.","Read-only mode.":"Mode lecture seule.","Read-only mode. Connect to a wallet to perform transactions.":"Mode lecture seule. Connectez-vous Ă  un portefeuille pour effectuer des transactions.","Receive (est.)":"Recevoir (est.)","Received":"Reçu","Recent Transactions":"Recent Transactions","Recipient address":"Adresse du destinataire","Rejected connection request":"Demande de connexion rejetĂ©e","Reload":"Recharger","Reload the page":"Recharger la page","Remaining debt":"Dette restante","Remaining supply":"Offre restante","Remind me":"Remind me","Remove":"Remove","Repaid":"RemboursĂ©","Repay":"Rembourser","Repay with":"Rembourser avec","Repay {symbol}":["Rembourser ",["symbole"]],"Repaying {symbol}":["Remboursement ",["symbole"]],"Repayment amount to reach {0}% utilization":["Montant de remboursement Ă  atteindre ",["0"],"% d’utilisation"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Representative smart contract wallet (ie. Safe) addresses on other chains.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Representing smart contract wallet (ie. Safe) addresses on other chains.","Reserve Size":"Taille de rĂ©serve","Reserve factor":"Facteur de rĂ©serve","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["Le facteur de rĂ©serve est un pourcentage de l’intĂ©rĂȘt qui va Ă  un ",["0"]," qui est contrĂŽlĂ© par la gouvernance Aave pour promouvoir la croissance de l’écosystĂšme."],"Reserve status & configuration":"Statut et configuration de la rĂ©serve","Reset":"RĂ©initialisation","Restake":"Remise en jeu","Restake {symbol}":["Remise en jeu ",["symbol"]],"Restaked":"RestaurĂ©","Restaking {symbol}":["Reprise ",["symbol"]],"Review approval tx details":"Examiner les dĂ©tails de la taxe d'approbation","Review tx":"RĂ©viser tx","Review tx details":"Examiner les dĂ©tails de la transaction","Revoke power":"RĂ©voquer le pouvoir","Reward(s) to claim":"RĂ©compense(s) Ă  rĂ©clamer","Rewards APR":"RĂ©compenses APR","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"DĂ©tails des risques","Safety of your deposited collateral against the borrowed assets and its underlying value.":"SĂ©curitĂ© de votre garantie dĂ©posĂ©e contre les actifs empruntĂ©s et sa valeur sous-jacente.","Save and share":"Enregistrer et partager","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"On dirait que nous ne pouvons pas changer de rĂ©seau automatiquement. Veuillez vĂ©rifier si vous pouvez le changer depuis le portefeuille.","Select an asset":"SĂ©lectionner une ressource","Select language":"Choisir la langue","Select slippage tolerance":"SĂ©lectionner la tolĂ©rance de glissement","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Les ressources sĂ©lectionnĂ©es ont Ă©tĂ© migrĂ©es avec succĂšs. Rendez-vous sur le tableau de bord du marchĂ© pour les voir.","Selected borrow assets":"SĂ©lection d’actifs d’emprunt","Selected supply assets":"SĂ©lection d’actifs d’approvisionnement","Send Feedback":"Send Feedback","Send feedback":"Envoyer des commentaires","Set up delegation":"Configurer la dĂ©lĂ©gation","Share on Lens":"Partager sur Lens","Share on twitter":"Partager sur Twitter","Show":"Montrer","Show Frozen or paused assets":"Afficher les ressources gelĂ©es ou mises en pause","Show assets with 0 balance":"Afficher les actifs avec 0 solde","Sign to continue":"Signez pour continuer","Signatures ready":"Signatures prĂȘtes","Signing":"Signature","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Étant donnĂ© que cet actif est gelĂ©, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Comme il s'agit d'un rĂ©seau de test, vous pouvez obtenir n'importe lequel des actifs si vous avez ETH dans votre portefeuille","Slippage":"Glissement","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"Le slippage est la diffĂ©rence entre les montants cotĂ©s et reçus en raison de l’évolution des conditions du marchĂ© entre le moment oĂč la transaction est soumise et sa vĂ©rification.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Certaines ressources migrĂ©es ne seront pas utilisĂ©es comme garantie en raison de l’activation du mode d’isolement dans ",["marketName"]," MarchĂ© V3. Visite <0>",["marketName"]," Tableau de bord V3 pour gĂ©rer le mode d’isolation."],"Something went wrong":"Quelque chose s’est mal passĂ©","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"DĂ©solĂ©, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.","Sorry, we couldn't find the page you were looking for.":"DĂ©solĂ©, nous n’avons pas trouvĂ© la page que vous cherchiez.","Source":"Source","Spanish":"Espagnol","Stable":"Stable","Stable borrowing is enabled":"L'emprunt stable est activĂ©","Stable borrowing is not enabled":"L'emprunt stable n'est pas activĂ©","Stable debt supply is not zero":"L'offre de dette stable n'est pas nulle","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"Le taux d'intĂ©rĂȘt stable <0>restera le mĂȘme pendant toute la durĂ©e de votre prĂȘt. RecommandĂ© pour les pĂ©riodes de prĂȘt Ă  long terme et pour les utilisateurs qui prĂ©fĂšrent la prĂ©visibilitĂ©.","Stablecoin":"Stablecoin","Stake":"Stake","Stake AAVE":"Mise en jeu AAVE","Stake ABPT":"Mise en jeu ABPT","Stake GHO":"Stake GHO","Stake cooldown activated":"Temps de recharge de la mise activĂ©","Staked":"StakĂ©","Staking":"Staking","Staking APR":"APR stakĂ©","Staking Rewards":"RĂ©compenses de staking","Staking balance":"Solde de mise en jeu","Staking discount":"Remise sur le staking","State":"État","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Fourni","Supplied asset amount":"Montant de l’actif fourni","Supplied assets":"Supplied assets","Supply":"Fournir","Supply APY":"Fournir APY","Supply apy":"Fournir apy","Supply balance":"Bilan d'approvisionnement","Supply balance after switch":"Bilan de l’alimentation aprĂšs le changement","Supply cap is exceeded":"Le plafond d'approvisionnement est dĂ©passĂ©","Supply cap on target reserve reached. Try lowering the amount.":"Plafond d'approvisionnement sur la rĂ©serve cible atteint. Essayez de rĂ©duire le montant.","Supply {symbol}":["Fournir ",["symbole"]],"Supplying your":"Fournir votre","Supplying {symbol}":["Fournir ",["symbole"]],"Switch":"Interrupteur","Switch E-Mode":"Changer de mode E","Switch Network":"Changer de rĂ©seau","Switch borrow position":"Changer de position d’emprunt","Switch to":"Passer Ă ","Switched":"CommutĂ©","Switching":"Transistor","Switching E-Mode":"Changement de mode E","Techpaper":"Fiche technique","Terms":"Petits caractĂšres","Test Assets":"Ressources de test","Testnet mode":"Mode rĂ©seau test","Testnet mode is ON":"Le mode rĂ©seau de test est activĂ©","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"Merci d’avoir voté !!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"Le % de votre pouvoir d'emprunt total utilisĂ©. Ceci est basĂ© sur le montant de votre garantie fournie et le montant total que vous pouvez emprunter.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"Le protocole Aave est programmĂ© pour toujours utiliser le prix de 1 GHO = 1 $. C’est diffĂ©rent de l’utilisation des prix du marchĂ© via des oracles pour d’autres actifs cryptographiques. Cela crĂ©e des opportunitĂ©s d’arbitrage stabilisatrices lorsque le prix du GHO fluctue.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"Le ratio LTV maximum reprĂ©sente le pouvoir d'emprunt maximum d'une garantie spĂ©cifique. Par exemple, si une garantie a un LTV de 75 %, l'utilisateur peut emprunter jusqu'Ă  0,75 ETH dans la devise principale pour chaque 1 ETH de garantie.","The address of the pool addresses provider is invalid":"L'adresse du fournisseur d'adresses du pool n'est pas valide","The app is running in fork mode.":"The app is running in fork mode.","The app is running in testnet mode. Learn how it works in":"L’application s’exĂ©cute en mode rĂ©seau de test. DĂ©couvrez comment cela fonctionne dans","The caller of the function is not an AToken":"L'appelant de la fonction n'est pas un AToken","The caller of this function must be a pool":"L'appelant de cette fonction doit ĂȘtre un pool","The collateral balance is 0":"Le solde de la garantie est de 0","The collateral chosen cannot be liquidated":"La garantie choisie ne peut ĂȘtre liquidĂ©e","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"La pĂ©riode de recharge est le temps nĂ©cessaire avant de retirer vos jetons (20 jours). Vous ne pouvez retirer vos actifs du module de sĂ©curitĂ© qu’aprĂšs la pĂ©riode de recharge et pendant la pĂ©riode de dĂ©senjeu. <0>Pour en savoir plus","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["La pĂ©riode de recharge est de ",["0"],". AprĂšs ",["1"]," de temps de recharge, vous entrerez dans la fenĂȘtre de dĂ©sengagement de ",["2"],". Vous continuerez Ă  recevoir des rĂ©compenses pendant le temps de recharge et la fenĂȘtre de retrait."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"Le ratio prĂȘt/valeur des positions migrĂ©es entraĂźnerait la liquidation. Augmenter les garanties migrĂ©es ou rĂ©duire les emprunts migrĂ©s pour continuer.","The requested amount is greater than the max loan size in stable rate mode":"Le montant demandĂ© est supĂ©rieur au montant maximum du prĂȘt en mode taux stable","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"Le montant total de vos actifs libellĂ©s en USD qui peut ĂȘtre utilisĂ© comme garantie pour emprunter des actifs.","The underlying asset cannot be rescued":"L'actif sous-jacent ne peut pas ĂȘtre sauvĂ©","The underlying balance needs to be greater than 0":"Le solde sous-jacent doit ĂȘtre supĂ©rieur Ă  0","The weighted average of APY for all borrowed assets, including incentives.":"La moyenne pondĂ©rĂ©e de l'APY pour tous les actifs empruntĂ©s, y compris les incitatifs.","The weighted average of APY for all supplied assets, including incentives.":"La moyenne pondĂ©rĂ©e de l'APY pour tous les actifs fournis, y compris les incitations.","There are not enough funds in the{0}reserve to borrow":["Il n'y a pas assez de fonds dans la ",["0"]," rĂ©serve pour emprunter"],"There is not enough collateral to cover a new borrow":"Il n'y a pas assez de collatĂ©ral pour couvrir un nouvel emprunt","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"Il n’y a pas assez de liquiditĂ©s pour que l’actif cible puisse effectuer le changement. Essayez de rĂ©duire le montant.","There was some error. Please try changing the parameters or <0><1>copy the error":"Il y a eu une erreur. Veuillez essayer de modifier les paramĂštres ou <0><1>copier l'erreur","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"Ces actifs sont temporairement gelĂ©s ou suspendus par des dĂ©cisions de la communautĂ© Aave, ce qui signifie qu’il n’est pas possible d’obtenir / emprunter ou d’échanger des taux de ces actifs. Les retraits et les remboursements de dettes sont autorisĂ©s. Suivez le <0>forum de gouvernance d’Aave pour d’autres mises Ă  jour.","These funds have been borrowed and are not available for withdrawal at this time.":"Ces fonds ont Ă©tĂ© empruntĂ©s et ne peuvent pas ĂȘtre retirĂ©s pour le moment.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"Cette action rĂ©duira le facteur de santĂ© V2 en dessous du seuil de liquidation. Conservez la garantie ou migrez la position d’emprunt pour continuer.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"Cette action rĂ©duira le facteur de santĂ© de V3 en dessous du seuil de liquidation. Augmenter les garanties migrĂ©es ou rĂ©duire les emprunts migrĂ©s pour continuer.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"Cette action rĂ©duira votre facteur de santĂ©. Veuillez garder Ă  l’esprit le risque accru de liquidation des garanties.","This address is blocked on app.aave.com because it is associated with one or more":"Cette adresse est bloquĂ©e sur app.aave.com car elle est associĂ©e Ă  un ou plusieurs","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["Cet actif a presque atteint son plafond d'emprunt. Il n'y a que ",["messageValue"]," disponible pour ĂȘtre empruntĂ© sur ce marchĂ©."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que ",["messageValue"]," fourni Ă  ce marchĂ©."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour ĂȘtre empruntĂ© Ă  ce marchĂ©.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour ĂȘtre fourni Ă  partir de ce marchĂ©.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"Cet actif est gelĂ© en raison d’une dĂ©cision de gouvernance du protocole Aave. <0>Plus d’informations","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"Cet actif est gelĂ© en raison d’une dĂ©cision de gouvernance du protocole Aave. Le 20 dĂ©cembre 2022, renFIL ne sera plus pris en charge et ne pourra plus ĂȘtre reconnectĂ© Ă  son rĂ©seau natif. Il est recommandĂ© de retirer les positions d’offre et de rembourser les positions d’emprunt afin que renFIL puisse ĂȘtre reliĂ© Ă  FIL avant la date limite. AprĂšs cette date, il ne sera plus possible de convertir renFIL en FIL. <0>Plus d’informations","This asset is frozen due to an Aave community decision. <0>More details":"Cet actif est gelĂ© en raison d’une dĂ©cision de la communautĂ© Aave. <0>Plus d’informations","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"Il est prĂ©vu que cet actif soit dĂ©sactivĂ© en raison d’une dĂ©cision de gouvernance du protocole Aave. <0>Plus d’informations","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"Ce calcul de gaz n'est qu'une estimation. Votre portefeuille fixera le prix de la transaction. Vous pouvez modifier les paramĂštres de gaz directement depuis votre fournisseur de portefeuille.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"Il s'agit du montant total que vous pouvez emprunter. Vous pouvez emprunter en fonction de votre garantie et jusqu'Ă  ce que le plafond d'emprunt soit atteint.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"Il s'agit du montant total que vous pouvez emprunter. Vous pouvez emprunter en fonction de votre garantie et jusqu'Ă  ce que le plafond d'emprunt soit atteint.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"Cela reprĂ©sente le seuil auquel une position d'emprunt sera considĂ©rĂ©e comme sous-garantie et sujette Ă  liquidation pour chaque garantie. Par exemple, si une garantie a un seuil de liquidation de 80 %, cela signifie que la position sera liquidĂ©e lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.","Time left to unstake":"Temps restant pour dĂ©piquer","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Astuce : Essayez d’augmenter le glissement ou de rĂ©duire la quantitĂ© d’entrĂ©e","To":"To","To borrow you need to supply any asset to be used as collateral.":"Pour emprunter, vous devez fournir tout actif Ă  utiliser comme garantie.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"Pour continuer, vous devez autoriser les contrats intelligents Aave Ă  dĂ©placer vos fonds depuis votre portefeuille. En fonction de l’actif et du portefeuille que vous utilisez, cela se fait en signant le message d’autorisation (sans gaz) ou en soumettant une transaction d’approbation (nĂ©cessite du gaz). <0>Pour en savoir plus","To repay on behalf of a user an explicit amount to repay is needed":"Pour rembourser au nom d'un utilisateur, un montant explicite Ă  rembourser est nĂ©cessaire","To request access for this permissioned market, please visit: <0>Acces Provider Name":"Pour demander l'accĂšs Ă  ce marchĂ© autorisĂ©, veuillez consulter : <0>Nom du fournisseur d'accĂšs","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"Pour soumettre une proposition de modifications mineures du protocole, vous aurez besoin d’une puissance d’au moins 80,00 K. Si vous souhaitez modifier la base de code de base, vous aurez besoin d’une puissance de 320k. <0>Pour en savoir plus.","Top 10 addresses":"Top 10 des adresses","Total available":"Total disponible","Total borrowed":"Total empruntĂ©","Total borrows":"Total des emprunts","Total emission per day":"Émission totale par jour","Total interest accrued":"Total des intĂ©rĂȘts courus","Total market size":"Taille totale du marchĂ©","Total supplied":"Total fourni","Total worth":"Valeur totale","Track wallet":"Suivre le portefeuille","Track wallet balance in read-only mode":"Suivre le solde du portefeuille en mode lecture seule","Transaction failed":"La transaction a Ă©chouĂ©","Transaction history":"Historique des transactions","Transaction history is not currently available for this market":"L’historique des transactions n’est actuellement pas disponible pour ce marchĂ©","Transaction overview":"Aperçu des transactions","Transactions":"Transactions","Unavailable":"Non disponible","Unbacked":"Sans support","Unbacked mint cap is exceeded":"Le plafond de mintage non soutenu est dĂ©passĂ©","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["L’actif sous-jacent n’existe pas dans ",["marketName"]," v3 Market, par consĂ©quent, cette position ne peut pas ĂȘtre migrĂ©e."],"Underlying token":"Jeton sous-jacent","Unstake":"Unstake","Unstake now":"ArrĂȘter de staker maintenant","Unstake window":"FenĂȘtre d'arrĂȘt de staking","Unstake {symbol}":["Unstake ",["symbol"]],"Unstaked":"Non jalonnĂ©","Unstaking {symbol}":["DĂ©jalonnement ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Utilisez-le pour voter pour ou contre les propositions actives.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.","Used as collateral":"UtilisĂ© comme collatĂ©ral","User cannot withdraw more than the available balance":"L'utilisateur ne peut pas retirer plus que le solde disponible","User did not borrow the specified currency":"L'utilisateur n'a pas empruntĂ© la devise spĂ©cifiĂ©e","User does not have outstanding stable rate debt on this reserve":"L'utilisateur n'a pas de dette Ă  taux stable impayĂ©e sur cette rĂ©serve","User does not have outstanding variable rate debt on this reserve":"L'utilisateur n'a pas de dette Ă  taux variable impayĂ©e sur cette rĂ©serve","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Les utilisateurs qui misent des AAVE dans le module de sĂ©curitĂ© (c’est-Ă -dire les dĂ©tenteurs de stkAAVE) bĂ©nĂ©ficient d’une rĂ©duction sur le taux d’intĂ©rĂȘt d’emprunt de HO. La rĂ©duction s’applique Ă  100 GHO pour chaque 1 stkAAVE dĂ©tenu. Utilisez le calculateur ci-dessous pour voir le taux d’emprunt GHO avec le rabais appliquĂ©.","Utilization Rate":"Taux d'utilisation","VIEW TX":"VOIR TX","VOTE NAY":"VOTER NON","VOTE YAE":"VOTER OUI","Variable":"Variable","Variable debt supply is not zero":"L'offre de dette variable n'est pas nulle","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Taux variable","Version 2":"Variante 2","Version 3":"Variante 3","View":"Vue","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"Afficher les transactions","View all":"View all","View all votes":"Voir tous les votes","View contract":"Voir le contrat","View details":"Voir dĂ©tails","View on Explorer":"Voir sur l'explorer","Vote NAY":"Vote NAY","Vote YAE":"Vote YAE","Voted NAY":"A votĂ© NAY","Voted YAE":"A votĂ© YAE","Votes":"Votes","Voting":"Vote","Voting is on":"Voting is on","Voting power":"Pouvoir de vote","Voting results":"RĂ©sultats du vote","Wallet Balance":"Solde du portefeuille","Wallet balance":"Solde du portefeuille","Wallet not detected. Connect or install wallet and retry":"Portefeuille non dĂ©tectĂ©. Connectez ou installez le portefeuille et rĂ©essayez","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"Les portefeuilles sont fournis par des fournisseurs externes et en sĂ©lectionnant, vous acceptez les conditions de ces fournisseurs. Votre accĂšs au portefeuille peut dĂ©pendre du fonctionnement du fournisseur externe.","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"Nous n’avons trouvĂ© aucun Ă©lĂ©ment liĂ© Ă  votre recherche. RĂ©essayez avec un autre nom, symbole ou adresse de ressource.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"Nous n’avons trouvĂ© aucune transaction liĂ©e Ă  votre recherche. RĂ©essayez avec un autre nom de ressource ou rĂ©initialisez les filtres.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"Nous n’avons pas pu dĂ©tecter de portefeuille. Connectez un portefeuille pour staker et consulter votre solde.","We suggest you go back to the Dashboard.":"Nous vous suggĂ©rons de revenir au tableau de bord.","Website":"Site internet","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"Lorsqu'une liquidation survient, les liquidateurs remboursent jusqu'Ă  50 % de l'encours empruntĂ© au nom de l'emprunteur. En contrepartie, ils peuvent acheter le collatĂ©ral Ă  prix rĂ©duit et conserver la diffĂ©rence (pĂ©nalitĂ© de liquidation) en bonus.","With a voting power of <0/>":"Avec un pouvoir de vote de <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"Avec testnet Faucet, vous pouvez obtenir des ressources gratuites pour tester le protocole Aave. Assurez-vous de changer votre fournisseur de portefeuille pour le rĂ©seau de test appropriĂ©, sĂ©lectionnez l’actif souhaitĂ© et cliquez sur « Faucet » pour obtenir des jetons transfĂ©rĂ©s vers votre portefeuille. Les actifs d’un rĂ©seau de test ne sont pas « rĂ©els », ce qui signifie qu’ils n’ont aucune valeur monĂ©taire. <0>Pour en savoir plus","Withdraw":"Retirer","Withdraw & Switch":"Retrait et Ă©change","Withdraw and Switch":"Retrait et Ă©change","Withdraw {symbol}":["Retirer ",["symbole"]],"Withdrawing":"Withdrawing","Withdrawing and Switching":"Retrait et changement","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Le retrait de ce montant rĂ©duira votre facteur santĂ© et augmentera le risque de liquidation.","Withdrawing {symbol}":["Retrait ",["symbole"]],"Wrong Network":"Mauvais rĂ©seau","YAE":"YAE","You are entering Isolation mode":"Vous entrez en mode Isolation","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraĂźnera un appel de garantie","You can not use this currency as collateral":"Vous ne pouvez pas utiliser cette devise comme garantie","You can not withdraw this amount because it will cause collateral call":"Vous ne pouvez pas retirer ce montant car cela entraĂźnera un appel de garantie","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"Vous ne pouvez retirer vos actifs du module de sĂ©curitĂ© qu'aprĂšs la fin de la pĂ©riode de refroidissement et que la fenĂȘtre de retrait est active.","You can report incident to our <0>Discord or<1>Github.":"Vous pouvez signaler un incident sur notre <0>Discord ou<1>Github.","You cancelled the transaction.":"Vous avez annulĂ© la transaction.","You did not participate in this proposal":"Vous n'avez pas participĂ© Ă  cette proposition","You do not have supplies in this currency":"Vous n'avez pas de fournitures dans cette devise","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"Vous n'avez pas assez de fonds dans votre portefeuille pour rembourser le montant total. Si vous continuez Ă  rembourser avec votre montant actuel de fonds, vous aurez toujours une petite position d'emprunt dans votre tableau de bord.","You have no AAVE/stkAAVE/aAave balance to delegate.":"You have no AAVE/stkAAVE/aAave balance to delegate.","You may borrow up to <0/> GHO at <1/> (max discount)":"Vous pouvez emprunter jusqu’à GHO Ă  <0/> <1/> (rabais maximum)","You may enter a custom amount in the field.":"Vous pouvez saisir un montant personnalisĂ© dans le champ.","You switched to {0} rate":["Vous ĂȘtes passĂ© au tarif ",["0"]],"You unstake here":"Vous unstakĂ© ici","You voted {0}":["Vous avez votĂ© ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"Vous quitterez le mode d'isolement et d'autres jetons peuvent dĂ©sormais ĂȘtre utilisĂ©s comme collatĂ©ral","You {action} <0/> {symbol}":["Vous ",["action"]," <0/> ",["symbole"]],"You've successfully switched borrow position.":"Vous avez rĂ©ussi Ă  changer de position d’emprunt.","You've successfully switched tokens.":"Vous avez rĂ©ussi Ă  changer de jeton.","You've successfully withdrew & switched tokens.":"Vous avez retirĂ© et Ă©changĂ© des jetons avec succĂšs.","Your balance is lower than the selected amount.":"Votre solde est infĂ©rieur au montant sĂ©lectionnĂ©.","Your borrows":"Vos emprunts","Your current loan to value based on your collateral supplied.":"Votre prĂȘt actuel Ă  la valeur en fonction de votre collatĂ©ral fournie.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Votre facteur de santĂ© et votre prĂȘt Ă  la valeur dĂ©terminent l'assurance de votre collatĂ©ral. Pour Ă©viter les liquidations, vous pouvez fournir plus de garanties ou rembourser les positions d'emprunt.","Your info":"Vos informations","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Votre pouvoir de proposition est basĂ© sur votre solde AAVE/stkAAVE et les dĂ©lĂ©gations reçues.","Your reward balance is 0":"Votre solde de rĂ©compenses est de 0","Your supplies":"Vos ressources","Your voting info":"Vos informations de vote","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Votre pouvoir de vote est basĂ© sur votre solde AAVE/stkAAVE et les dĂ©lĂ©gations reçues.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Votre ",["name"]," Le portefeuille est vide. Acheter ou transfĂ©rer des actifs ou utiliser <0>",["0"]," pour transfĂ©rer votre ",["network"]," actif."],"Your {name} wallet is empty. Purchase or transfer assets.":["Votre ",["name"]," Le portefeuille est vide. Acheter ou transfĂ©rer des actifs."],"Your {networkName} wallet is empty. Get free test assets at":["Votre ",["networkName"]," Le portefeuille est vide. Obtenez des ressources de test gratuites Ă  l’adresse suivante :"],"Your {networkName} wallet is empty. Get free test {0} at":["Votre ",["networkName"]," Le portefeuille est vide. Obtenir un test gratuit ",["0"]," Ă "],"Zero address not valid":"Adresse zĂ©ro non-valide","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"actifs","blocked activities":"ActivitĂ©s bloquĂ©es","copy the error":"copier l'erreur","disabled":"handicapĂ©","documentation":"documentation","enabled":"ActivĂ©","ends":"Prend fin","for":"pour","of":"de","on":"sur","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"veuillez vĂ©rifier que le montant que vous souhaitez fournir n'est pas actuellement utilisĂ© pour le staking. S'il est utilisĂ© pour le staking, votre transaction peut Ă©chouer.","repaid":"RemboursĂ©","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"Les stETH fournis en garantie continueront d’accumuler des rĂ©compenses de staking fournies par les rebasages quotidiens.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["Les tokens stETH seront migrĂ©s vers Wrapped stETH Ă  l’aide du wrapper Lido Protocol, ce qui entraĂźne une modification de l’équilibre de l’offre aprĂšs la migration : ",["0"]],"staking view":"vue de staking","starts":"Commence","stkAAVE holders get a discount on GHO borrow rate":"Les dĂ©tenteurs de stkAAVE bĂ©nĂ©ficient d’une rĂ©duction sur le taux d’emprunt GHO","to":"À","tokens is not the same as staking them. If you wish to stake your":"tokens n'est pas la mĂȘme chose que de les staker . Si vous souhaitez staker votre","tokens, please go to the":"tokens, veuillez vous rendre sur","withdrew":"RetirĂ©","{0}":[["0"]],"{0} Balance":[["0"]," Balance"],"{0} Faucet":[["0"]," Faucet"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," Le service de rampe d’accĂšs est fourni par le fournisseur externe et, en le sĂ©lectionnant, vous acceptez les conditions du fournisseur. Votre accĂšs au service peut dĂ©pendre de l’opĂ©rationnalitĂ© du fournisseur externe."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"d"],"{h}h":[["h"],"h"],"{label}":[["label"]],"{m}m":[["m"],"m"],"{networkName} Faucet":[["networkName"]," Robinet"],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," Actifs sĂ©lectionnĂ©s"],"{stepName}":[["stepName"]],"{s}s":[["s"],"s"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:{"...":"...",".CSV":". .CSV",".JSON":". JSON (en anglais seulement)","<0><1><2/>Add <3/> stkAAVE to borrow at <4/> (max discount)":"<0><1><2/>Ajoutez <3/> stkAAVE pour emprunter Ă  <4/> (remise maximale)","<0><1><2/>Add stkAAVE to see borrow rate with discount":"<0><1><2/>Ajoutez stkAAVE pour voir le taux d’emprunt avec escompte","<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.":"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.","<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.":"<0>Attention: Les changements de paramĂštres via la gouvernance peuvent modifier le facteur de santĂ© de votre compte et le risque de liquidation. Suivez le <1>forum de gouvernance d’Aave pour les mises Ă  jour.","<0>Slippage tolerance <1>{selectedSlippage}% <2>{0}":["<0>TolĂ©rance de glissement <1>",["selectedSlippage"],"% <2>",["0"],""],"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.":"AAVE, GHO, and ABPT holders (Ethereum network only) can stake their assets in the Safety Module to add more security to the protocol and earn Safety Incentives. In the case of a shortfall event, your stake can be slashed to cover the deficit, providing an additional layer of protection for the protocol.","APR":"APR","APY":"APY","APY change":"Changement d’APY","APY type":"APY type","APY type change":"Changement de type APY","APY with discount applied":"APY avec remise appliquĂ©e","APY, borrow rate":"APY, borrow rate","APY, variable":"APY, variable","AToken supply is not zero":"L'approvisionnement en aTokens n'est pas nul","Aave Governance":"Gouvernance Aave","Aave aToken":"Aave aToken","Aave debt token":"Jeton de dette Aave","Aave is a fully decentralized, community governed protocol by the AAVE token-holders. AAVE token-holders collectively discuss, propose, and vote on upgrades to the protocol. AAVE token-holders (Ethereum network only) can either vote themselves on new proposals or delagate to an address of choice. To learn more check out the Governance":"Aave est un protocole entiĂšrement dĂ©centralisĂ© et rĂ©gi par la communautĂ© par les dĂ©tenteurs de jetons AAVE. Les dĂ©tenteurs de jetons AAVE discutent, proposent et votent collectivement sur les mises Ă  niveau du protocole. Les dĂ©tenteurs de jetons AAVE (rĂ©seau Ethereum uniquement) peuvent soit voter eux-mĂȘmes sur de nouvelles propositions, soit choisir l’adresse de leur choix. Pour en savoir plus, consultez la page Gouvernance","Aave per month":"Aave par mois","About GHO":"À propos de GHO","Account":"Compte","Action cannot be performed because the reserve is frozen":"L'action ne peut pas ĂȘtre effectuĂ©e car la rĂ©serve est gelĂ©e","Action cannot be performed because the reserve is paused":"L'action ne peut pas ĂȘtre effectuĂ©e car la rĂ©serve est mise en pause","Action requires an active reserve":"L'action nĂ©cessite une rĂ©serve active","Activate Cooldown":"Activer le temps de recharge","Add stkAAVE to see borrow APY with the discount":"Ajoutez stkAAVE pour voir l’APY d’emprunt avec la remise","Add to wallet":"Ajouter au portefeuille","Add {0} to wallet to track your balance.":["Ajouter ",["0"]," Ă  Wallet pour suivre votre solde."],"Address is not a contract":"L'adresse n'est pas un contrat","Addresses":"Adresses","Addresses ({0})":["Adresses (",["0"],")"],"Age":"Age","All borrow positions outside of this category must be closed to enable this category.":"All borrow positions outside of this category must be closed to enable this category.","All done!":"Tout est fait !","All proposals":"Toutes les propositions","All transactions":"Toutes les transactions","Allowance required action":"Allocation action requise","Allows you to decide whether to use a supplied asset as collateral. An asset used as collateral will affect your borrowing power and health factor.":"Vous permet de dĂ©cider si vous souhaitez utiliser un actif fourni en tant que collatĂ©ral. Un actif utilisĂ© comme collatĂ©ral affectera votre pouvoir d'emprunt et votre Health Factor.","Amount":"Montant","Amount After Fee":"Amount After Fee","Amount claimable":"Montant rĂ©clamable","Amount in cooldown":"QuantitĂ© en temps de recharge","Amount must be greater than 0":"Le montant doit ĂȘtre supĂ©rieur Ă  0","Amount to Bridge":"Amount to Bridge","Amount to migrate":"Amount to migrate","Amount to unstake":"Montant Ă  la mise en jeu","An error has occurred fetching the proposal.":"An error has occurred fetching the proposal.","Approve Confirmed":"Approuver ConfirmĂ©","Approve with":"Approuvez avec","Approve {symbol} to continue":["Approuver ",["symbol"]," pour continuer"],"Approving {symbol}...":["Approuver ",["symbol"],"..."],"Array parameters that should be equal length are not":"Les paramĂštres de tableau devraient ĂȘtre de mĂȘme longueur ne sont pas","As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.":"As a result of governance decisions, this ABPT staking pool is now deprecated. You have the flexibility to either migrate all of your tokens to v2 or unstake them without any cooldown period.","Asset":"Actif","Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.":"L’actif ne peut ĂȘtre utilisĂ© comme garantie qu’en mode isolĂ© avec un pouvoir d’emprunt limitĂ©. Pour passer en mode d’isolation, dĂ©sactivez toutes les autres garanties.","Asset can only be used as collateral in isolation mode only.":"L'actif ne peut ĂȘtre utilisĂ© comme garantie qu'en mode isolĂ©.","Asset cannot be migrated because you have isolated collateral in {marketName} v3 Market which limits borrowable assets. You can manage your collateral in <0>{marketName} V3 Dashboard":["L’actif ne peut pas ĂȘtre migrĂ© car vous disposez d’une garantie isolĂ©e dans ",["marketName"]," v3 MarchĂ© qui limite les actifs empruntables. Vous pouvez gĂ©rer vos garanties dans <0>",["marketName"]," Tableau de bord V3"],"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in {marketName} v3 market.":["L’actif ne peut pas ĂȘtre migrĂ© en raison d’une liquiditĂ© insuffisante ou d’une limitation du plafond d’emprunt ",["marketName"]," v3 marchĂ©."],"Asset cannot be migrated due to supply cap restriction in {marketName} v3 market.":["L’actif ne peut pas ĂȘtre migrĂ© en raison d’une restriction de plafond d’approvisionnement dans ",["marketName"]," v3 marchĂ©."],"Asset cannot be migrated to {marketName} V3 Market due to E-mode restrictions. You can disable or manage E-mode categories in your <0>V3 Dashboard":["La ressource ne peut pas ĂȘtre migrĂ©e vers ",["marketName"]," V3 Market en raison des restrictions du mode E. Vous pouvez dĂ©sactiver ou gĂ©rer les catĂ©gories du mode E dans votre <0>tableau de bord V3"],"Asset cannot be migrated to {marketName} v3 Market since collateral asset will enable isolation mode.":["La ressource ne peut pas ĂȘtre migrĂ©e vers ",["marketName"]," v3 MarchĂ© puisque l’actif collatĂ©ral activera le mode d’isolation."],"Asset cannot be used as collateral.":"L'actif ne peut pas ĂȘtre utilisĂ© comme collatĂ©ral.","Asset category":"CatĂ©gorie d'actifs","Asset has been successfully sent to CCIP contract. You can check the status of the transactions below":"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below","Asset is frozen in {marketName} v3 market, hence this position cannot be migrated.":["L’actif est gelĂ© ",["marketName"]," v3, donc cette position ne peut pas ĂȘtre migrĂ©e."],"Asset is not borrowable in isolation mode":"L'actif n'est pas empruntable en mode d'isolement","Asset is not listed":"L'actif n'est pas rĂ©pertoriĂ©","Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.":"L’offre d’actifs est limitĂ©e Ă  un certain montant afin de rĂ©duire l’exposition du protocole Ă  l’actif et d’aider Ă  gĂ©rer les risques encourus.","Assets":"Actifs","Assets to borrow":"Actifs Ă  emprunter","Assets to supply":"Actifs Ă  dĂ©poser","Assets with zero LTV ({0}) must be withdrawn or disabled as collateral to perform this action":["Assets with zero LTV (",["0"],") must be withdrawn or disabled as collateral to perform this action"],"At a discount":"À prix rĂ©duit","Available":"Disponible","Available liquidity":"LiquiditĂ©s disponibles","Available on":"Disponible sur","Available rewards":"RĂ©compenses disponibles","Available to borrow":"Disponible Ă  emprunter","Available to supply":"Disponible au dĂ©pĂŽt","Back to Dashboard":"Retour au tableau de bord","Balance":"Solde","Balance to revoke":"Solde Ă  rĂ©voquer","Balancer Pool":"Balancer Pool","Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions":"Soyez prudent - Vous ĂȘtes trĂšs proche de la liquidation. Envisagez de dĂ©poser plus de collatĂ©ral ou de rembourser certaines de vos positions empruntĂ©es","Be mindful of the network congestion and gas prices.":"Faites attention Ă  la congestion du rĂ©seau et aux prix de l’essence.","Because this asset is paused, no actions can be taken until further notice":"Étant donnĂ© que cette ressource est suspendue, aucune action ne peut ĂȘtre entreprise jusqu’à nouvel ordre","Before supplying":"Avant de dĂ©poser","Blocked Address":"Adresse bloquĂ©e","Borrow":"Emprunter","Borrow APY":"Emprunter de l’APY","Borrow APY, variable":"PrĂȘt APY, variable","Borrow amount to reach {0}% utilization":["Emprunter le montant Ă  atteindre ",["0"],"% d’utilisation"],"Borrow and repay in same block is not allowed":"Emprunter et rembourser dans le mĂȘme bloc n'est pas autorisĂ©","Borrow apy":"Emprunter apy","Borrow balance":"Emprunter le solde","Borrow balance after repay":"Emprunter le solde aprĂšs le remboursement","Borrow balance after switch":"Emprunter le solde aprĂšs le changement","Borrow cap":"Limite d'emprunt","Borrow cap is exceeded":"Le plafond d'emprunt est dĂ©passĂ©","Borrow info":"Emprunter des informations","Borrow power used":"Puissance d'emprunt utilisĂ©e","Borrow rate":"Borrow rate","Borrow rate change":"Modification du taux d’emprunt","Borrow {symbol}":["Emprunter ",["symbole"]],"Borrowable":"Borrowable","Borrowed":"EmpruntĂ©","Borrowed asset amount":"Montant de l’actif empruntĂ©","Borrowed assets":"Borrowed assets","Borrowing is currently unavailable for {0}.":["L'emprunt n'est actuellement pas disponible pour ",["0"],"."],"Borrowing is disabled due to an Aave community decision. <0>More details":"L’emprunt est dĂ©sactivĂ© en raison d’une dĂ©cision de la communautĂ© Aave. <0>Plus d’informations","Borrowing is not enabled":"L'emprunt n'est pas activĂ©","Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.":"L’emprunt n’est pas disponible car vous utilisez le mode Isolation. Pour gĂ©rer le mode d’isolation, rendez-vous sur votre <0>tableau de bord.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) and Isolation mode. To manage E-Mode and Isolation mode visit your <0>Dashboard.":"L'emprunt n'est pas disponible car vous avez activĂ© le mode EfficacitĂ© (E-Mode) et le mode Isolation. Pour gĂ©rer le mode E et le mode Isolation, rendez-vous sur votre <0>tableau de bord.","Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for {0} category. To manage E-Mode categories visit your <0>Dashboard.":["L'emprunt n'est pas disponible, car vous avez activĂ© le mode d'efficacitĂ© (E-Mode) pour la catĂ©gorie ",["0"],". Pour gĂ©rer les catĂ©gories E-Mode, visitez votre <0>tableau de bord."],"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.":"L’emprunt de cet actif est limitĂ© Ă  un certain montant afin de minimiser l’insolvabilitĂ© du pool de liquiditĂ©s.","Borrowing power and assets are limited due to Isolation mode.":"Le pouvoir d'emprunt et les actifs sont limitĂ©s en raison du mode d'isolement.","Borrowing this amount will reduce your health factor and increase risk of liquidation.":"Emprunter ce montant rĂ©duira votre facteur santĂ© et augmentera le risque de liquidation.","Borrowing {symbol}":["Emprunter ",["symbole"]],"Both":"Les deux","Bridge GHO":"Bridge GHO","Bridge history":"Bridge history","Bridge {symbol}":["Bridge ",["symbol"]],"Bridged Via CCIP":"Bridged Via CCIP","Bridging {symbol}":["Bridging ",["symbol"]],"Buy Crypto With Fiat":"Acheter des crypto-monnaies avec des monnaies fiduciaires","Buy Crypto with Fiat":"Acheter des crypto-monnaies avec des monnaies fiduciaires","Buy {cryptoSymbol} with Fiat":["Acheter ",["cryptoSymbol"]," avec Fiat"],"COPIED!":"COPIÉ!","COPY IMAGE":"COPIER L’IMAGE","Can be collateral":"Peut ĂȘtre collatĂ©ral","Can be executed":"Peut ĂȘtre exĂ©cutĂ©","Can't validate the wallet address. Try again.":"Can't validate the wallet address. Try again.","Cancel":"Annuler","Cannot disable E-Mode":"Impossible de dĂ©sactiver le mode E","Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.":"Choose how much voting/proposition power to give to someone else by delegating some of your AAVE, stkAAVE or aAave balance. Your tokens will remain in your account, but your delegate will be able to vote or propose on your behalf. If your AAVE, stkAAVE or aAave balance changes, your delegate's voting/proposition power will be automatically adjusted.","Choose one of the on-ramp services":"Choisissez l’un des services de rampe d’accĂšs","Claim":"RĂ©clamer","Claim all":"RĂ©clamer tout","Claim all rewards":"RĂ©clamez toutes les rĂ©compenses","Claim {0}":["RĂ©clamer ",["0"]],"Claim {symbol}":["Revendication ",["symbol"]],"Claimable AAVE":"AAVE RĂ©clamable","Claimed":"RevendiquĂ©","Claiming":"RĂ©clamer","Claiming {symbol}":["PrĂ©tendant ",["symbol"]],"Close":"Fermer","Collateral":"CollatĂ©rale","Collateral balance after repay":"Solde de garantie aprĂšs remboursement","Collateral change":"Modification des garanties","Collateral is (mostly) the same currency that is being borrowed":"La garantie est (principalement) la mĂȘme devise que celle qui est empruntĂ©e","Collateral to repay with":"Garantie Ă  rembourser","Collateral usage":"Usage de collatĂ©ral","Collateral usage is limited because of Isolation mode.":"L'utilisation du collatĂ©ral est limitĂ©e en raison du mode d'isolation.","Collateral usage is limited because of isolation mode.":"L’utilisation des garanties est limitĂ©e en raison du mode d’isolation.","Collateral usage is limited because of isolation mode. <0>Learn More":"L'utilisation de la garantie est limitĂ©e en raison du mode d'isolement. <0>En savoir plus","Collateralization":"CollatĂ©ralisation","Collector Contract":"Contrat de collectionneur","Collector Info":"Informations sur le collectionneur","Confirm transaction":"Confirm transaction","Confirming transaction":"Confirming transaction","Connect":"Connect","Connect wallet":"Connecter le portefeuille","Cooldown period":"PĂ©riode de recharge","Cooldown period warning":"Avertissement de pĂ©riode de refroidissement","Cooldown time left":"Temps de recharge restant","Cooldown to unstake":"Temps de recharge pour dĂ©staker","Cooling down...":"Refroidissement...","Copy address":"Copier l'adresse","Copy error message":"Copier le message d’erreur","Copy error text":"Copier le texte d'erreur","Covered debt":"Dette couverte","Current LTV":"LTV actuelle","Current differential":"DiffĂ©rentiel de courant","Current v2 Balance":"Solde actuel v2","Current v2 balance":"Solde actuel de la v2","Current votes":"Votes actuels","DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.":"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.","Dark mode":"Mode Sombre","Dashboard":"Tableau de bord","Data couldn't be fetched, please reload graph.":"Les donnĂ©es n’ont pas pu ĂȘtre rĂ©cupĂ©rĂ©es, veuillez recharger le graphique.","Debt":"Dette","Debt ceiling is exceeded":"Le plafond de la dette est dĂ©passĂ©","Debt ceiling is not zero":"Le plafond de la dette n'est pas nul","Debt ceiling limits the amount possible to borrow against this asset by protocol users. Debt ceiling is specific to assets in isolation mode and is denoted in USD.":"Le plafond de la dette limite le montant que les utilisateurs du protocole peuvent emprunter sur cet actif. Le plafond de la dette est spĂ©cifique aux actifs isolĂ©s et est indiquĂ© en USD.","Delegated power":"DĂ©lĂ©gation de pouvoirs","Destination":"Destination","Details":"DĂ©tails","Developers":"DĂ©veloppeurs","Differential":"DiffĂ©rentiel","Disable E-Mode":"DĂ©sactiver le E-mode","Disable fork":"Disable fork","Disable testnet":"DĂ©sactiver le rĂ©seau de test","Disable {symbol} as collateral":["DĂ©sactiver ",["symbol"]," comme garantie"],"Disabled":"DĂ©sactivĂ©","Disabling E-Mode":"DĂ©sactiver le E-mode","Disabling this asset as collateral affects your borrowing power and Health Factor.":"La dĂ©sactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santĂ©.","Disconnect Wallet":"DĂ©connecter le portefeuille","Discord channel":"Canal Discord","Discount":"Rabais","Discount applied for <0/> staking AAVE":"Remise appliquĂ©e pour <0/> le staking d’AAVE","Discount model parameters":"ParamĂštres du modĂšle de remise","Discount parameters are decided by the Aave community and may be changed over time. Check Governance for updates and vote to participate. <0>Learn more":"Les paramĂštres de remise sont dĂ©cidĂ©s par la communautĂ© Aave et peuvent ĂȘtre modifiĂ©s au fil du temps. Consultez la section Gouvernance pour les mises Ă  jour et votez pour participer. <0>Pour en savoir plus","Discountable amount":"Montant actualisable","Docs":"Docs","Download":"TĂ©lĂ©charger","Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.":"Due to health factor impact, a flashloan is required to perform this transaction, but Aave Governance has disabled flashloan availability for this asset. Try lowering the amount or supplying additional collateral.","Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.":"En raison de la mĂ©canique interne de stETH requise pour le rebasage de la prise en charge, il n’est pas possible d’effectuer un changement de garantie oĂč stETH est le jeton source.","During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.":"During the cooldown period, you will not earn any merit rewards. However, rewards earned up to this point will remain unaffected.","E-Mode":"E-Mode","E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more":"E-Mode augmente votre LTV pour une catĂ©gorie d'actifs sĂ©lectionnĂ©e jusqu'Ă  <0/>. <1>En savoir plus","E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.":"E-Mode increases your LTV for a selected category of assets, meaning that when E-mode is enabled, you will have higher borrowing power over assets of the same E-mode category which are defined by Aave Governance. You can enter E-Mode from your <0>Dashboard. To learn more about E-Mode and applied restrictionn, see the <1>help guide or the <2>Aave V3 Technical Paper.","E-Mode increases your LTV for a selected category of assets. <0>Learn more":"E-Mode increases your LTV for a selected category of assets. <0>Learn more","Edit":"Edit","Effective interest rate":"Taux d’intĂ©rĂȘt effectif","Efficiency mode (E-Mode)":"Mode efficacitĂ© (E-Mode)","Eligible for the Merit program.":"Eligible for the Merit program.","Email":"Email","Emode":"Emode","Enable E-Mode":"Activer le E-Mode","Enable {symbol} as collateral":["Activer ",["symbol"]," comme collatĂ©ral"],"Enabled":"ActivĂ©","Enabling E-Mode":"Activation du E-Mode","Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.":"Enabling E-Mode allows you to maximize your borrowing power, however, borrowing is restricted to assets within the selected category. <0>Learn more about how it works and the applied restrictions.","Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.":"L'activation de cet actif comme garantie augmente votre pouvoir d'emprunt et votre facteur de santĂ©. Cependant, il peut ĂȘtre liquidĂ© si votre facteur de santĂ© tombe en dessous de 1.","English":"Anglais","Enter ETH address":"Entrez l'adresse ETH","Enter ETH address or ENS":"Enter ETH address or ENS","Enter a valid address":"Enter a valid address","Enter an amount":"Entrez un montant","Error connecting. Try refreshing the page.":"Erreur de connexion. Essayez d'actualiser la page.","Estimated compounding interest, including discount for Staking {0}AAVE in Safety Module.":["IntĂ©rĂȘts composĂ©s estimĂ©s, y compris l’escompte pour le jalonnement ",["0"],"AAVE dans le module de sĂ©curitĂ©."],"Estimated time":"Estimated time","Exceeds the discount":"DĂ©passe la remise","Exchange rate":"Exchange rate","Expected amount to repay":"Montant prĂ©vu Ă  rembourser","Expires":"Expire","Export data to":"Exporter des donnĂ©es vers","FAQ":"FAQ","FAQS":"Foire aux questions","Failed to load proposal voters. Please refresh the page.":"Impossible de charger les votants de proposition. Veuillez rafraĂźchir la page.","Faucet":"Faucet","Faucet {0}":["Faucet ",["0"]],"Fee":"Fee","Feedback":"Feedback","Fees exceed wallet balance":"Fees exceed wallet balance","Fetching data...":"RĂ©cupĂ©ration de donnĂ©es...","Filter":"Filtrer","Fixed rate":"Taux fixe","Flashloan is disabled for this asset, hence this position cannot be migrated.":"Flashloan est dĂ©sactivĂ© pour cet actif, cette position ne peut donc pas ĂȘtre migrĂ©e.","For repayment of a specific type of debt, the user needs to have debt that type":"For repayment of a specific type of debt, the user needs to have debt that type","Fork mode is ON":"Fork mode is ON","Forum discussion":"Discussion de forum","French":"Français","Funds in the Safety Module":"Fonds dans le Safety Module","GHO balance":"GHO balance","GHO is a native decentralized, collateral-backed digital asset pegged to USD. It is created by users via borrowing against multiple collateral. When user repays their GHO borrow position, the protocol burns that user's GHO. All the interest payments accrued by minters of GHO would be directly transferred to the AaveDAO treasury.":"GHO est un actif numĂ©rique natif dĂ©centralisĂ© et adossĂ© Ă  des garanties, indexĂ© sur le dollar amĂ©ricain. Il est crĂ©Ă© par les utilisateurs en empruntant contre plusieurs garanties. Lorsque l’utilisateur rembourse sa position d’emprunt de HO, le protocole brĂ»le le GHO de cet utilisateur. Tous les paiements d’intĂ©rĂȘts accumulĂ©s par les minters de GHO seraient directement transfĂ©rĂ©s Ă  la trĂ©sorerie d’AaveDAO.","Get ABP Token":"Obtenir le jeton ABP","Get ABP v2 Token":"Get ABP v2 Token","Get GHO":"Get GHO","Global settings":"ParamĂštres globaux","Go Back":"Retourner","Go to Balancer Pool":"AccĂ©der Ă  Balancer Pool","Go to V3 Dashboard":"AccĂ©der au tableau de bord V3","Governance":"Gouvernance","Greek":"Grec","Health factor":"Facteur de santĂ©","Health factor is lesser than the liquidation threshold":"Le facteur santĂ© est infĂ©rieur au seuil de liquidation","Health factor is not below the threshold":"Le facteur de santĂ© n'est pas infĂ©rieur au seuil","Hide":"Cacher","Holders of stkAAVE receive a discount on the GHO borrowing rate":"Les dĂ©tenteurs de stkAAVE bĂ©nĂ©ficient d’une rĂ©duction sur le taux d’emprunt GHO","I acknowledge the risks involved.":"Je reconnais les risques encourus.","I fully understand the risks of migrating.":"Je comprends parfaitement les risques liĂ©s Ă  la migration.","I understand how cooldown ({0}) and unstaking ({1}) work":["Je comprends comment fonctionnent le temps de recharge (",["0"],") et le retrait (",["1"],")"],"If the error continues to happen,<0/> you may report it to this":"Si l’erreur persiste,<0/> vous pouvez la signaler Ă  ce","If the health factor goes below 1, the liquidation of your collateral might be triggered.":"Si le facteur de santĂ© descend en dessous de 1, la liquidation de votre collatĂ©ral peut ĂȘtre dĂ©clenchĂ©e.","If you DO NOT unstake within {0} of unstake window, you will need to activate cooldown process again.":["Si vous NE vous dĂ©sengagez PAS dans les ",["0"]," de la fenĂȘtre de dĂ©sengagement, vous devrez rĂ©activer le processus de refroidissement."],"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.":"Si votre prĂȘt Ă  la valeur dĂ©passe le seuil de liquidation, votre garantie fournie peut ĂȘtre liquidĂ©e.","In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets":"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accĂ©der Ă  tous les actifs","In Isolation mode, you cannot supply other assets as collateral. A global debt ceiling limits the borrowing power of the isolated asset. To exit isolation mode disable {0} as collateral before borrowing another asset. Read more in our <0>FAQ":["En mode Isolation, vous ne pouvez pas fournir d’autres actifs en garantie. Un plafond d’endettement global limite le pouvoir d’emprunt de l’actif isolĂ©. Pour quitter le mode d’isolement, dĂ©sactivez ",["0"]," en garantie avant d’emprunter un autre actif. Pour en savoir plus, consultez notre <0>FAQ"],"Inconsistent flashloan parameters":"ParamĂštres de prĂȘt flash incohĂ©rents","Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.":"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacitĂ© d’emprunt restante pour effectuer le transfert de dette.","Interest accrued":"IntĂ©rĂȘts courus","Interest rate rebalance conditions were not met":"Les conditions de rĂ©Ă©quilibrage des taux d'intĂ©rĂȘt n'ont pas Ă©tĂ© remplies","Interest rate strategy":"StratĂ©gie de taux d’intĂ©rĂȘt","Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more":"Interest rate that is determined by Aave Governance. This rate may be changed over time depending on the need for the GHO supply to contract/expand. <0>Learn more","Invalid amount to burn":"Montant non valide Ă  brĂ»ler","Invalid amount to mint":"Montant invalide Ă  frapper","Invalid bridge protocol fee":"Frais de protocole de pont invalide","Invalid expiration":"Expiration invalide","Invalid flashloan premium":"Prime flash non valide","Invalid return value of the flashloan executor function":"Valeur de retour invalide de la fonction flashloan executor","Invalid signature":"Signature non valide","Isolated":"IsolĂ©","Isolated Debt Ceiling":"Plafond de la dette isolĂ©e","Isolated assets have limited borrowing power and other assets cannot be used as collateral.":"Les actifs isolĂ©s ont un pouvoir d'emprunt limitĂ© et les autres actifs ne peuvent pas ĂȘtre utilisĂ©s comme garantie.","Join the community discussion":"Rejoignez la discussion de la communautĂ©","Language":"Language","Learn more":"Apprendre encore plus","Learn more about risks involved":"En savoir plus sur les risques encourus","Learn more about the SPK rewards":"Learn more about the SPK rewards","Learn more in our <0>FAQ guide":"En savoir plus dans notre <0>guide FAQ","Learn more.":"Pour en savoir plus.","Legacy Markets":"Legacy Markets","Let us know how we can make the app better for you. For user support related inquiries please reach out on":"Let us know how we can make the app better for you. For user support related inquiries please reach out on","Linked addresses":"Linked addresses","Links":"Liens","Liquidated collateral":"Garantie liquidĂ©e","Liquidation":"Liquidation","Liquidation <0/> threshold":"Seuil de liquidation <0/>","Liquidation Threshold":"Seuil de liquidation","Liquidation at":"Liquidation Ă ","Liquidation penalty":"PĂ©nalitĂ© de liquidation","Liquidation risk":"Risque de liquidation","Liquidation risk parameters":"ParamĂštres du risque de liquidation","Liquidation threshold":"Seuil de liquidation","Liquidation value":"Valeur de liquidation","Loading data...":"Chargement des donnĂ©es...","Ltv validation failed":"Échec de la validation LTV","MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details":"L’AMI a Ă©tĂ© suspendu en raison d’une dĂ©cision de la communautĂ©. L’offre, les emprunts et les remboursements sont impactĂ©s. <0>Plus d’informations","MAX":"MAX","Manage E-Mode":"Manage E-Mode","Manage analytics":"GĂ©rer l’analytique","Market":"MarchĂ©","Markets":"MarchĂ©s","Max":"Max","Max LTV":"Max LTV","Max slashing":"Coupure maximale","Max slippage":"Glissement maximal","Maximum amount available to borrow against this asset is limited because debt ceiling is at {0}%.":["Le montant maximal disponible pour emprunter sur cet actif est limitĂ© car le plafond de la dette est Ă  ",["0"],"%."],"Maximum amount available to borrow is <0/> {0} (<1/>).":["Le montant maximal disponible pour emprunter est de <0/> ",["0"]," (<1/>)."],"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.":"Le montant maximum disponible pour emprunter est limitĂ© car le plafond d’emprunt du protocole est presque atteint.","Maximum amount available to supply is <0/> {0} (<1/>).":["La quantitĂ© maximale disponible pour la fourniture est de <0/> ",["0"]," (<1/>)."],"Maximum amount available to supply is limited because protocol supply cap is at {0}%.":["La quantitĂ© maximale disponible pour l’approvisionnement est limitĂ©e parce que le plafond d’approvisionnement du protocole est Ă  ",["0"],"%."],"Maximum amount received":"Maximum amount received","Maximum available to borrow":"Maximum available to borrow","Maximum collateral amount to use":"Maximum collateral amount to use","Meet GHO":"Rencontrez GHO","Menu":"Menu","Merit Program rewards are claimed through the":"Merit Program rewards are claimed through the","Migrate":"Émigrer","Migrate to Aave V3":"Migrate to Aave V3","Migrate to V3":"Migrer vers la V3","Migrate to stkABPT v2":"Migrate to stkABPT v2","Migrate to v3":"Migrer vers la v3","Migrate to {0} v3 Market":["Migrer vers ",["0"]," MarchĂ© v3"],"Migrate your assets":"Migrate your assets","Migrated":"MigrĂ©","Migrating":"Migration","Migrating multiple collaterals and borrowed assets at the same time can be an expensive operation and might fail in certain situations.<0>Therefore it’s not recommended to migrate positions with more than 5 assets (deposited + borrowed) at the same time.":"La migration simultanĂ©e de plusieurs garanties et d’actifs empruntĂ©s peut s’avĂ©rer coĂ»teuse et peut Ă©chouer dans certaines situations. <0>Par consĂ©quent, il n’est pas recommandĂ© de migrer des positions avec plus de 5 actifs (dĂ©posĂ©s + empruntĂ©s) en mĂȘme temps.","Migration risks":"Risques liĂ©s Ă  la migration","Minimum GHO borrow amount":"Montant minimum d’emprunt GHO","Minimum USD value received":"Valeur minimale en USD reçue","Minimum amount of debt to be repaid":"Minimum amount of debt to be repaid","Minimum amount received":"Minimum amount received","Minimum staked Aave amount":"Montant minimum d’Aave mis en jeu","Minimum {0} received":["Minimum ",["0"]," reçu"],"More":"Plus","NAY":"NON","Need help connecting a wallet? <0>Read our FAQ":"Besoin d'aide pour connecter un portefeuille ? <0>Lire notre FAQ","Net APR":"APR Net","Net APY":"APY Net","Net APY is the combined effect of all supply and borrow positions on net worth, including incentives. It is possible to have a negative net APY if debt APY is higher than supply APY.":"L'APY net est l'effet combinĂ© de toutes les positions d'offre et d'emprunt sur la valeur nette, y compris les incitations. Il est possible d'avoir un APY net nĂ©gatif si l'APY de la dette est supĂ©rieur Ă  l'APY de l'offre.","Net worth":"Valeur nette","Network":"RĂ©seau","Network not supported for this wallet":"RĂ©seau non pris en charge pour ce portefeuille","No assets selected to migrate.":"Aucune ressource n’a Ă©tĂ© sĂ©lectionnĂ©e pour la migration.","No results found. You can import a custom token with a contract address":"No results found. You can import a custom token with a contract address","No rewards to claim":"Aucune rĂ©compense Ă  rĂ©clamer","No search results{0}":["Aucun rĂ©sultat de recherche",["0"]],"No transactions yet.":"Aucune transaction n’a encore Ă©tĂ© effectuĂ©e.","No voting power":"Pas de pouvoir de vote","None":"Aucun/Aucune","Not a valid address":"Pas une adresse valide","Not enough balance on your wallet":"Pas assez de solde sur votre portefeuille","Not enough collateral to repay this amount of debt with":"Pas assez de collatĂ©ral pour rembourser ce montant de dette avec","Not enough staked balance":"Pas assez de solde stakĂ©","Not enough voting power to participate in this proposal":"Pas assez de pouvoir de vote pour participer Ă  cette proposition","Not reached":"Non atteint","Nothing borrowed yet":"Aucun emprunt pour l'instant","Nothing found":"Rien n’a Ă©tĂ© trouvĂ©","Nothing staked":"Rien stakĂ©","Nothing supplied yet":"Rien fourni pour le moment","Ok, Close":"D'accord, fermer","Operation not supported":"OpĂ©ration non prise en charge","Oracle price":"Prix Oracle","Overview":"Aperçu","Page not found":"Page introuvable","Participating in this {symbol} reserve gives annualized rewards.":["Participer Ă  cette rĂ©serve ",["symbol"]," donne des rĂ©compenses annualisĂ©es."],"Pending...":"En attente...","Per the community, the {market} has been frozen.":["Per the community, the ",["market"]," has been frozen."],"Please always be aware of your <0>Health Factor (HF) when partially migrating a position and that your rates will be updated to V3 rates.":"Veuillez toujours tenir compte de votre <0>facteur de santĂ© (HF) lors de la migration partielle d’une position et que vos tarifs seront mis Ă  jour vers les taux V3.","Please connect a wallet to view your personal information here.":"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.","Please connect your wallet to be able to bridge your tokens.":"Please connect your wallet to be able to bridge your tokens.","Please connect your wallet to be able to switch your tokens.":"Veuillez connecter votre portefeuille pour pouvoir Ă©changer vos jetons.","Please connect your wallet to get free testnet assets.":"Veuillez connecter votre portefeuille pour obtenir des ressources de rĂ©seau de test gratuites.","Please connect your wallet to see migration tool.":"Veuillez connecter votre portefeuille pour voir l’outil de migration.","Please connect your wallet to see your supplies, borrowings, and open positions.":"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.","Please connect your wallet to view transaction history.":"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.","Please enter a valid wallet address.":"Veuillez saisir une adresse de portefeuille valide.","Please switch to {networkName}.":["Veuillez passer Ă  ",["networkName"],"."],"Please, connect your wallet":"S'il vous plaĂźt, connectez votre portefeuille","Pool addresses provider is not registered":"Le fournisseur d'adresses de pool n'est pas enregistrĂ©","Powered by":"AlimentĂ© par","Preview tx and migrate":"PrĂ©visualiser tx et migrer","Price":"Prix","Price data is not currently available for this reserve on the protocol subgraph":"À l’heure actuelle, les donnĂ©es sur les prix ne sont pas disponibles pour cette rĂ©serve dans le sous-graphe du protocole","Price impact":"Impact sur les prix","Price impact is the spread between the total value of the entry tokens switched and the destination tokens obtained (in USD), which results from the limited liquidity of the trading pair.":"L’impact sur les prix est l’écart entre la valeur totale des tokens d’entrĂ©e Ă©changĂ©s et les tokens de destination obtenus (en USD), qui rĂ©sulte de la liquiditĂ© limitĂ©e de la paire de trading.","Price impact {0}%":["Impact sur les prix ",["0"],"%"],"Privacy":"Vie privĂ©e","Proposal details":"DĂ©tails de la proposition","Proposal overview":"Aperçu de la proposition","Proposals":"Les propositions","Proposition":"Proposition","Protocol borrow cap at 100% for this asset. Further borrowing unavailable.":"Plafond d’emprunt du protocole Ă  100% pour cet actif. Il n’est pas possible d’emprunter davantage.","Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.":"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.","Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.":"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.","Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.":"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.","Protocol supply cap at 100% for this asset. Further supply unavailable.":"Limite d’approvisionnement du protocole Ă  100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.","Protocol supply cap is at 100% for this asset. Further supply unavailable.":"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.","Quorum":"Quorum","Rate change":"Changement de taux","Raw-Ipfs":"Raw-Ipfs","Reached":"Atteint","Reactivate cooldown period to unstake {0} {stakedToken}":["RĂ©activer la pĂ©riode de recharge pour annuler le pieu ",["0"]," ",["stakedToken"]],"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.":"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.","Read-only mode.":"Mode lecture seule.","Read-only mode. Connect to a wallet to perform transactions.":"Mode lecture seule. Connectez-vous Ă  un portefeuille pour effectuer des transactions.","Receive (est.)":"Recevoir (est.)","Received":"Reçu","Recent Transactions":"Recent Transactions","Recipient address":"Adresse du destinataire","Rejected connection request":"Demande de connexion rejetĂ©e","Reload":"Recharger","Reload the page":"Recharger la page","Remaining debt":"Dette restante","Remaining supply":"Offre restante","Remind me":"Remind me","Remove":"Remove","Repaid":"RemboursĂ©","Repay":"Rembourser","Repay with":"Rembourser avec","Repay {symbol}":["Rembourser ",["symbole"]],"Repaying {symbol}":["Remboursement ",["symbole"]],"Repayment amount to reach {0}% utilization":["Montant de remboursement Ă  atteindre ",["0"],"% d’utilisation"],"Representative smart contract wallet (ie. Safe) addresses on other chains.":"Representative smart contract wallet (ie. Safe) addresses on other chains.","Representing smart contract wallet (ie. Safe) addresses on other chains.":"Representing smart contract wallet (ie. Safe) addresses on other chains.","Reserve Size":"Taille de rĂ©serve","Reserve factor":"Facteur de rĂ©serve","Reserve factor is a percentage of interest which goes to a {0} that is controlled by Aave governance to promote ecosystem growth.":["Le facteur de rĂ©serve est un pourcentage de l’intĂ©rĂȘt qui va Ă  un ",["0"]," qui est contrĂŽlĂ© par la gouvernance Aave pour promouvoir la croissance de l’écosystĂšme."],"Reserve status & configuration":"Statut et configuration de la rĂ©serve","Reset":"RĂ©initialisation","Restake":"Remise en jeu","Restake {symbol}":["Remise en jeu ",["symbol"]],"Restaked":"RestaurĂ©","Restaking {symbol}":["Reprise ",["symbol"]],"Review approval tx details":"Examiner les dĂ©tails de la taxe d'approbation","Review tx":"RĂ©viser tx","Review tx details":"Examiner les dĂ©tails de la transaction","Revoke power":"RĂ©voquer le pouvoir","Reward(s) to claim":"RĂ©compense(s) Ă  rĂ©clamer","Rewards APR":"RĂ©compenses APR","Rewards can be claimed through":"Rewards can be claimed through","Risk details":"DĂ©tails des risques","Safety of your deposited collateral against the borrowed assets and its underlying value.":"SĂ©curitĂ© de votre garantie dĂ©posĂ©e contre les actifs empruntĂ©s et sa valeur sous-jacente.","Save and share":"Enregistrer et partager","Seems like we can't switch the network automatically. Please check if you can change it from the wallet.":"On dirait que nous ne pouvons pas changer de rĂ©seau automatiquement. Veuillez vĂ©rifier si vous pouvez le changer depuis le portefeuille.","Select an asset":"SĂ©lectionner une ressource","Select language":"Choisir la langue","Select slippage tolerance":"SĂ©lectionner la tolĂ©rance de glissement","Selected assets have successfully migrated. Visit the Market Dashboard to see them.":"Les ressources sĂ©lectionnĂ©es ont Ă©tĂ© migrĂ©es avec succĂšs. Rendez-vous sur le tableau de bord du marchĂ© pour les voir.","Selected borrow assets":"SĂ©lection d’actifs d’emprunt","Selected supply assets":"SĂ©lection d’actifs d’approvisionnement","Send Feedback":"Send Feedback","Send feedback":"Envoyer des commentaires","Set up delegation":"Configurer la dĂ©lĂ©gation","Share on Lens":"Partager sur Lens","Share on twitter":"Partager sur Twitter","Show":"Montrer","Show Frozen or paused assets":"Afficher les ressources gelĂ©es ou mises en pause","Show assets with 0 balance":"Afficher les actifs avec 0 solde","Sign to continue":"Signez pour continuer","Signatures ready":"Signatures prĂȘtes","Signing":"Signature","Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard":"Étant donnĂ© que cet actif est gelĂ©, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord","Since this is a test network, you can get any of the assets if you have ETH on your wallet":"Comme il s'agit d'un rĂ©seau de test, vous pouvez obtenir n'importe lequel des actifs si vous avez ETH dans votre portefeuille","Slippage":"Glissement","Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.":"Le slippage est la diffĂ©rence entre les montants cotĂ©s et reçus en raison de l’évolution des conditions du marchĂ© entre le moment oĂč la transaction est soumise et sa vĂ©rification.","Some migrated assets will not be used as collateral due to enabled isolation mode in {marketName} V3 Market. Visit <0>{marketName} V3 Dashboard to manage isolation mode.":["Certaines ressources migrĂ©es ne seront pas utilisĂ©es comme garantie en raison de l’activation du mode d’isolement dans ",["marketName"]," MarchĂ© V3. Visite <0>",["marketName"]," Tableau de bord V3 pour gĂ©rer le mode d’isolation."],"Something went wrong":"Quelque chose s’est mal passĂ©","Something went wrong fetching bridge message, please try again later.":"Something went wrong fetching bridge message, please try again later.","Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.":"DĂ©solĂ©, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.","Sorry, we couldn't find the page you were looking for.":"DĂ©solĂ©, nous n’avons pas trouvĂ© la page que vous cherchiez.","Source":"Source","Spanish":"Espagnol","Stable":"Stable","Stable borrowing is enabled":"L'emprunt stable est activĂ©","Stable borrowing is not enabled":"L'emprunt stable n'est pas activĂ©","Stable debt supply is not zero":"L'offre de dette stable n'est pas nulle","Stable interest rate will <0>stay the same for the duration of your loan. Recommended for long-term loan periods and for users who prefer predictability.":"Le taux d'intĂ©rĂȘt stable <0>restera le mĂȘme pendant toute la durĂ©e de votre prĂȘt. RecommandĂ© pour les pĂ©riodes de prĂȘt Ă  long terme et pour les utilisateurs qui prĂ©fĂšrent la prĂ©visibilitĂ©.","Stablecoin":"Stablecoin","Stake":"Stake","Stake AAVE":"Mise en jeu AAVE","Stake ABPT":"Mise en jeu ABPT","Stake GHO":"Stake GHO","Stake cooldown activated":"Temps de recharge de la mise activĂ©","Staked":"StakĂ©","Staking":"Staking","Staking APR":"APR stakĂ©","Staking Rewards":"RĂ©compenses de staking","Staking balance":"Solde de mise en jeu","Staking discount":"Remise sur le staking","State":"État","Status":"Status","Submission did not work, please try again later or contact wecare@avara.xyz":"Submission did not work, please try again later or contact wecare@avara.xyz","Supplied":"Fourni","Supplied asset amount":"Montant de l’actif fourni","Supplied assets":"Supplied assets","Supply":"Fournir","Supply APY":"Fournir APY","Supply apy":"Fournir apy","Supply balance":"Bilan d'approvisionnement","Supply balance after switch":"Bilan de l’alimentation aprĂšs le changement","Supply cap is exceeded":"Le plafond d'approvisionnement est dĂ©passĂ©","Supply cap on target reserve reached. Try lowering the amount.":"Plafond d'approvisionnement sur la rĂ©serve cible atteint. Essayez de rĂ©duire le montant.","Supply {symbol}":["Fournir ",["symbole"]],"Supplying your":"Fournir votre","Supplying {symbol}":["Fournir ",["symbole"]],"Switch":"Interrupteur","Switch E-Mode":"Changer de mode E","Switch Network":"Changer de rĂ©seau","Switch borrow position":"Changer de position d’emprunt","Switch to":"Passer Ă ","Switched":"CommutĂ©","Switching":"Transistor","Switching E-Mode":"Changement de mode E","Techpaper":"Fiche technique","Terms":"Petits caractĂšres","Test Assets":"Ressources de test","Testnet mode":"Mode rĂ©seau test","Testnet mode is ON":"Le mode rĂ©seau de test est activĂ©","Thank you for submitting feedback!":"Thank you for submitting feedback!","Thank you for voting!!":"Merci d’avoir voté !!","The % of your total borrowing power used. This is based on the amount of your collateral supplied and the total amount that you can borrow.":"Le % de votre pouvoir d'emprunt total utilisĂ©. Ceci est basĂ© sur le montant de votre garantie fournie et le montant total que vous pouvez emprunter.","The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.":"The Aave Balancer Pool Token (ABPT) is a liquidity pool token. You can receive ABPT by depositing a combination of AAVE + wstETH in the Balancer liquidity pool. You can then stake your BPT in the Safety Module to secure the protocol and earn Safety Incentives.","The Aave Protocol is programmed to always use the price of 1 GHO = $1. This is different from using market pricing via oracles for other crypto assets. This creates stabilizing arbitrage opportunities when the price of GHO fluctuates.":"Le protocole Aave est programmĂ© pour toujours utiliser le prix de 1 GHO = 1 $. C’est diffĂ©rent de l’utilisation des prix du marchĂ© via des oracles pour d’autres actifs cryptographiques. Cela crĂ©e des opportunitĂ©s d’arbitrage stabilisatrices lorsque le prix du GHO fluctue.","The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in the principal currency for every 1 ETH worth of collateral.":"Le ratio LTV maximum reprĂ©sente le pouvoir d'emprunt maximum d'une garantie spĂ©cifique. Par exemple, si une garantie a un LTV de 75 %, l'utilisateur peut emprunter jusqu'Ă  0,75 ETH dans la devise principale pour chaque 1 ETH de garantie.","The address of the pool addresses provider is invalid":"L'adresse du fournisseur d'adresses du pool n'est pas valide","The app is running in fork mode.":"The app is running in fork mode.","The app is running in testnet mode. Learn how it works in":"L’application s’exĂ©cute en mode rĂ©seau de test. DĂ©couvrez comment cela fonctionne dans","The caller of the function is not an AToken":"L'appelant de la fonction n'est pas un AToken","The caller of this function must be a pool":"L'appelant de cette fonction doit ĂȘtre un pool","The collateral balance is 0":"Le solde de la garantie est de 0","The collateral chosen cannot be liquidated":"La garantie choisie ne peut ĂȘtre liquidĂ©e","The cooldown period is the time required prior to unstaking your tokens (20 days). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window.<0>Learn more":"La pĂ©riode de recharge est le temps nĂ©cessaire avant de retirer vos jetons (20 jours). Vous ne pouvez retirer vos actifs du module de sĂ©curitĂ© qu’aprĂšs la pĂ©riode de recharge et pendant la pĂ©riode de dĂ©senjeu. <0>Pour en savoir plus","The cooldown period is {0}. After {1} of cooldown, you will enter unstake window of {2}. You will continue receiving rewards during cooldown and unstake window.":["La pĂ©riode de recharge est de ",["0"],". AprĂšs ",["1"]," de temps de recharge, vous entrerez dans la fenĂȘtre de dĂ©sengagement de ",["2"],". Vous continuerez Ă  recevoir des rĂ©compenses pendant le temps de recharge et la fenĂȘtre de retrait."],"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.":"The current incentives period, decided on by the Aave community, has ended. Governance is in the process on renewing, check for updates. <0>Learn more.","The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more":"The fee includes the gas cost to complete the transaction on the destination chain and the fee paid to Chainlink CCIP service providers. You can chose to pay in the network token or GHO. <0>Learn more","The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.":"Le ratio prĂȘt/valeur des positions migrĂ©es entraĂźnerait la liquidation. Augmenter les garanties migrĂ©es ou rĂ©duire les emprunts migrĂ©s pour continuer.","The requested amount is greater than the max loan size in stable rate mode":"Le montant demandĂ© est supĂ©rieur au montant maximum du prĂȘt en mode taux stable","The source chain time to finality is the main factor that determines the time to destination. <0>Learn more":"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more","The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.":"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.","The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.":"Le montant total de vos actifs libellĂ©s en USD qui peut ĂȘtre utilisĂ© comme garantie pour emprunter des actifs.","The underlying asset cannot be rescued":"L'actif sous-jacent ne peut pas ĂȘtre sauvĂ©","The underlying balance needs to be greater than 0":"Le solde sous-jacent doit ĂȘtre supĂ©rieur Ă  0","The weighted average of APY for all borrowed assets, including incentives.":"La moyenne pondĂ©rĂ©e de l'APY pour tous les actifs empruntĂ©s, y compris les incitatifs.","The weighted average of APY for all supplied assets, including incentives.":"La moyenne pondĂ©rĂ©e de l'APY pour tous les actifs fournis, y compris les incitations.","There are not enough funds in the{0}reserve to borrow":["Il n'y a pas assez de fonds dans la ",["0"]," rĂ©serve pour emprunter"],"There is not enough collateral to cover a new borrow":"Il n'y a pas assez de collatĂ©ral pour couvrir un nouvel emprunt","There is not enough liquidity for the target asset to perform the switch. Try lowering the amount.":"Il n’y a pas assez de liquiditĂ©s pour que l’actif cible puisse effectuer le changement. Essayez de rĂ©duire le montant.","There was some error. Please try changing the parameters or <0><1>copy the error":"Il y a eu une erreur. Veuillez essayer de modifier les paramĂštres ou <0><1>copier l'erreur","These assets are temporarily frozen or paused by Aave community decisions, meaning that further supply / borrow, or rate swap of these assets are unavailable. Withdrawals and debt repayments are allowed. Follow the <0>Aave governance forum for further updates.":"Ces actifs sont temporairement gelĂ©s ou suspendus par des dĂ©cisions de la communautĂ© Aave, ce qui signifie qu’il n’est pas possible d’obtenir / emprunter ou d’échanger des taux de ces actifs. Les retraits et les remboursements de dettes sont autorisĂ©s. Suivez le <0>forum de gouvernance d’Aave pour d’autres mises Ă  jour.","These funds have been borrowed and are not available for withdrawal at this time.":"Ces fonds ont Ă©tĂ© empruntĂ©s et ne peuvent pas ĂȘtre retirĂ©s pour le moment.","This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.":"Cette action rĂ©duira le facteur de santĂ© V2 en dessous du seuil de liquidation. Conservez la garantie ou migrez la position d’emprunt pour continuer.","This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.":"Cette action rĂ©duira le facteur de santĂ© de V3 en dessous du seuil de liquidation. Augmenter les garanties migrĂ©es ou rĂ©duire les emprunts migrĂ©s pour continuer.","This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.":"Cette action rĂ©duira votre facteur de santĂ©. Veuillez garder Ă  l’esprit le risque accru de liquidation des garanties.","This address is blocked on app.aave.com because it is associated with one or more":"Cette adresse est bloquĂ©e sur app.aave.com car elle est associĂ©e Ă  un ou plusieurs","This asset has almost reached its borrow cap. There is only {messageValue} available to be borrowed from this market.":["Cet actif a presque atteint son plafond d'emprunt. Il n'y a que ",["messageValue"]," disponible pour ĂȘtre empruntĂ© sur ce marchĂ©."],"This asset has almost reached its supply cap. There can only be {messageValue} supplied to this market.":["Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que ",["messageValue"]," fourni Ă  ce marchĂ©."],"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.":"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.","This asset has reached its borrow cap. Nothing is available to be borrowed from this market.":"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour ĂȘtre empruntĂ© Ă  ce marchĂ©.","This asset has reached its supply cap. Nothing is available to be supplied from this market.":"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour ĂȘtre fourni Ă  partir de ce marchĂ©.","This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.","This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.":"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.","This asset is frozen due to an Aave Protocol Governance decision. <0>More details":"Cet actif est gelĂ© en raison d’une dĂ©cision de gouvernance du protocole Aave. <0>Plus d’informations","This asset is frozen due to an Aave Protocol Governance decision. On the 20th of December 2022, renFIL will no longer be supported and cannot be bridged back to its native network. It is recommended to withdraw supply positions and repay borrow positions so that renFIL can be bridged back to FIL before the deadline. After this date, it will no longer be possible to convert renFIL to FIL. <0>More details":"Cet actif est gelĂ© en raison d’une dĂ©cision de gouvernance du protocole Aave. Le 20 dĂ©cembre 2022, renFIL ne sera plus pris en charge et ne pourra plus ĂȘtre reconnectĂ© Ă  son rĂ©seau natif. Il est recommandĂ© de retirer les positions d’offre et de rembourser les positions d’emprunt afin que renFIL puisse ĂȘtre reliĂ© Ă  FIL avant la date limite. AprĂšs cette date, il ne sera plus possible de convertir renFIL en FIL. <0>Plus d’informations","This asset is frozen due to an Aave community decision. <0>More details":"Cet actif est gelĂ© en raison d’une dĂ©cision de la communautĂ© Aave. <0>Plus d’informations","This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details":"Il est prĂ©vu que cet actif soit dĂ©sactivĂ© en raison d’une dĂ©cision de gouvernance du protocole Aave. <0>Plus d’informations","This gas calculation is only an estimation. Your wallet will set the price of the transaction. You can modify the gas settings directly from your wallet provider.":"Ce calcul de gaz n'est qu'une estimation. Votre portefeuille fixera le prix de la transaction. Vous pouvez modifier les paramĂštres de gaz directement depuis votre fournisseur de portefeuille.","This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.":"This is a program initiated and implemented by the decentralised Aave community. Aave Labs does not guarantee the program and accepts no liability.","This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.":"Il s'agit du montant total que vous pouvez emprunter. Vous pouvez emprunter en fonction de votre garantie et jusqu'Ă  ce que le plafond d'emprunt soit atteint.","This is the total amount that you are able to supply to in this reserve. You are able to supply your wallet balance up until the supply cap is reached.":"Il s'agit du montant total que vous pouvez emprunter. Vous pouvez emprunter en fonction de votre garantie et jusqu'Ă  ce que le plafond d'emprunt soit atteint.","This represents the threshold at which a borrow position will be considered undercollateralized and subject to liquidation for each collateral. For example, if a collateral has a liquidation threshold of 80%, it means that the position will be liquidated when the debt value is worth 80% of the collateral value.":"Cela reprĂ©sente le seuil auquel une position d'emprunt sera considĂ©rĂ©e comme sous-garantie et sujette Ă  liquidation pour chaque garantie. Par exemple, si une garantie a un seuil de liquidation de 80 %, cela signifie que la position sera liquidĂ©e lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.","Time left to unstake":"Temps restant pour dĂ©piquer","Time remaining until the 48 hour withdraw period starts.":"Time remaining until the 48 hour withdraw period starts.","Time remaining until the withdraw period ends.":"Time remaining until the withdraw period ends.","Tip: Try increasing slippage or reduce input amount":"Astuce : Essayez d’augmenter le glissement ou de rĂ©duire la quantitĂ© d’entrĂ©e","To":"To","To borrow you need to supply any asset to be used as collateral.":"Pour emprunter, vous devez fournir tout actif Ă  utiliser comme garantie.","To continue, you need to grant Aave smart contracts permission to move your funds from your wallet. Depending on the asset and wallet you use, it is done by signing the permission message (gas free), or by submitting an approval transaction (requires gas). <0>Learn more":"Pour continuer, vous devez autoriser les contrats intelligents Aave Ă  dĂ©placer vos fonds depuis votre portefeuille. En fonction de l’actif et du portefeuille que vous utilisez, cela se fait en signant le message d’autorisation (sans gaz) ou en soumettant une transaction d’approbation (nĂ©cessite du gaz). <0>Pour en savoir plus","To repay on behalf of a user an explicit amount to repay is needed":"Pour rembourser au nom d'un utilisateur, un montant explicite Ă  rembourser est nĂ©cessaire","To request access for this permissioned market, please visit: <0>Acces Provider Name":"Pour demander l'accĂšs Ă  ce marchĂ© autorisĂ©, veuillez consulter : <0>Nom du fournisseur d'accĂšs","To submit a proposal for minor changes to the protocol, you'll need at least 80.00K power. If you want to change the core code base, you'll need 320k power.<0>Learn more.":"Pour soumettre une proposition de modifications mineures du protocole, vous aurez besoin d’une puissance d’au moins 80,00 K. Si vous souhaitez modifier la base de code de base, vous aurez besoin d’une puissance de 320k. <0>Pour en savoir plus.","Top 10 addresses":"Top 10 des adresses","Total available":"Total disponible","Total borrowed":"Total empruntĂ©","Total borrows":"Total des emprunts","Total emission per day":"Émission totale par jour","Total interest accrued":"Total des intĂ©rĂȘts courus","Total market size":"Taille totale du marchĂ©","Total supplied":"Total fourni","Total worth":"Valeur totale","Track wallet":"Suivre le portefeuille","Track wallet balance in read-only mode":"Suivre le solde du portefeuille en mode lecture seule","Transaction failed":"La transaction a Ă©chouĂ©","Transaction history":"Historique des transactions","Transaction history is not currently available for this market":"L’historique des transactions n’est actuellement pas disponible pour ce marchĂ©","Transaction overview":"Aperçu des transactions","Transactions":"Transactions","Unavailable":"Non disponible","Unbacked":"Sans support","Unbacked mint cap is exceeded":"Le plafond de mintage non soutenu est dĂ©passĂ©","Underlying asset does not exist in {marketName} v3 Market, hence this position cannot be migrated.":["L’actif sous-jacent n’existe pas dans ",["marketName"]," v3 Market, par consĂ©quent, cette position ne peut pas ĂȘtre migrĂ©e."],"Underlying token":"Jeton sous-jacent","Unstake":"Unstake","Unstake now":"ArrĂȘter de staker maintenant","Unstake window":"FenĂȘtre d'arrĂȘt de staking","Unstake {symbol}":["Unstake ",["symbol"]],"Unstaked":"Non jalonnĂ©","Unstaking {symbol}":["DĂ©jalonnement ",["symbol"]],"Use connected account":"Use connected account","Use it to vote for or against active proposals.":"Utilisez-le pour voter pour ou contre les propositions actives.","Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.":"Use your AAVE, stkAAVE, or aAave balance to delegate your voting and proposition powers. You will not be sending any tokens, only the rights to vote and propose changes to the protocol. You can re-delegate or revoke power to self at any time.","Used as collateral":"UtilisĂ© comme collatĂ©ral","User cannot withdraw more than the available balance":"L'utilisateur ne peut pas retirer plus que le solde disponible","User did not borrow the specified currency":"L'utilisateur n'a pas empruntĂ© la devise spĂ©cifiĂ©e","User does not have outstanding stable rate debt on this reserve":"L'utilisateur n'a pas de dette Ă  taux stable impayĂ©e sur cette rĂ©serve","User does not have outstanding variable rate debt on this reserve":"L'utilisateur n'a pas de dette Ă  taux variable impayĂ©e sur cette rĂ©serve","User is in isolation mode or LTV is zero":"User is in isolation mode or LTV is zero","User is trying to borrow multiple assets including a siloed one":"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.":"Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate.","Users who stake AAVE in Safety Module (i.e. stkAAVE holders) receive a discount on GHO borrow interest rate. The discount applies to 100 GHO for every 1 stkAAVE held. Use the calculator below to see GHO borrow rate with the discount applied.":"Les utilisateurs qui misent des AAVE dans le module de sĂ©curitĂ© (c’est-Ă -dire les dĂ©tenteurs de stkAAVE) bĂ©nĂ©ficient d’une rĂ©duction sur le taux d’intĂ©rĂȘt d’emprunt de HO. La rĂ©duction s’applique Ă  100 GHO pour chaque 1 stkAAVE dĂ©tenu. Utilisez le calculateur ci-dessous pour voir le taux d’emprunt GHO avec le rabais appliquĂ©.","Utilization Rate":"Taux d'utilisation","VIEW TX":"VOIR TX","VOTE NAY":"VOTER NON","VOTE YAE":"VOTER OUI","Variable":"Variable","Variable debt supply is not zero":"L'offre de dette variable n'est pas nulle","Variable interest rate will <0>fluctuate based on the market conditions.":"Variable interest rate will <0>fluctuate based on the market conditions.","Variable rate":"Taux variable","Version 2":"Variante 2","Version 3":"Variante 3","View":"Vue","View Bridge Transactions":"View Bridge Transactions","View TX":"View TX","View Transactions":"Afficher les transactions","View all":"View all","View all votes":"Voir tous les votes","View contract":"Voir le contrat","View details":"Voir dĂ©tails","View on Explorer":"Voir sur l'explorer","Vote NAY":"Vote NAY","Vote YAE":"Vote YAE","Voted NAY":"A votĂ© NAY","Voted YAE":"A votĂ© YAE","Votes":"Votes","Voting":"Vote","Voting is on":"Voting is on","Voting power":"Pouvoir de vote","Voting results":"RĂ©sultats du vote","Wallet Balance":"Solde du portefeuille","Wallet balance":"Solde du portefeuille","Wallet not detected. Connect or install wallet and retry":"Portefeuille non dĂ©tectĂ©. Connectez ou installez le portefeuille et rĂ©essayez","Wallets are provided by External Providers and by selecting you agree to Terms of those Providers. Your access to the wallet might be reliant on the External Provider being operational.":"Les portefeuilles sont fournis par des fournisseurs externes et en sĂ©lectionnant, vous acceptez les conditions de ces fournisseurs. Votre accĂšs au portefeuille peut dĂ©pendre du fonctionnement du fournisseur externe.","We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.":"Nous n’avons trouvĂ© aucun Ă©lĂ©ment liĂ© Ă  votre recherche. RĂ©essayez avec un autre nom, symbole ou adresse de ressource.","We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.":"Nous n’avons trouvĂ© aucune transaction liĂ©e Ă  votre recherche. RĂ©essayez avec un autre nom de ressource ou rĂ©initialisez les filtres.","We couldn’t detect a wallet. Connect a wallet to stake and view your balance.":"Nous n’avons pas pu dĂ©tecter de portefeuille. Connectez un portefeuille pour staker et consulter votre solde.","We suggest you go back to the Dashboard.":"Nous vous suggĂ©rons de revenir au tableau de bord.","Website":"Site internet","When a liquidation occurs, liquidators repay up to 50% of the outstanding borrowed amount on behalf of the borrower. In return, they can buy the collateral at a discount and keep the difference (liquidation penalty) as a bonus.":"Lorsqu'une liquidation survient, les liquidateurs remboursent jusqu'Ă  50 % de l'encours empruntĂ© au nom de l'emprunteur. En contrepartie, ils peuvent acheter le collatĂ©ral Ă  prix rĂ©duit et conserver la diffĂ©rence (pĂ©nalitĂ© de liquidation) en bonus.","With a voting power of <0/>":"Avec un pouvoir de vote de <0/>","With testnet Faucet you can get free assets to test the Aave Protocol. Make sure to switch your wallet provider to the appropriate testnet network, select desired asset, and click ‘Faucet’ to get tokens transferred to your wallet. The assets on a testnet are not “real,” meaning they have no monetary value. <0>Learn more":"Avec testnet Faucet, vous pouvez obtenir des ressources gratuites pour tester le protocole Aave. Assurez-vous de changer votre fournisseur de portefeuille pour le rĂ©seau de test appropriĂ©, sĂ©lectionnez l’actif souhaitĂ© et cliquez sur « Faucet » pour obtenir des jetons transfĂ©rĂ©s vers votre portefeuille. Les actifs d’un rĂ©seau de test ne sont pas « rĂ©els », ce qui signifie qu’ils n’ont aucune valeur monĂ©taire. <0>Pour en savoir plus","Withdraw":"Retirer","Withdraw & Switch":"Retrait et Ă©change","Withdraw and Switch":"Retrait et Ă©change","Withdraw {symbol}":["Retirer ",["symbole"]],"Withdrawing":"Withdrawing","Withdrawing and Switching":"Retrait et changement","Withdrawing this amount will reduce your health factor and increase risk of liquidation.":"Le retrait de ce montant rĂ©duira votre facteur santĂ© et augmentera le risque de liquidation.","Withdrawing {symbol}":["Retrait ",["symbole"]],"Wrong Network":"Mauvais rĂ©seau","YAE":"YAE","You are entering Isolation mode":"Vous entrez en mode Isolation","You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.":"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.","You can not switch usage as collateral mode for this currency, because it will cause collateral call":"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraĂźnera un appel de garantie","You can not use this currency as collateral":"Vous ne pouvez pas utiliser cette devise comme garantie","You can not withdraw this amount because it will cause collateral call":"Vous ne pouvez pas retirer ce montant car cela entraĂźnera un appel de garantie","You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.":"Vous ne pouvez retirer vos actifs du module de sĂ©curitĂ© qu'aprĂšs la fin de la pĂ©riode de refroidissement et que la fenĂȘtre de retrait est active.","You can report incident to our <0>Discord or<1>Github.":"Vous pouvez signaler un incident sur notre <0>Discord ou<1>Github.","You cancelled the transaction.":"Vous avez annulĂ© la transaction.","You did not participate in this proposal":"Vous n'avez pas participĂ© Ă  cette proposition","You do not have supplies in this currency":"Vous n'avez pas de fournitures dans cette devise","You don't have any bridge transactions":"You don't have any bridge transactions","You don’t have enough funds in your wallet to repay the full amount. If you proceed to repay with your current amount of funds, you will still have a small borrowing position in your dashboard.":"Vous n'avez pas assez de fonds dans votre portefeuille pour rembourser le montant total. Si vous continuez Ă  rembourser avec votre montant actuel de fonds, vous aurez toujours une petite position d'emprunt dans votre tableau de bord.","You have no AAVE/stkAAVE/aAave balance to delegate.":"You have no AAVE/stkAAVE/aAave balance to delegate.","You may borrow up to <0/> GHO at <1/> (max discount)":"Vous pouvez emprunter jusqu’à GHO Ă  <0/> <1/> (rabais maximum)","You may enter a custom amount in the field.":"Vous pouvez saisir un montant personnalisĂ© dans le champ.","You switched to {0} rate":["Vous ĂȘtes passĂ© au tarif ",["0"]],"You unstake here":"Vous unstakĂ© ici","You voted {0}":["Vous avez votĂ© ",["0"]],"You will exit isolation mode and other tokens can now be used as collateral":"Vous quitterez le mode d'isolement et d'autres jetons peuvent dĂ©sormais ĂȘtre utilisĂ©s comme collatĂ©ral","You {action} <0/> {symbol}":["Vous ",["action"]," <0/> ",["symbole"]],"You've successfully switched borrow position.":"Vous avez rĂ©ussi Ă  changer de position d’emprunt.","You've successfully switched tokens.":"Vous avez rĂ©ussi Ă  changer de jeton.","You've successfully withdrew & switched tokens.":"Vous avez retirĂ© et Ă©changĂ© des jetons avec succĂšs.","Your balance is lower than the selected amount.":"Votre solde est infĂ©rieur au montant sĂ©lectionnĂ©.","Your borrows":"Vos emprunts","Your current loan to value based on your collateral supplied.":"Votre prĂȘt actuel Ă  la valeur en fonction de votre collatĂ©ral fournie.","Your health factor and loan to value determine the assurance of your collateral. To avoid liquidations you can supply more collateral or repay borrow positions.":"Votre facteur de santĂ© et votre prĂȘt Ă  la valeur dĂ©terminent l'assurance de votre collatĂ©ral. Pour Ă©viter les liquidations, vous pouvez fournir plus de garanties ou rembourser les positions d'emprunt.","Your info":"Vos informations","Your proposition power is based on your AAVE/stkAAVE balance and received delegations.":"Votre pouvoir de proposition est basĂ© sur votre solde AAVE/stkAAVE et les dĂ©lĂ©gations reçues.","Your reward balance is 0":"Votre solde de rĂ©compenses est de 0","Your supplies":"Vos ressources","Your voting info":"Vos informations de vote","Your voting power is based on your AAVE/stkAAVE balance and received delegations.":"Votre pouvoir de vote est basĂ© sur votre solde AAVE/stkAAVE et les dĂ©lĂ©gations reçues.","Your {name} wallet is empty. Purchase or transfer assets or use <0>{0} to transfer your {network} assets.":["Votre ",["name"]," Le portefeuille est vide. Acheter ou transfĂ©rer des actifs ou utiliser <0>",["0"]," pour transfĂ©rer votre ",["network"]," actif."],"Your {name} wallet is empty. Purchase or transfer assets.":["Votre ",["name"]," Le portefeuille est vide. Acheter ou transfĂ©rer des actifs."],"Your {networkName} wallet is empty. Get free test assets at":["Votre ",["networkName"]," Le portefeuille est vide. Obtenez des ressources de test gratuites Ă  l’adresse suivante :"],"Your {networkName} wallet is empty. Get free test {0} at":["Votre ",["networkName"]," Le portefeuille est vide. Obtenir un test gratuit ",["0"]," Ă "],"Zero address not valid":"Adresse zĂ©ro non-valide","about SuperFest.":"about SuperFest.","and about SPK program":"and about SPK program","assets":"actifs","blocked activities":"ActivitĂ©s bloquĂ©es","copy the error":"copier l'erreur","disabled":"handicapĂ©","documentation":"documentation","enabled":"ActivĂ©","ends":"Prend fin","for":"pour","of":"de","on":"sur","please check that the amount you want to supply is not currently being used for staking. If it is being used for staking, your transaction might fail.":"veuillez vĂ©rifier que le montant que vous souhaitez fournir n'est pas actuellement utilisĂ© pour le staking. S'il est utilisĂ© pour le staking, votre transaction peut Ă©chouer.","repaid":"RemboursĂ©","stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.":"Les stETH fournis en garantie continueront d’accumuler des rĂ©compenses de staking fournies par les rebasages quotidiens.","stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: {0}":["Les tokens stETH seront migrĂ©s vers Wrapped stETH Ă  l’aide du wrapper Lido Protocol, ce qui entraĂźne une modification de l’équilibre de l’offre aprĂšs la migration : ",["0"]],"staking view":"vue de staking","starts":"Commence","stkAAVE holders get a discount on GHO borrow rate":"Les dĂ©tenteurs de stkAAVE bĂ©nĂ©ficient d’une rĂ©duction sur le taux d’emprunt GHO","to":"À","tokens is not the same as staking them. If you wish to stake your":"tokens n'est pas la mĂȘme chose que de les staker . Si vous souhaitez staker votre","tokens, please go to the":"tokens, veuillez vous rendre sur","withdrew":"RetirĂ©","{0}":[["0"]],"{0} Balance":[["0"]," Balance"],"{0} Faucet":[["0"]," Faucet"],"{0} on-ramp service is provided by External Provider and by selecting you agree to Terms of the Provider. Your access to the service might be reliant on the External Provider being operational.":[["0"]," Le service de rampe d’accĂšs est fourni par le fournisseur externe et, en le sĂ©lectionnant, vous acceptez les conditions du fournisseur. Votre accĂšs au service peut dĂ©pendre de l’opĂ©rationnalitĂ© du fournisseur externe."],"{0}{name}":[["0"],["name"]],"{currentMethod}":[["currentMethod"]],"{d}d":[["d"],"d"],"{h}h":[["h"],"h"],"{label}":[["label"]],"{m}m":[["m"],"m"],"{networkName} Faucet":[["networkName"]," Robinet"],"{notifyText}":[["notifyText"]],"{numSelected}/{numAvailable} assets selected":[["numSelected"],"/",["numAvailable"]," Actifs sĂ©lectionnĂ©s"],"{stepName}":[["stepName"]],"{s}s":[["s"],"s"],"{title}":[["title"]],"{tooltipText}":[["tooltipText"]]}}; \ No newline at end of file diff --git a/src/locales/fr/messages.po b/src/locales/fr/messages.po index 6c95f64189..1004851877 100644 --- a/src/locales/fr/messages.po +++ b/src/locales/fr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: aave-interface\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-11-27 18:06\n" +"PO-Revision-Date: 2024-12-11 18:06\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -1006,7 +1006,7 @@ msgid "Efficiency mode (E-Mode)" msgstr "Mode efficacitĂ© (E-Mode)" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." +msgid "Eligible for the Merit program." msgstr "" #: src/layouts/FeedbackDialog.tsx diff --git a/src/locales/ru/messages.po b/src/locales/ru/messages.po index cd9a75f6cc..10c9a2ee87 100644 --- a/src/locales/ru/messages.po +++ b/src/locales/ru/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: aave-interface\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-11-27 18:06\n" +"PO-Revision-Date: 2024-12-11 18:06\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -1006,7 +1006,7 @@ msgid "Efficiency mode (E-Mode)" msgstr "Đ Đ”Đ¶ĐžĐŒ ŃŃ„Ń„Đ”ĐșтоĐČĐœĐŸŃŃ‚Đž (E-Mode)" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." +msgid "Eligible for the Merit program." msgstr "" #: src/layouts/FeedbackDialog.tsx diff --git a/src/locales/zh/messages.po b/src/locales/zh/messages.po index ad3b316513..5c7d93498b 100644 --- a/src/locales/zh/messages.po +++ b/src/locales/zh/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: aave-interface\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-11-27 18:06\n" +"PO-Revision-Date: 2024-12-11 18:06\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -1006,7 +1006,7 @@ msgid "Efficiency mode (E-Mode)" msgstr "æ•ˆçŽ‡æšĄćŒïŒˆE-Mode" #: src/components/incentives/MeritIncentivesTooltipContent.tsx -msgid "Eligible for the merit program." +msgid "Eligible for the Merit program." msgstr "" #: src/layouts/FeedbackDialog.tsx