From 2d03d1ce346c8b78928e5714c1f4f4439f07f7dc Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 08:14:21 +0900 Subject: [PATCH 01/39] feat(theme): add figma color tokens and wire monochrome MUI theme --- src/components/icons/ChevronUpDownIcon.tsx | 27 +++ src/utils/figmaColors.ts | 182 +++++++++++++++++++++ src/utils/theme.tsx | 135 +++++++++------ 3 files changed, 295 insertions(+), 49 deletions(-) create mode 100644 src/components/icons/ChevronUpDownIcon.tsx create mode 100644 src/utils/figmaColors.ts diff --git a/src/components/icons/ChevronUpDownIcon.tsx b/src/components/icons/ChevronUpDownIcon.tsx new file mode 100644 index 0000000000..1e7ab8bb6d --- /dev/null +++ b/src/components/icons/ChevronUpDownIcon.tsx @@ -0,0 +1,27 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Double-chevron (up/down) dropdown indicator. Uses `currentColor` so the color +// comes from the consumer (e.g. a palette token via the `color` prop / sx). +export const ChevronUpDownIcon = ({ sx, ...rest }: SvgIconProps) => { + return ( + + + + + ); +}; diff --git a/src/utils/figmaColors.ts b/src/utils/figmaColors.ts new file mode 100644 index 0000000000..f8602eed27 --- /dev/null +++ b/src/utils/figmaColors.ts @@ -0,0 +1,182 @@ +/** + * Figma color tokens — same names as the old figma.scss `$colors-light` / `$colors-dark` maps. + * + * Import into src/utils/theme.tsx and reference when building the palette, e.g.: + * import { figmaColor } from './figmaColors'; + * // ...inside getDesignTokens(mode): + * text: { primary: figmaColor(mode, 'fg-1') } + * + * Or use the maps directly with the theme's getColor helper: + * import { figmaLight, figmaDark } from './figmaColors'; + * primary: { main: getColor(figmaLight['fg-1'], figmaDark['fg-1']) } + */ +export const figmaLight = { + 'bg-max': '#ffffff', + 'bg-1': '#fafafa', + 'bg-2': '#fcfcfc', + 'bg-3': '#fcfbfb', + 'bg-4': '#f6f7f4', + 'bg-5': '#f6f5f5', + 'bg-6': '#f2efef', + 'border-0': 'rgba(0, 0, 0, 0.06)', + 'border-1': 'rgba(0, 0, 0, 0.08)', + 'border-2': 'rgba(0, 0, 0, 0.12)', + 'fg-max': '#000000', + 'fg-1': '#201d1d', + 'fg-2': '#666666', + 'fg-3': '#858585', + 'fg-4': '#bcbbbb', + 'fg-5': '#cfcece', + selected: 'rgba(46, 15, 15, 0.04)', + 'blue-1': '#1a88f8', + 'blue-2': '#48abff', + 'blue-3': '#a9e7ff', + 'yellow-1': '#ffb200', + 'yellow-2': '#ffd631', + 'yellow-3': '#fff798', + 'red-1': '#f24900', + 'red-2': '#ff8947', + 'red-3': '#ffc693', + 'purple-1': '#9391f7', + 'purple-2': '#bcbbff', + 'purple-3': '#e2e0ff', + 'green-1': '#1f807b', + 'green-2': '#63bbb6', + 'green-3': '#9debe7', + 'cyan-1': '#6bcef5', + 'cyan-2': '#b5e7fa', + 'cyan-3': '#dff6ff', + 'navy-1': '#1c4886', + 'navy-2': '#6188c0', + 'navy-3': '#b0d3ff', + 'shadow-low': 'rgba(0, 0, 0, 0.02)', + 'shadow-medium': 'rgba(46, 15, 15, 0.05)', + 'shadow-high': 'rgba(46, 15, 15, 0.07)', + 'shadow-strong': 'rgba(46, 15, 15, 0.12)', + 'shadow-stroke-1': 'rgba(46, 15, 15, 0.08)', + 'shadow-stroke-2': 'rgba(0, 0, 0, 0.08)', + ethereum: '#25292e', + focus: 'rgba(26, 136, 248, 0.2)', + scrim: 'rgba(247, 246, 246, 0.8)', + 'data-red': '#ff383c', + 'data-orange': '#e2a48d', + 'data-yellow': '#e3da8d', + 'data-lime': '#c1e38d', + 'data-green': '#6dbc98', + 'data-teal': '#8de3cc', + 'data-blue': '#8dcfe3', + 'data-purple': '#bcbbff', + 'data-pink': '#e1a4d9', + 'button-hover': 'rgba(0, 0, 0, 0.025)', + 'data-green-gho': '#5dff93', + 'chain-testnet': '#8594ab', + 'chain-ethereum': '#25292e', + 'chain-polygon': '#8347e5', + 'chain-base': '#0052ff', + 'chain-optimism': '#e84142', + 'chain-lens': '#36a136', + 'chain-arbitrum': '#28a0f0', + 'chain-blast': '#ffc700', + 'chain-scroll': '#f8cf6e', + 'chain-worldchain': '#ff9d00', + 'chain-zksync': '#8c8dfe', +} as const; + +export const figmaDark = { + 'bg-max': '#0a0a0a', + 'bg-1': '#100f0f', + 'bg-2': '#1a1919', + 'bg-3': '#1f1e1e', + 'bg-4': '#2a2828', + 'bg-5': '#393737', + 'bg-6': '#494646', + 'border-0': 'rgba(255, 255, 255, 0.06)', + 'border-1': 'rgba(255, 255, 255, 0.08)', + 'border-2': 'rgba(255, 255, 255, 0.12)', + 'fg-max': '#ffffff', + 'fg-1': '#ffffff', + 'fg-2': '#bcbbbb', + 'fg-3': '#8f8e8e', + 'fg-4': '#636161', + 'fg-5': '#383838', + selected: 'rgba(255, 255, 255, 0.06)', + 'blue-1': '#1a88f8', + 'blue-2': '#48abff', + 'blue-3': '#a9e7ff', + 'yellow-1': '#ffc42c', + 'yellow-2': '#ffd631', + 'yellow-3': '#fff7ae', + 'red-1': '#f24900', + 'red-2': '#ff8947', + 'red-3': '#ffc693', + 'purple-1': '#9391f7', + 'purple-2': '#bcbbff', + 'purple-3': '#e2e0ff', + 'green-1': '#1f807b', + 'green-2': '#63bbb6', + 'green-3': '#9debe7', + 'cyan-1': '#6bcef5', + 'cyan-2': '#b5e7fa', + 'cyan-3': '#dff6ff', + 'navy-1': '#1c4886', + 'navy-2': '#6188c0', + 'navy-3': '#b0d3ff', + 'data-red': '#d34d63', + 'data-orange': '#e68662', + 'data-yellow': '#fdc75a', + 'data-lime': '#c1e38d', + 'data-green': '#66c399', + 'data-teal': '#8de3cc', + 'data-blue': '#88d5ed', + 'data-purple': '#a5a3ff', + 'data-pink': '#e1a4d9', + 'shadow-low': 'rgba(0, 0, 0, 0.15)', + 'shadow-medium': 'rgba(0, 0, 0, 0.3)', + 'shadow-high': 'rgba(0, 0, 0, 0.35)', + 'shadow-strong': 'rgba(0, 0, 0, 0.5)', + 'shadow-stroke-1': 'rgba(255, 255, 255, 0.08)', + 'shadow-stroke-2': 'rgba(255, 255, 255, 0.08)', + ethereum: '#434b55', + focus: 'rgba(85, 167, 251, 0.3)', + scrim: 'rgba(71, 67, 67, 0.8)', + 'button-hover': 'rgba(255, 255, 255, 0.025)', + 'table-item-hover-1': '#1e1d1d', + 'table-item-hover-2': '#282727', + 'data-green-gho': '#5dff93', + 'wallet-modal-more-networks-label': 'rgba(255, 255, 255, 0.4)', + 'chain-testnet': '#bfc6d1', + 'chain-ethereum': '#7e8287', + 'chain-polygon': '#8347e5', + 'chain-base': '#0052ff', + 'chain-optimism': '#e84142', + 'chain-lens': '#36a136', + 'chain-arbitrum': '#28a0f0', + 'chain-blast': '#ffc700', + 'chain-scroll': '#f8cf6e', + 'chain-worldchain': '#ff9d00', + 'chain-zksync': '#8c8dfe', +} as const; + +// Token names shared by both modes (light is the common subset; dark adds a few extras). +export type FigmaColorName = keyof typeof figmaLight; + +/** Resolve a single Figma color token for the active mode. */ +export const figmaColor = (mode: 'light' | 'dark', name: FigmaColorName) => + mode === 'dark' ? figmaDark[name] : figmaLight[name]; + +/** + * Pick the whole token map for a mode — the terse way to build the palette: + * const t = pickFigma(mode); + * text: { primary: t['fg-1'], secondary: t['fg-2'] } + */ +export const pickFigma = (mode: 'light' | 'dark') => (mode === 'dark' ? figmaDark : figmaLight); + +/** + * The shared "surface" box-shadow: a soft drop shadow plus a 1px ring that stands in + * for a border. Used by the secondary buttons, menus/paper, and the dashboard cards. + * `stroke` selects the ring token (cards use `shadow-stroke-1` for a slightly stronger hairline). + */ +export const figSurfaceShadow = ( + fig: Record, + stroke: FigmaColorName = 'shadow-stroke-2' +): string => `0px 2px 4px 0px ${fig['shadow-low']}, 0px 0px 0px 1px ${fig[stroke]}`; diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index adee35697d..0b160a8d00 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -1,6 +1,5 @@ import { CheckCircleIcon, - ChevronDownIcon, ExclamationCircleIcon, ExclamationIcon, InformationCircleIcon, @@ -11,6 +10,29 @@ import { createTheme } from '@mui/material/styles'; // @ts-ignore import { ColorPartial } from '@mui/material/styles/createPalette'; import React from 'react'; +import { ChevronUpDownIcon } from 'src/components/icons/ChevronUpDownIcon'; + +import { type FigmaColorName, figmaDark, figSurfaceShadow, pickFigma } from './figmaColors'; + +/** + * Secondary "white pill" style shared by the `surface` and `outlined` button variants + * (and kept in sync between them). White fill, a hairline ring instead of a border, and + * a subtle fill shift on hover. The ring is re-asserted on hover because the global + * `disableElevation` default otherwise strips box-shadow in those states. + */ +const secondaryPillStyle = (fig: Record) => ({ + color: fig['fg-1'], + backgroundColor: fig['bg-1'], + border: 'none', + boxShadow: figSurfaceShadow(fig), + '& .MuiButton-startIcon': { + color: fig['fg-3'], + }, + '&:hover, &.Mui-focusVisible': { + backgroundColor: fig['bg-3'], + boxShadow: figSurfaceShadow(fig), + }, +}); const theme = createTheme(); const { @@ -43,6 +65,7 @@ declare module '@mui/material/styles/createPalette' { other: { standardInputLine: string; }; + fig: Record; } interface PaletteOptions { @@ -50,6 +73,7 @@ declare module '@mui/material/styles/createPalette' { aaveGradient: string; newGradient: string; }; + fig?: Record; } } @@ -128,6 +152,8 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { const getColor = (lightColor: string, darkColor: string) => mode === 'dark' ? darkColor : lightColor; + const t = pickFigma(mode); // ← the one line of setup + return { breakpoints: { keys: ['xs', 'xsm', 'sm', 'md', 'lg', 'xl', 'xxl'], @@ -135,11 +161,12 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { }, palette: { mode, + fig: t, primary: { - main: getColor('#383D51', '#EAEBEF'), - light: getColor('#62677B', '#F1F1F3'), - dark: getColor('#292E41', '#D2D4DC'), - contrast: getColor('#FFFFFF', '#0F121D'), + main: t['fg-1'], + light: t['fg-2'], + dark: t['fg-max'], + contrastText: t['bg-1'], }, secondary: { main: getColor('#FF607B', '#F48FB1'), @@ -147,56 +174,56 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { dark: getColor('#B34356', '#AA647B'), }, error: { - main: getColor('#BC0000B8', '#F44336'), + main: t['red-1'], light: getColor('#D26666', '#E57373'), dark: getColor('#BC0000', '#D32F2F'), '100': getColor('#4F1919', '#FBB4AF'), // for alert text '200': getColor('#F9EBEB', '#2E0C0A'), // for alert background }, warning: { - main: getColor('#F89F1A', '#FFA726'), + main: t['yellow-1'], light: getColor('#FFCE00', '#FFB74D'), dark: getColor('#C67F15', '#F57C00'), '100': getColor('#63400A', '#FFDCA8'), // for alert text '200': getColor('#FEF5E8', '#301E04'), // for alert background }, info: { - main: getColor('#0062D2', '#29B6F6'), + main: t['blue-1'], light: getColor('#0062D2', '#4FC3F7'), dark: getColor('#002754', '#0288D1'), '100': getColor('#002754', '#A9E2FB'), // for alert text '200': getColor('#E5EFFB', '#071F2E'), // for alert background }, success: { - main: getColor('#4CAF50', '#66BB6A'), + main: t['green-1'], light: getColor('#90FF95', '#90FF95'), dark: getColor('#318435', '#388E3C'), '100': getColor('#1C4B1E', '#C2E4C3'), // for alert text '200': getColor('#ECF8ED', '#0A130B'), // for alert background }, text: { - primary: getColor('#303549', '#F1F1F3'), - secondary: getColor('#62677B', '#A5A8B6'), - disabled: getColor('#D2D4DC', '#62677B'), - muted: getColor('#A5A8B6', '#8E92A3'), + primary: t['fg-1'], + secondary: t['fg-2'], + disabled: t['fg-4'], + muted: t['fg-3'], highlight: getColor('#383D51', '#C9B3F9'), }, background: { - default: getColor('#F1F1F3', '#1B2030'), - paper: getColor('#FFFFFF', '#292E41'), - surface: getColor('#F7F7F9', '#383D51'), - surface2: getColor('#F9F9FB', '#383D51'), - header: getColor('#2B2D3C', '#1B2030'), - disabled: getColor('#EAEBEF', '#EBEBEF14'), - }, - divider: getColor('#EAEBEF', '#EBEBEF14'), + default: t['bg-5'], + paper: t['bg-1'], + surface: t['bg-2'], + surface2: t['bg-3'], + header: t['bg-1'], + disabled: t['bg-6'], + }, + divider: t['border-2'], action: { - active: getColor('#8E92A3', '#EBEBEF8F'), - hover: getColor('#F1F1F3', '#EBEBEF14'), - selected: getColor('#EAEBEF', '#EBEBEF29'), + active: t['fg-3'], + hover: t['button-hover'], + selected: t['selected'], disabled: getColor('#BBBECA', '#EBEBEF4D'), disabledBackground: getColor('#EAEBEF', '#EBEBEF1F'), - focus: getColor('#F1F1F3', '#EBEBEF1F'), + focus: t['focus'], }, other: { standardInputLine: getColor('#383D511F', '#EBEBEF6B'), @@ -290,7 +317,8 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { buttonM: { fontFamily: FONT, fontWeight: 500, - lineHeight: pxToRem(24), + letterSpacing: '-0.00563rem', + lineHeight: '1.25rem', fontSize: pxToRem(14), }, buttonS: { @@ -386,7 +414,7 @@ export function getThemedComponents(theme: Theme) { MuiOutlinedInput: { styleOverrides: { root: { - borderRadius: '6px', + borderRadius: '8px', borderColor: theme.palette.divider, '&:hover .MuiOutlinedInput-notchedOutline': { borderColor: '#CBCDD8', @@ -415,7 +443,7 @@ export function getThemedComponents(theme: Theme) { }, styleOverrides: { root: { - borderRadius: '4px', + borderRadius: '8px', }, sizeLarge: { ...theme.typography.buttonL, @@ -431,22 +459,16 @@ export function getThemedComponents(theme: Theme) { }, }, variants: [ + // Secondary "white pill" — shared by `surface` (header Swap/Bridge/wallet) + // and `outlined` (All Categories / Details / Cooldown). Keep the two in sync. { props: { variant: 'surface' }, - style: { - color: theme.palette.common.white, - border: '1px solid', - borderColor: '#EBEBED1F', - backgroundColor: '#383D51', - '&:hover, &.Mui-focusVisible': { - backgroundColor: theme.palette.background.header, - }, - }, + style: secondaryPillStyle(theme.palette.fig), }, { props: { variant: 'gradient' }, style: { - color: theme.palette.common.white, + color: figmaDark['fg-1'], background: theme.palette.gradients.aaveGradient, transition: 'all 0.2s ease', '&:hover, &.Mui-focusVisible': { @@ -458,8 +480,21 @@ export function getThemedComponents(theme: Theme) { { props: { color: 'primary', variant: 'outlined' }, style: { - background: theme.palette.background.surface, - borderColor: theme.palette.divider, + ...secondaryPillStyle(theme.palette.fig), + '&.Mui-disabled': { + color: theme.palette.fig['fg-3'], + border: 'none', + boxShadow: figSurfaceShadow(theme.palette.fig), + }, + }, + }, + { + props: { variant: 'contained', color: 'primary' }, + style: { + backgroundColor: theme.palette.fig['fg-max'], + '&:hover, &.Mui-focusVisible': { + backgroundColor: theme.palette.fig['fg-1'], + }, }, }, ], @@ -558,15 +593,15 @@ export function getThemedComponents(theme: Theme) { MuiPaper: { styleOverrides: { root: { - borderRadius: '4px', + borderRadius: '8px', }, }, variants: [ { props: { variant: 'outlined' }, style: { - border: `1px solid ${theme.palette.divider}`, - boxShadow: '0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1)', + border: 'none', + boxShadow: figSurfaceShadow(theme.palette.fig), background: theme.palette.mode === 'light' ? theme.palette.background.paper @@ -643,7 +678,7 @@ export function getThemedComponents(theme: Theme) { }, }, thumb: { - color: theme.palette.common.white, + color: figmaDark['fg-1'], borderRadius: '6px', width: '16px', height: '16px', @@ -801,6 +836,7 @@ export function getThemedComponents(theme: Theme) { fontWeight: 400, fontSize: pxToRem(14), minWidth: '375px', + backgroundColor: theme.palette.fig['bg-max'], '> div:first-of-type': { minHeight: '100vh', display: 'flex', @@ -819,17 +855,18 @@ export function getThemedComponents(theme: Theme) { MuiSelect: { defaultProps: { IconComponent: (props) => ( - - - + ), }, styleOverrides: { outlined: { - backgroundColor: theme.palette.background.surface, + backgroundColor: theme.palette.fig['bg-1'], ...theme.typography.buttonM, padding: '6px 12px', - color: theme.palette.primary.light, + color: theme.palette.fig['fg-1'], }, }, }, From 2fcdde0748053b71059f79670c0bf58b05e30c4f Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 08:14:45 +0900 Subject: [PATCH 02/39] feat(header): restyle app header, nav, and settings for monochrome theme --- src/components/icons/AaveLogo.tsx | 22 ++ src/components/icons/BridgeIcon.tsx | 9 + src/components/icons/SettingsIcon.tsx | 15 ++ src/components/icons/SwapIcon.tsx | 32 +++ src/layouts/AppHeader.tsx | 294 ++++++++++++------------- src/layouts/SettingsMenu.tsx | 10 +- src/layouts/components/NavItems.tsx | 59 +---- src/layouts/components/StakingMenu.tsx | 30 +-- src/layouts/components/navLinkSx.ts | 37 ++++ 9 files changed, 276 insertions(+), 232 deletions(-) create mode 100644 src/components/icons/AaveLogo.tsx create mode 100644 src/components/icons/BridgeIcon.tsx create mode 100644 src/components/icons/SettingsIcon.tsx create mode 100644 src/components/icons/SwapIcon.tsx create mode 100644 src/layouts/components/navLinkSx.ts diff --git a/src/components/icons/AaveLogo.tsx b/src/components/icons/AaveLogo.tsx new file mode 100644 index 0000000000..849e8b279c --- /dev/null +++ b/src/components/icons/AaveLogo.tsx @@ -0,0 +1,22 @@ +import { SVGProps } from 'react'; + +// Aave wordmark. Fills with `currentColor` so it takes the color of its parent +// (e.g. a palette token) — set `color` on the wrapping element to theme it. +export const AaveLogo = (props: SVGProps) => ( + + + + + + + + + +); diff --git a/src/components/icons/BridgeIcon.tsx b/src/components/icons/BridgeIcon.tsx new file mode 100644 index 0000000000..43e4e92398 --- /dev/null +++ b/src/components/icons/BridgeIcon.tsx @@ -0,0 +1,9 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Bridge (GHO) icon. Fills with `currentColor` so it inherits the consumer's color +// (e.g. a button's start-icon color, or a palette token via `color`/sx). +export const BridgeIcon = ({ sx, ...rest }: SvgIconProps) => ( + + + +); diff --git a/src/components/icons/SettingsIcon.tsx b/src/components/icons/SettingsIcon.tsx new file mode 100644 index 0000000000..42569b7cec --- /dev/null +++ b/src/components/icons/SettingsIcon.tsx @@ -0,0 +1,15 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Settings gear. Strokes with `currentColor` so it inherits the consumer's color +// (e.g. a palette token via `color`/sx). +export const SettingsIcon = ({ sx, ...rest }: SvgIconProps) => ( + + + + +); diff --git a/src/components/icons/SwapIcon.tsx b/src/components/icons/SwapIcon.tsx new file mode 100644 index 0000000000..3bc7c26654 --- /dev/null +++ b/src/components/icons/SwapIcon.tsx @@ -0,0 +1,32 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Swap / switch arrows. Strokes with `currentColor` so it inherits the consumer's color +// (e.g. a button's start-icon color, or a palette token via `color`/sx). +export const SwapIcon = ({ sx, ...rest }: SvgIconProps) => ( + + + + + + +); diff --git a/src/layouts/AppHeader.tsx b/src/layouts/AppHeader.tsx index 9902de7bfb..16519e1a9c 100644 --- a/src/layouts/AppHeader.tsx +++ b/src/layouts/AppHeader.tsx @@ -1,13 +1,10 @@ -import { - InformationCircleIcon, - SparklesIcon, - SwitchHorizontalIcon, -} from '@heroicons/react/outline'; +import { InformationCircleIcon } from '@heroicons/react/outline'; import { Trans } from '@lingui/macro'; import { Badge, Button, CircularProgress, + Container, NoSsr, Slide, styled, @@ -22,6 +19,9 @@ import * as React from 'react'; import { useEffect, useState } from 'react'; import { AvatarSize } from 'src/components/Avatar'; import { ContentWithTooltip } from 'src/components/ContentWithTooltip'; +import { AaveLogo } from 'src/components/icons/AaveLogo'; +import { BridgeIcon } from 'src/components/icons/BridgeIcon'; +import { SwapIcon } from 'src/components/icons/SwapIcon'; import { UserDisplay } from 'src/components/UserDisplay'; import { ConnectWalletButton } from 'src/components/WalletConnection/ConnectWalletButton'; import { useModalContext } from 'src/hooks/useModal'; @@ -32,7 +32,6 @@ import { ENABLE_TESTNET, FORK_ENABLED, isFeatureEnabled } from 'src/utils/market import { useShallow } from 'zustand/shallow'; import { Link } from '../components/primitives/Link'; -import { uiConfig } from '../uiConfig'; import { NavItems } from './components/NavItems'; import { MobileMenu } from './MobileMenu'; import { SettingsMenu } from './SettingsMenu'; @@ -88,6 +87,12 @@ function HideOnScroll({ children }: Props) { const SWITCH_VISITED_KEY = 'switchVisited'; +// Dev-only environment badges (testnet / fork) — intentionally off-brand magenta to stand out. +const envBadgeSx = { + backgroundColor: '#B6509E', + '&:hover, &.Mui-focusVisible': { backgroundColor: 'rgba(182, 80, 158, 0.7)' }, +}; + export function AppHeader() { const { breakpoints } = useTheme(); const md = useMediaQuery(breakpoints.down('md')); @@ -125,7 +130,7 @@ export function AppHeader() { // eslint-disable-next-line react-hooks/exhaustive-deps }, [md]); - const headerHeight = 48; + const headerHeight = 72; const toggleMobileMenu = (state: boolean) => { if (md) setMobileDrawerOpen(state); @@ -204,171 +209,158 @@ export function AppHeader() { top: 0, transition: theme.transitions.create('top'), zIndex: theme.zIndex.appBar, - bgcolor: theme.palette.background.header, - padding: { - xs: mobileMenuOpen || walletWidgetOpen ? '8px 20px' : '8px 8px 8px 20px', - xsm: '8px 20px', - }, + bgcolor: theme.palette.fig['bg-2'], display: 'flex', - alignItems: 'center', - flexDirection: 'space-between', - boxShadow: 'inset 0px -1px 0px rgba(242, 243, 247, 0.16)', + flexDirection: 'column', + justifyContent: 'center', + boxShadow: `inset 0px -1px 0px ${theme.palette.fig['border-0']}`, })} > - setMobileMenuOpen(false)} > - AAVE - - - {ENABLE_TESTNET && ( - + setMobileMenuOpen(false)} + > + + + + {ENABLE_TESTNET && ( + + + + )} + + + {FORK_ENABLED && currentMarketData?.isFork && ( + + + + )} + + + + + + + + + + - - )} - - - {FORK_ENABLED && currentMarketData?.isFork && ( - + + + + + - - )} - - - - - - - + + - - + {readOnlyMode ? ( - - - - - - - - - - {readOnlyMode ? ( - - ) : ( - - )} - - - - + ) : ( + + )} - {!walletWidgetOpen && ( - - + + - )} + + {!walletWidgetOpen && ( + + + + )} + ); diff --git a/src/layouts/SettingsMenu.tsx b/src/layouts/SettingsMenu.tsx index cd5a6a98f0..fb9cb4896e 100644 --- a/src/layouts/SettingsMenu.tsx +++ b/src/layouts/SettingsMenu.tsx @@ -1,7 +1,7 @@ -import { CogIcon } from '@heroicons/react/solid'; import { Trans } from '@lingui/macro'; -import { Button, ListItemText, Menu, MenuItem, SvgIcon, Typography } from '@mui/material'; +import { Button, ListItemText, Menu, MenuItem, Typography } from '@mui/material'; import React, { useState } from 'react'; +import { SettingsIcon } from 'src/components/icons/SettingsIcon'; import { useModalContext } from 'src/hooks/useModal'; import { DEFAULT_LOCALE } from 'src/libs/LanguageProvider'; import { useRootStore } from 'src/store/root'; @@ -71,11 +71,9 @@ export function SettingsMenu() { aria-expanded={settingsOpen ? 'true' : undefined} aria-haspopup="true" onClick={handleSettingsClick} - sx={{ p: '7px 8px', minWidth: 'unset', ml: 2 }} + sx={{ p: '0.5rem', minWidth: 'unset', ml: 2 }} > - - - + ({ fontSize: '20px', color: theme.palette.fig['fg-2'] })} /> { component={Link} href={item.link} variant="h2" - color="#F1F1F3" + color={figmaDark['fg-1']} sx={{ width: '100%', p: 4 }} onClick={() => handleClick(item.title, true)} > @@ -67,27 +68,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} onClick={() => handleClick(item.title, false)} href={item.link} - sx={(theme) => ({ - color: '#F1F1F3', - p: '6px 8px', - position: 'relative', - '.active&:after, &:hover&:after': { - transform: 'scaleX(1)', - transformOrigin: 'bottom left', - }, - '&:after': { - content: "''", - position: 'absolute', - width: '100%', - transform: 'scaleX(0)', - height: '2px', - bottom: '-6px', - left: '0', - background: theme.palette.gradients.aaveGradient, - transformOrigin: 'bottom right', - transition: 'transform 0.25s ease-out', - }, - })} + sx={(theme) => navLinkSx(theme, '1.625rem 0.88rem')} > {i18n._(item.title)} @@ -107,7 +88,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={ROUTES.sGHO} variant="h2" - color="#F1F1F3" + color={figmaDark['fg-1']} sx={{ width: '100%', p: 4 }} onClick={() => handleClick('sGHO', true)} > @@ -118,27 +99,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} onClick={() => handleClick('sGHO', false)} href={ROUTES.sGHO} - sx={(theme) => ({ - color: '#F1F1F3', - p: '6px 8px', - position: 'relative', - '.active&:after, &:hover&:after': { - transform: 'scaleX(1)', - transformOrigin: 'bottom left', - }, - '&:after': { - content: "''", - position: 'absolute', - width: '100%', - transform: 'scaleX(0)', - height: '2px', - bottom: '-6px', - left: '0', - background: theme.palette.gradients.aaveGradient, - transformOrigin: 'bottom right', - transition: 'transform 0.25s ease-out', - }, - })} + sx={(theme) => navLinkSx(theme, '1.5rem 0.5rem')} > Savings @@ -158,7 +119,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={ROUTES.staking} variant="h2" - color="#F1F1F3" + color={figmaDark['fg-1']} sx={{ width: '100%', p: 4 }} onClick={() => handleClick('Staking', true)} > @@ -182,7 +143,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={ROUTES.safetyModule} variant="h2" - color="#F1F1F3" + color={figmaDark['fg-1']} sx={{ width: '100%', p: 4 }} onClick={() => handleClick('Safety Module', true)} > @@ -190,10 +151,6 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { )} - - - - ); }; diff --git a/src/layouts/components/StakingMenu.tsx b/src/layouts/components/StakingMenu.tsx index d46cd7c7e5..7fe282b5a2 100644 --- a/src/layouts/components/StakingMenu.tsx +++ b/src/layouts/components/StakingMenu.tsx @@ -6,8 +6,10 @@ import MenuItem from '@mui/material/MenuItem'; import React from 'react'; import { useRootStore } from 'src/store/root'; import { NAV_BAR } from 'src/utils/events'; +import { figmaDark } from 'src/utils/figmaColors'; import { Link, ROUTES } from '../../components/primitives/Link'; +import { navLinkSx } from './navLinkSx'; interface StakingMenuProps { isMobile?: boolean; @@ -42,7 +44,7 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { component={Link} href={ROUTES.staking} variant="h2" - color="#F1F1F3" + color={figmaDark['fg-1']} sx={{ width: '100%', p: 4 }} onClick={() => handleMenuItemClick('Staking')} > @@ -52,7 +54,7 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { component={Link} href={ROUTES.safetyModule} variant="h2" - color="#F1F1F3" + color={figmaDark['fg-1']} sx={{ width: '100%', p: 4, pl: 6 }} onClick={() => handleMenuItemClick('Safety Module')} > @@ -71,32 +73,12 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { aria-expanded={open ? 'true' : undefined} aria-haspopup="true" onClick={handleClick} - sx={(theme) => ({ - color: '#F1F1F3', - p: '6px 8px', - position: 'relative', - '.active&:after, &:hover&:after': { - transform: 'scaleX(1)', - transformOrigin: 'bottom left', - }, - '&:after': { - content: "''", - position: 'absolute', - width: '100%', - transform: 'scaleX(0)', - height: '2px', - bottom: '-6px', - left: '0', - background: theme.palette.gradients.aaveGradient, - transformOrigin: 'bottom right', - transition: 'transform 0.25s ease-out', - }, - })} + sx={(theme) => navLinkSx(theme, '1.5rem 0.5rem')} > Staking => ({ + color: theme.palette.fig['fg-3'], + letterSpacing: '-0.00563rem', + p: padding, + position: 'relative', + '.active&': { + color: theme.palette.fig['fg-1'], + }, + '&:hover': { + backgroundColor: 'transparent', + color: theme.palette.fig['fg-1'], + }, + '.active&:after, &:hover&:after': { + transform: 'scaleX(1)', + transformOrigin: 'bottom left', + }, + '&:after': { + content: "''", + position: 'absolute', + width: '100%', + transform: 'scaleX(0)', + height: '2px', + bottom: '0', + left: '0', + background: theme.palette.fig['purple-1'], + transformOrigin: 'bottom right', + transition: 'transform 0.25s ease-out', + }, +}); From b75df4ad5fc3efa88046ba0a454ffaab1846d8d8 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 08:15:19 +0900 Subject: [PATCH 03/39] feat(dropdowns): unify select and switcher chevrons and colors --- src/components/AssetCategoryMultiselect.tsx | 9 ++---- src/components/MarketSwitcher.tsx | 28 +++++++------------ .../Swap/inputs/shared/ExpirySelector.tsx | 16 +---------- .../Swap/inputs/shared/NetworkSelector.tsx | 16 +---------- .../umbrella/UmbrellaMarketSwitcher.tsx | 21 +++++--------- 5 files changed, 22 insertions(+), 68 deletions(-) diff --git a/src/components/AssetCategoryMultiselect.tsx b/src/components/AssetCategoryMultiselect.tsx index 731a66efa3..60b14df857 100644 --- a/src/components/AssetCategoryMultiselect.tsx +++ b/src/components/AssetCategoryMultiselect.tsx @@ -1,11 +1,9 @@ -import { ChevronDownIcon } from '@heroicons/react/outline'; import { Trans } from '@lingui/macro'; import { Box, Button, Checkbox, Popover, - SvgIcon, SxProps, Theme, Typography, @@ -13,6 +11,7 @@ import { useTheme, } from '@mui/material'; import { useEffect, useState } from 'react'; +import { ChevronUpDownIcon } from 'src/components/icons/ChevronUpDownIcon'; import { AssetCategory } from 'src/modules/markets/utils/assetCategories'; import { useRootStore } from 'src/store/root'; @@ -107,16 +106,14 @@ export const AssetCategoryMultiSelect = ({ )} - - - + /> { InputProps={{ startAdornment: ( - + @@ -564,14 +566,14 @@ export const MarketSwitcher = () => { borderRadius: '6px', height: '36px', '& fieldset': { - borderColor: '#EAEBEF', + borderColor: 'divider', }, }, '& .MuiOutlinedInput-input': { fontSize: '14px', letterSpacing: '0.15px', '&::placeholder': { - color: '#A5A8B6', + color: 'text.secondary', opacity: 1, }, }, @@ -784,7 +786,7 @@ export const MarketSwitcher = () => { variant={upToLG ? 'display1' : 'h1'} sx={{ fontSize: downToXSM ? '1.55rem' : undefined, - color: 'common.white', + color: 'text.primary', mr: 1, }} > @@ -821,17 +823,7 @@ export const MarketSwitcher = () => { V2 )} - - - + ({ ml: 1, color: theme.palette.fig['fg-3'] })} /> @@ -839,7 +831,7 @@ export const MarketSwitcher = () => { {marketBlurbs[currentMarket] && ( ( - - - - )} sx={{ '&.MuiInputBase-root': { border: 0, diff --git a/src/components/transactions/Swap/inputs/shared/NetworkSelector.tsx b/src/components/transactions/Swap/inputs/shared/NetworkSelector.tsx index 5ce1bb177e..da50d0feec 100644 --- a/src/components/transactions/Swap/inputs/shared/NetworkSelector.tsx +++ b/src/components/transactions/Swap/inputs/shared/NetworkSelector.tsx @@ -1,13 +1,4 @@ -import { ChevronDownIcon } from '@heroicons/react/outline'; -import { - Box, - FormControl, - MenuItem, - Select, - SelectChangeEvent, - SvgIcon, - Typography, -} from '@mui/material'; +import { Box, FormControl, MenuItem, Select, SelectChangeEvent, Typography } from '@mui/material'; import { MarketLogo } from 'src/components/MarketSwitcher'; import { SupportedNetworkWithChainId } from '../../helpers/shared/misc.helpers'; @@ -32,11 +23,6 @@ export const NetworkSelector = ({ native={false} value={String(selectedNetwork)} onChange={handleChange} - IconComponent={(props) => ( - - - - )} sx={{ '&.MuiInputBase-root': { border: 0, diff --git a/src/modules/umbrella/UmbrellaMarketSwitcher.tsx b/src/modules/umbrella/UmbrellaMarketSwitcher.tsx index 78d352f5aa..fa68ea2855 100644 --- a/src/modules/umbrella/UmbrellaMarketSwitcher.tsx +++ b/src/modules/umbrella/UmbrellaMarketSwitcher.tsx @@ -1,11 +1,9 @@ -import { ChevronDownIcon } from '@heroicons/react/outline'; import { Trans } from '@lingui/macro'; import { Box, BoxProps, ListItemText, MenuItem, - SvgIcon, TextField, Tooltip, Typography, @@ -13,9 +11,11 @@ import { useTheme, } from '@mui/material'; import React, { useState } from 'react'; +import { ChevronUpDownIcon } from 'src/components/icons/ChevronUpDownIcon'; import { useRootStore } from 'src/store/root'; import { BaseNetworkConfig } from 'src/ui-config/networksConfig'; import { DASHBOARD } from 'src/utils/events'; +import { figmaDark } from 'src/utils/figmaColors'; import { availableMarkets, CustomMarket, @@ -83,7 +83,7 @@ export const MarketLogo = ({ size, logo, testChainName, sx }: MarketLogoProps) = width: '16px', height: '16px', borderRadius: '50%', - color: 'common.white', + color: figmaDark['fg-1'], fontSize: '12px', lineHeight: '16px', display: 'flex', @@ -177,7 +177,7 @@ export const MarketSwitcher = () => { variant={upToLG ? 'display1' : 'h1'} sx={{ fontSize: downToXSM ? '1.55rem' : undefined, - color: 'common.white', + color: 'text.primary', mr: 1, }} > @@ -201,15 +201,9 @@ export const MarketSwitcher = () => { > V2 */} - - - + ({ ml: 1, color: theme.palette.fig['fg-3'] })} + /> @@ -239,7 +233,6 @@ export const MarketSwitcher = () => { py: 0, backgroundColor: 'transparent !important', }, - '.MuiSelect-icon': { color: '#F1F1F3' }, }, MenuProps: { anchorOrigin: { From 6e797631ac205e9e27ec2e2c020a358e70116635 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 08:15:34 +0900 Subject: [PATCH 04/39] feat(cards): restyle dashboard list card surface --- src/components/lists/ListWrapper.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/components/lists/ListWrapper.tsx b/src/components/lists/ListWrapper.tsx index 5b3d32eb1d..29f5bce23f 100644 --- a/src/components/lists/ListWrapper.tsx +++ b/src/components/lists/ListWrapper.tsx @@ -3,6 +3,7 @@ import { Box, BoxProps, Paper, PaperProps, Typography } from '@mui/material'; import { ReactNode, useState } from 'react'; import { useRootStore } from 'src/store/root'; import { DASHBOARD } from 'src/utils/events'; +import { figSurfaceShadow } from 'src/utils/figmaColors'; import { toggleLocalStorageClick } from '../../helpers/toggle-local-storage-click'; @@ -94,12 +95,15 @@ export const ListWrapper = ({ return ( ({ + mt: withTopMargin ? 4 : 0, + borderRadius: '10px', + backgroundColor: theme.palette.fig['bg-max'], + boxShadow: figSurfaceShadow(theme.palette.fig, 'shadow-stroke-1'), + }), + ...(paperSx ? (Array.isArray(paperSx) ? paperSx : [paperSx]) : []), + ]} > Date: Thu, 16 Jul 2026 08:15:48 +0900 Subject: [PATCH 05/39] refactor(tooltips): centralize on-dark text color and drop redundant common.white --- src/components/infoTooltips/DarkTooltip.tsx | 2 + .../Swap/details/CollateralSwapDetails.tsx | 4 +- .../Swap/details/DebtSwapDetails.tsx | 4 +- .../transactions/Swap/details/SwapDetails.tsx | 4 +- .../Swap/modals/result/SwapResultView.tsx | 4 +- .../LiquidationRiskParametresModal.tsx | 7 ++-- .../dashboard/lists/ListValueColumn.tsx | 5 ++- .../SupplyAssetsList/SupplyAssetsListItem.tsx | 5 ++- src/modules/history/HistoryFilterMenu.tsx | 6 ++- src/modules/history/PriceUnavailable.tsx | 3 +- src/modules/history/actions/ActionDetails.tsx | 41 ++++++------------- src/modules/staking/GhoStakingPanel.tsx | 12 +----- src/modules/staking/StakingPanel.tsx | 12 +----- 13 files changed, 43 insertions(+), 66 deletions(-) diff --git a/src/components/infoTooltips/DarkTooltip.tsx b/src/components/infoTooltips/DarkTooltip.tsx index 7442dbbc1b..788370fd30 100644 --- a/src/components/infoTooltips/DarkTooltip.tsx +++ b/src/components/infoTooltips/DarkTooltip.tsx @@ -1,4 +1,5 @@ import { Box, Tooltip, TooltipProps } from '@mui/material'; +import { figmaDark } from 'src/utils/figmaColors'; export const DarkTooltip = ({ title, @@ -36,6 +37,7 @@ export const DarkTooltip = ({ title={ + {sourceAmountAfterSwap.toString()} {userReserve.reserve.symbol} } @@ -275,7 +275,7 @@ export const ColalteralSwapDetails = ({ state }: { params: SwapParams; state: Sw /> + {targetAmountAfterSwap.toString()} {userTargetReserve.reserve.symbol} } diff --git a/src/components/transactions/Swap/details/DebtSwapDetails.tsx b/src/components/transactions/Swap/details/DebtSwapDetails.tsx index 0e107ddf3b..14492ef3ce 100644 --- a/src/components/transactions/Swap/details/DebtSwapDetails.tsx +++ b/src/components/transactions/Swap/details/DebtSwapDetails.tsx @@ -109,7 +109,7 @@ export const DebtSwapDetails = ({ /> + {sourceAmountAfterSwap.toString()} {state.sourceReserve.reserve.symbol} } @@ -159,7 +159,7 @@ export const DebtSwapDetails = ({ /> + {targetAmountAfterSwap.toString()} {state.destinationReserve.reserve.symbol} } diff --git a/src/components/transactions/Swap/details/SwapDetails.tsx b/src/components/transactions/Swap/details/SwapDetails.tsx index f5e41c6cc5..2a9cfc901a 100644 --- a/src/components/transactions/Swap/details/SwapDetails.tsx +++ b/src/components/transactions/Swap/details/SwapDetails.tsx @@ -138,7 +138,7 @@ export const IntentTxDetails = ({ /> + {buyAmount} {buyToken.symbol} } @@ -215,7 +215,7 @@ const MarketOrderTxDetails = ({ /> + {buyAmount} {buyToken.symbol} } diff --git a/src/components/transactions/Swap/modals/result/SwapResultView.tsx b/src/components/transactions/Swap/modals/result/SwapResultView.tsx index 83d7a734ad..84c7082b04 100644 --- a/src/components/transactions/Swap/modals/result/SwapResultView.tsx +++ b/src/components/transactions/Swap/modals/result/SwapResultView.tsx @@ -327,7 +327,7 @@ export const SwapTxSuccessView = ({ /> + {inAmount} {symbol} } @@ -367,7 +367,7 @@ export const SwapTxSuccessView = ({ /> + {outFinalAmount} {outSymbol} } diff --git a/src/modules/dashboard/LiquidationRiskParametresModal/LiquidationRiskParametresModal.tsx b/src/modules/dashboard/LiquidationRiskParametresModal/LiquidationRiskParametresModal.tsx index 8fc8e3ba34..f5866dedc4 100644 --- a/src/modules/dashboard/LiquidationRiskParametresModal/LiquidationRiskParametresModal.tsx +++ b/src/modules/dashboard/LiquidationRiskParametresModal/LiquidationRiskParametresModal.tsx @@ -2,6 +2,7 @@ import { Trans } from '@lingui/macro'; import { AlertColor, Typography } from '@mui/material'; import { useRootStore } from 'src/store/root'; import { GENERAL } from 'src/utils/events'; +import { figmaDark } from 'src/utils/figmaColors'; import { HealthFactorNumber } from '../../../components/HealthFactorNumber'; import { BasicModal } from '../../../components/primitives/BasicModal'; @@ -84,7 +85,7 @@ export const LiquidationRiskParametresInfoModal = ({ } bottomText={ @@ -108,8 +109,8 @@ export const LiquidationRiskParametresInfoModal = ({ value={loanToValue} percent variant="main12" - color="common.white" - symbolsColor="common.white" + color={figmaDark['fg-1']} + symbolsColor={figmaDark['fg-1']} /> } bottomText={ diff --git a/src/modules/dashboard/lists/ListValueColumn.tsx b/src/modules/dashboard/lists/ListValueColumn.tsx index beb7a10db2..fafe0a40f9 100644 --- a/src/modules/dashboard/lists/ListValueColumn.tsx +++ b/src/modules/dashboard/lists/ListValueColumn.tsx @@ -1,5 +1,6 @@ import { Box, Tooltip } from '@mui/material'; import { ReactNode } from 'react'; +import { figmaDark } from 'src/utils/figmaColors'; import { ListColumn, ListColumnProps } from '../../../components/lists/ListColumn'; import { FormattedNumber } from '../../../components/primitives/FormattedNumber'; @@ -73,14 +74,14 @@ export const ListValueColumn = ({ symbol="USD" variant="secondary14" sx={{ mb: '2px' }} - symbolsColor="common.white" + symbolsColor={figmaDark['fg-1']} compact={false} /> diff --git a/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx b/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx index 4f7023053a..4c56d9bbc4 100644 --- a/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx +++ b/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx @@ -30,6 +30,7 @@ import { useWrappedTokens } from 'src/hooks/useWrappedTokens'; import { useRootStore } from 'src/store/root'; import { DashboardReserve } from 'src/utils/dashboardSortUtils'; import { DASHBOARD } from 'src/utils/events'; +import { figmaDark } from 'src/utils/figmaColors'; import { isFeatureEnabled } from 'src/utils/marketsAndNetworksConfig'; import { showExternalIncentivesTooltip } from 'src/utils/utils'; @@ -192,7 +193,7 @@ export const SupplyAssetsListItemDesktop = ({ value={0} variant="secondary14" sx={{ mb: '2px' }} - symbolsColor="common.white" + symbolsColor={figmaDark['fg-1']} /> @@ -388,7 +389,7 @@ export const SupplyAssetsListItemMobile = ({ value={0} variant="secondary14" sx={{ mb: '2px' }} - symbolsColor="common.white" + symbolsColor={figmaDark['fg-1']} /> diff --git a/src/modules/history/HistoryFilterMenu.tsx b/src/modules/history/HistoryFilterMenu.tsx index f29114545c..972a128dfe 100644 --- a/src/modules/history/HistoryFilterMenu.tsx +++ b/src/modules/history/HistoryFilterMenu.tsx @@ -174,7 +174,7 @@ export const HistoryFilterMenu: React.FC = ({ {!allSelected && ( + Reset } @@ -190,7 +190,9 @@ export const HistoryFilterMenu: React.FC = ({ }} onClick={handleClearFilter} > - + + + )} diff --git a/src/modules/history/PriceUnavailable.tsx b/src/modules/history/PriceUnavailable.tsx index a27cb9b1ac..e2afd8d9ea 100644 --- a/src/modules/history/PriceUnavailable.tsx +++ b/src/modules/history/PriceUnavailable.tsx @@ -1,6 +1,7 @@ import { Trans } from '@lingui/macro'; import { Box } from '@mui/material'; import { FormattedNumber } from 'src/components/primitives/FormattedNumber'; +import { figmaDark } from 'src/utils/figmaColors'; export const PriceUnavailable = ({ value }: { value: number }) => { if (value > 0) { @@ -9,7 +10,7 @@ export const PriceUnavailable = ({ value }: { value: number }) => { compact compactThreshold={100000} symbol="USD" - symbolsColor="common.white" + symbolsColor={figmaDark['fg-1']} value={value} /> ); diff --git a/src/modules/history/actions/ActionDetails.tsx b/src/modules/history/actions/ActionDetails.tsx index 9d1bcf67f4..92a4733e61 100644 --- a/src/modules/history/actions/ActionDetails.tsx +++ b/src/modules/history/actions/ActionDetails.tsx @@ -146,19 +146,10 @@ export const ActionDetails = ({ wrap title={ - - ${amount.usd} - + ${amount.usd} - - - {reserve.underlyingToken.symbol} - + + {reserve.underlyingToken.symbol} } @@ -178,7 +169,7 @@ export const ActionDetails = ({ + {reserve.underlyingToken.name} ({reserve.underlyingToken.symbol}) } @@ -215,17 +206,14 @@ export const ActionDetails = ({ wrap title={ - - ${collateral.amount!.usd} - + ${collateral.amount!.usd} - + {collateral.reserve.underlyingToken.symbol} @@ -271,17 +259,14 @@ export const ActionDetails = ({ wrap title={ - - ${debtRepaid.amount.usd} - + ${debtRepaid.amount.usd} - + {debtRepaid.reserve.underlyingToken.symbol} @@ -337,7 +322,7 @@ export const ActionDetails = ({ + {reserve.underlyingToken.name} ({reserve.underlyingToken.symbol}) } @@ -382,7 +367,7 @@ export const ActionDetails = ({ /> + {formatUnits(swapTx.srcAmount, swapTx.underlyingSrcToken.decimals)}{' '} {formattedCowSwapSrcToken.symbol} @@ -404,7 +389,7 @@ export const ActionDetails = ({ + {formattedCowSwapSrcToken.name} ({formattedCowSwapSrcToken.symbol}) } @@ -427,7 +412,7 @@ export const ActionDetails = ({ /> + {formatUnits(swapTx.destAmount, swapTx.underlyingDestToken.decimals)}{' '} {formattedCowSwapDestToken.symbol} @@ -449,7 +434,7 @@ export const ActionDetails = ({ + {formattedCowSwapDestToken.name} ({formattedCowSwapDestToken.symbol}) } diff --git a/src/modules/staking/GhoStakingPanel.tsx b/src/modules/staking/GhoStakingPanel.tsx index fd79aa3b5d..43f4dbf216 100644 --- a/src/modules/staking/GhoStakingPanel.tsx +++ b/src/modules/staking/GhoStakingPanel.tsx @@ -429,11 +429,7 @@ export const GhoStakingPanel: React.FC = ({ {availableToReactivateCooldown && ( + Reactivate cooldown period to unstake{' '} {Number( @@ -473,11 +469,7 @@ export const GhoStakingPanel: React.FC = ({ {availableToReactivateCooldown && ( + Reactivate cooldown period to unstake{' '} {Number( diff --git a/src/modules/staking/StakingPanel.tsx b/src/modules/staking/StakingPanel.tsx index c9657b9f10..10ce56ee61 100644 --- a/src/modules/staking/StakingPanel.tsx +++ b/src/modules/staking/StakingPanel.tsx @@ -474,11 +474,7 @@ export const StakingPanel: React.FC = ({ {availableToReactivateCooldown && ( + Reactivate cooldown period to unstake{' '} {Number( @@ -518,11 +514,7 @@ export const StakingPanel: React.FC = ({ {availableToReactivateCooldown && ( + Reactivate cooldown period to unstake{' '} {Number( From ccaa3497dd1a90c2d55093f95d244f8a30a74c25 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 08:16:03 +0900 Subject: [PATCH 06/39] style(layout): tokenize top panels and remove stale content offsets --- pages/markets.page.tsx | 1 - src/components/ContentContainer.tsx | 1 - src/components/TopInfoPanel/PageTitle.tsx | 1 + src/components/TopInfoPanel/TopInfoPanel.tsx | 4 ++-- src/modules/reserve-overview/ReserveTopDetailsWrapper.tsx | 8 ++++---- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/pages/markets.page.tsx b/pages/markets.page.tsx index ee973444a7..21415bca2b 100644 --- a/pages/markets.page.tsx +++ b/pages/markets.page.tsx @@ -55,7 +55,6 @@ export default function Markets() { flexDirection: 'column', alignItems: 'center', flex: 1, - mt: { xs: '-32px', lg: '-46px', xl: '-44px', xxl: '-48px' }, }} > diff --git a/src/components/ContentContainer.tsx b/src/components/ContentContainer.tsx index 846598efd0..9fdc984604 100644 --- a/src/components/ContentContainer.tsx +++ b/src/components/ContentContainer.tsx @@ -12,7 +12,6 @@ export const ContentContainer = ({ children }: ContentContainerProps) => { display: 'flex', flexDirection: 'column', flex: 1, - mt: { xs: '-32px', lg: '-46px', xl: '-44px', xxl: '-48px' }, }} > {children} diff --git a/src/components/TopInfoPanel/PageTitle.tsx b/src/components/TopInfoPanel/PageTitle.tsx index 69c9ebe9ad..b3a131bd53 100644 --- a/src/components/TopInfoPanel/PageTitle.tsx +++ b/src/components/TopInfoPanel/PageTitle.tsx @@ -48,6 +48,7 @@ export const PageTitle = ({ alignItems: { xs: 'flex-start', xsm: 'center' }, mb: pageTitle ? 4 : 0, flexDirection: { xs: 'column', xsm: 'row' }, + boxShadow: `inset 0px -1px 0px ${theme.palette.fig['border-0']}`, }} > {pageTitle && (downToXSM || !withMarketSwitcher) && ( diff --git a/src/components/TopInfoPanel/TopInfoPanel.tsx b/src/components/TopInfoPanel/TopInfoPanel.tsx index cbc88f4d8c..3e3bf45fbd 100644 --- a/src/components/TopInfoPanel/TopInfoPanel.tsx +++ b/src/components/TopInfoPanel/TopInfoPanel.tsx @@ -25,11 +25,11 @@ export const TopInfoPanel = ({ bgcolor: 'background.header', pt: { xs: 10, md: 12 }, pb: { xs: 18, md: 20, lg: '94px', xl: '92px', xxl: '96px' }, - color: '#F1F1F3', + color: 'text.primary', }} > - + {!titleComponent && ( {loading ? ( - + ) : ( { return loading ? ( - + ) : ( {poolReserve.underlyingToken.name} ); @@ -132,7 +132,7 @@ export const ReserveTopDetailsWrapper = ({ underlyingAsset }: ReserveTopDetailsP - + {market.marketTitle} Market {market.v3 && ( @@ -156,7 +156,7 @@ export const ReserveTopDetailsWrapper = ({ underlyingAsset }: ReserveTopDetailsP {!loading && ( - + {poolReserve.underlyingToken.symbol} )} From fb276cab454c2b0105bf2816359894f2afacbb7c Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 11:34:40 +0900 Subject: [PATCH 07/39] fix(icons): forward sx so consumer size and color apply --- src/components/icons/ChevronUpDownIcon.tsx | 2 +- src/components/icons/SettingsIcon.tsx | 6 +++++- src/components/icons/SwapIcon.tsx | 6 +++++- src/locales/el/messages.js | 2 +- src/locales/en/messages.js | 2 +- src/locales/en/messages.po | 8 ++++---- src/locales/es/messages.js | 2 +- src/locales/fr/messages.js | 2 +- 8 files changed, 19 insertions(+), 11 deletions(-) diff --git a/src/components/icons/ChevronUpDownIcon.tsx b/src/components/icons/ChevronUpDownIcon.tsx index 1e7ab8bb6d..bef9325b82 100644 --- a/src/components/icons/ChevronUpDownIcon.tsx +++ b/src/components/icons/ChevronUpDownIcon.tsx @@ -5,7 +5,7 @@ import { SvgIcon, SvgIconProps } from '@mui/material'; export const ChevronUpDownIcon = ({ sx, ...rest }: SvgIconProps) => { return ( ( - + ( - + Dashboard. To learn more about E-Mode and applied restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Ανώτατο όριο δανεισμού\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"ΣΥΧΝΕΣ ΕΡΩΤΗΣΕΙΣ\",\"/yNlZf\":\"Ο σταθερός δανεισμός δεν είναι ενεργοποιημένος\",\"/yQcJM\":\"Συνολική αξία\",\"00AB2i\":\"Ο χρήστης δεν δανείστηκε το καθορισμένο νόμισμα\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να προμηθεύσετε σε αυτό το αποθεματικό. Μπορείτε να προμηθεύσετε το υπόλοιπο του πορτοφολιού σας μέχρι να επιτευχθεί το ανώτατο όριο προμηθειών.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Παρακαλούμε συνδέστε ένα πορτοφόλι για να δείτε τις προσωπικές σας πληροφορίες εδώ.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Ρευστοποίηση <0/> κατώτατο όριο\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Προβολή λεπτομερειών\",\"2FYpfJ\":\"Περισσότερα\",\"2O3qp5\":\"Διαθέσιμη ρευστότητα\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Ο σταθερός δανεισμός είναι ενεργοποιημένος\",\"34Qfwy\":\"Υπέρβαση του ανώτατου ορίου δανεισμού\",\"39eQRj\":[\"Δανεισμός \",[\"symbol\"]],\"3BL1xB\":\"Σύνολο παρεχόμενων\",\"3K0oMo\":\"Υπολειπόμενη προσφορά\",\"3MoZhl\":\"Δεν υπάρχουν επαρκείς εξασφαλίσεις για την κάλυψη ενός νέου δανείου\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Προσφορά \",[\"symbol\"]],\"3mXg0z\":\"Μέγιστο LTV\",\"3q3mFy\":\"Αποπληρωμή\",\"3qsjtp\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα παρεχόμενα περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"3rL+os\":\"Μπορείτε να αποσύρετε τα περιουσιακά σας στοιχεία από τη Μονάδα Ασφαλείας μόνο αφού λήξει η περίοδος αναμονής και το παράθυρο ξεκλειδώματος είναι ενεργό.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Αποτελέσματα ψηφοφορίας\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"ΜΕΓΙΣΤΟ\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"τεκμηρίωση\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο της προσφοράς του. Μόνο \",[\"messageValue\"],\" μπορεί να παρασχεθεί σε αυτή την αγορά.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Η προσφορά μεταβλητού χρέους δεν είναι μηδενική\",\"5che++\":\"Για να ζητήσετε πρόσβαση σε αυτή την αδειοδοτημένη αγορά, επισκεφθείτε την ιστοσελίδα: <0>Όνομα Παρόχου Πρόσβασης\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Απαιτούμενη δράση επιδότησης\",\"5rsnKT\":\"Διαθέσιμες ανταμοιβές\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Επισκόπηση\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Εγγύηση\",\"65A04M\":\"Ισπανικά\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Αποπληρωμή \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Ψύξη...\",\"6bxci/\":\"Δύναμη ψήφου\",\"6f8S68\":\"Αγορές\",\"6g1gi0\":\"Προτάσεις\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Αλλαγή Δικτύου\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Συντελεστής υγείας\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Επιτεύχθηκε\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Διεκδικήστε τα όλα\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Ταμπλό\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Προσοχή - Είστε πολύ κοντά στην ρευστοποίηση. Εξετάστε το ενδεχόμενο να καταθέσετε περισσότερες εγγυήσεις ή να εξοφλήσετε κάποιες από τις δανειακές σας θέσεις\",\"87pUEW\":[\"Το πορτοφόλι σας \",[\"name\"],\" είναι άδειο. Αγοράστε ή μεταφέρετε περιουσιακά στοιχεία.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"Όλες οι προτάσεις\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Μη έγκυρο ποσό για νομισματοκοπία\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Αποσυνδέστε το πορτοφόλι\",\"8Zz7s5\":\"περιουσιακά στοιχεία\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Ποσοστό χρησιμοποίησης\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Εμφάνιση\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Εισέρχεστε σε λειτουργία απομόνωσης\",\"9CDK3/\":[\"Ο δανεισμός δεν είναι επί του παρόντος διαθέσιμος για \",[\"0\"],\".\"],\"9GIj3z\":\"Μέγεθος Αποθεματικού\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Απαρτία\",\"9QHoGr\":\"Τρέχουσες ψήφοι\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο δανεισμού του. Υπάρχει μόνο \",[\"messageValue\"],\" διαθέσιμο για δανεισμό από αυτή την αγορά.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Αυτό το περιουσιακό στοιχείο έχει φτάσει στο όριο της προσφοράς του. Τίποτα δεν είναι διαθέσιμο για προμήθεια από αυτή την αγορά.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Δεδομένου ότι πρόκειται για ένα δοκιμαστικό δίκτυο, μπορείτε να αποκτήσετε οποιοδήποτε από τα περιουσιακά στοιχεία αν έχετε ETH στο πορτοφόλι σας\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Τα δάνεια σας\",\"AV7cGz\":\"Αναθεώρηση λεπτομερειών έγκρισης συναλλαγής\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Η δύναμη δανεισμού και τα περιουσιακά στοιχεία είναι περιορισμένα λόγω της λειτουργίας απομόνωσης.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Η χρήση εγγύησης είναι περιορισμένη λόγω της λειτουργίας απομόνωσης. <0>Μάθετε περισσότερα\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Κατηγορία περιουσιακών στοιχείων\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Βρύση\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Μεγιστο\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Διεκδίκηση \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Βρύση\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Η εγγύηση είναι (ως επί το πλείστον) το ίδιο νόμισμα που δανείζεται\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"Το υποκείμενο περιουσιακό στοιχείο δεν μπορεί να διασωθεί\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave ανά μήνα\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Εξασφάλιση\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Απενεργοποιημένο\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Ανάληψη \",[\"symbol\"]],\"EdQY6l\":\"Κανένα\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Μάθετε περισσότερα.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Δανεισμός χρησιμοποιημένης ισχύος\",\"FPKEug\":\"Η λειτουργία δεν υποστηρίζεται\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"ενεργοποίηση\",\"Fjw9N+\":\"Περιουσιακά στοιχεία προς προμήθεια\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Περιουσιακά Στοιχεία\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"τελειώνει\",\"GtP2hp\":[\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη λειτουργία Αποδοτικότητας (E-Mode) για την κατηγορία \",[\"0\"],\". Για να διαχειριστείτε τις κατηγορίες E-Mode επισκεφθείτε τον <0>Πίνακα ελέγχου.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"η\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Παράθυρο ξεκλειδώματος\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Το συνολικό ποσό των περιουσιακών σας στοιχείων σε δολάρια ΗΠΑ που μπορούν να χρησιμοποιηθούν ως εγγύηση για δανεισμό περιουσιακών στοιχείων.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Περίοδος ψύξης\",\"IaA40H\":\"Ρευστοποίηση στο\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Δεν μπορείτε να χρησιμοποιήσετε αυτό το νόμισμα ως εγγύηση\",\"JYKRJS\":\"Κλειδώστε\",\"JZMxX0\":\"Δεν υπάρχει αρκετό υπόλοιπο στο πορτοφόλι σας\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Υπόλοιπο πορτοφολιού\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"Αυτό αντιπροσωπεύει το κατώτατο όριο στο οποίο μια θέση δανεισμού θα θεωρηθεί υποεγγυημένη και θα υπόκειται σε ρευστοποίηση για κάθε εγγύηση. Για παράδειγμα, εάν μια εγγύηση έχει κατώτατο όριο ρευστοποίησης 80%, αυτό σημαίνει ότι η θέση θα ρευστοποιηθεί όταν η αξία του χρέους ανέρχεται στο 80% της αξίας της εγγύησης.\",\"KYAjf3\":\"Απομονωμένο\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Λήγει\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Λάθος δίκτυο\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Κλείδωμα\",\"KuBTQq\":\"Εισάγετε διεύθυνση ETH\",\"KvG1xW\":\"Διεκδίκηση\",\"L+8Lzs\":\"Τρέχον LTV\",\"L+qiq+\":\"Αγορά\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Δεν υπάρχει δικαίωμα ψήφου\",\"LL0zks\":\"Μπορεί να αποτελέσει εγγύηση\",\"LLdJWu\":\"Διεκδικήσιμο AAVE\",\"LSIpNK\":\"Δεν επιτρέπεται ο δανεισμός και η αποπληρωμή στο ίδιο block\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Διεύθυνση παραλήπτη\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"προβολή κλειδώματος\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, μεταβλητό\",\"MghdTe\":\"Εάν ο συντελεστής υγείας πέσει κάτω από το 1, ενδέχεται να ενεργοποιηθεί η ρευστοποίηση των εγγυήσεών σας.\",\"Mm/DVQ\":\"Ακυρώσατε τη συναλλαγή.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Μη έγκυρη τιμή επιστροφής της συνάρτησης εκτελεστή flashloan\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Εκκρεμεί...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Τίποτα κλειδωμένο\",\"Nh9DAo\":[[\"m\"],\"λ\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Υπέρβαση του ανώτατου ορίου νομισματοκοπείου χωρίς αντίκρισμα\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Επισκόπηση πρότασης\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"απενεργοποιημένο\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Ανάληψη\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"Όταν πραγματοποιείται ρευστοποίηση, οι ρευστοποιητές επιστρέφουν έως και το 50% του ανεξόφλητου δανεισμένου ποσού για λογαριασμό του δανειολήπτη. Σε αντάλλαγμα, μπορούν να αγοράσουν τις εξασφαλίσεις με έκπτωση και να κρατήσουν τη διαφορά (ποινή ρευστοποίησης) ως μπόνους.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα δανειακά περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Κατώτατο όριο ρευστοποίησης\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Η ενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση αυξάνει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας. Ωστόσο, μπορεί να ρευστοποιηθεί εάν ο συντελεστής υγείας σας πέσει κάτω από το 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Δεν έχει επιτευχθεί\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Απενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"RMtxNk\":\"Διαφορικό\",\"RNK49r\":\"Μη έγκυρη υπογραφή\",\"RS0o7b\":\"Κατάσταση\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Λεπτομέρειες πρότασης\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Το περιουσιακό στοιχείο δεν περιλαμβάνεται στον κατάλογο\",\"Rj01Fz\":\"Σύνδεσμοι\",\"RmWFEe\":\"Κλείδωμα APR\",\"RtBLm7\":\"Ο συντελεστής υγείας είναι μικρότερος από το όριο ρευστοποίησης\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Ενεργοποιημένο\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Κεφάλαια στην Μονάδα Ασφάλειας\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Σύνολο διαθέσιμων\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Απενεργοποίηση E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Ο πάροχος διευθύνσεων κοινόχρηστων ταμείων δεν είναι εγγεγραμμένος\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Δανεισμός\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Ποινή ρευστοποίησης\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"To περιουσιακό στοιχείο μπορεί να χρησιμοποιηθεί ως εγγύηση μόνο σε λειτουργία απομόνωσης.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος σταθερού επιτοκίου σε αυτό το αποθεματικό\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Το περιουσιακό στοιχείο δεν είναι δανείσιμο σε λειτουργία απομόνωσης\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Λεπτομέρειες\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"Τα κεφάλαια αυτά έχουν δανειστεί και δεν είναι διαθέσιμα για ανάληψη αυτή τη στιγμή.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"Ο δείκτης μέγιστου LTV αντιπροσωπεύει τη μέγιστη δανειοληπτική ικανότητα μιας συγκεκριμένης εγγύησης. Για παράδειγμα, εάν μια εγγύηση έχει LTV 75%, ο χρήστης μπορεί να δανειστεί έως και 0,75 ETH στο κύριο νόμισμα για κάθε 1 ETH αξίας εγγύησης.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Δεν υπάρχουν ανταμοιβές για διεκδίκηση\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Συνδέστε το πορτοφόλι\",\"VMfYUK\":\"Ασφάλεια των κατατεθειμένων εξασφαλίσεών σας έναντι των δανειζόμενων περιουσιακών στοιχείων και της υποκείμενης αξίας τους.\",\"VOAZJh\":\"Σύνολο δανείων\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"ΥΠΕΡ\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Αναθεώρηση λεπτομερειών συναλλαγής\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Τίποτα δεν έχει παρασχεθεί ακόμη\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"Το E-Mode αυξάνει το LTV σας για μια επιλεγμένη κατηγορία περιουσιακών στοιχείων έως και <0/>. <1>Μάθετε περισσότερα\",\"WPWG/y\":\"Κατάσταση & διαμόρφωση αποθεματικού\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"Ο χρήστης δεν μπορεί να κάνει ανάληψη μεγαλύτερη από το διαθέσιμο υπόλοιπο\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Για να δανειστείτε πρέπει να προσκομίσετε οποιοδήποτε περιουσιακό στοιχείο που θα χρησιμοποιηθεί ως εγγύηση.\",\"X/ITG9\":\"Κείμενο σφάλματος αντιγραφής\",\"X3Pp6x\":\"Χρησιμοποιείται ως εγγύηση\",\"X4Zt7j\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή η εφεδρεία βρίσκεται σε παύση\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Θα βγείτε από τη λειτουργία απομόνωσης και άλλα tokens μπορούν πλέον να χρησιμοποιηθούν ως εγγύηση\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"ΨΗΦΙΣΤΕ ΚΑΤΑ\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Ενεργοποίηση E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"Εάν το δάνειο προς αξία υπερβεί το όριο ρευστοποίησης, η παρεχόμενη εγγύηση σας μπορεί να ρευστοποιηθεί.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Δεν τηρήθηκαν οι όροι επανεξισορρόπησης των επιτοκίων\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Διακυβέρνηση Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Λειτουργία αποδοτικότητας (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Μέγιστη περικοπή\",\"ZfUGFb\":\"Πριν από την προμήθεια\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Αξία ρευστοποίησης\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"ενεργοποιημένο\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Χρόνος που απομένει για το ξεκλείδωμα\",\"a5RYZd\":\"Η απενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση επηρεάζει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Ψηφίστε ΚΑΤΑ\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Οι παράμετροι της συστοιχίας που θα έπρεπε να είναι ίσου μήκους δεν είναι\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Δανεισμός APY, μεταβλητό\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Προειδοποίηση περιόδου ψύξης\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Περιουσιακό στοιχείο\",\"bXQ/Og\":\"Μοιραστείτε το στο twitter\",\"bXr0ee\":\"Τα απομονωμένα περιουσιακά στοιχεία έχουν περιορισμένη δανειοληπτική ικανότητα και άλλα περιουσιακά στοιχεία δεν μπορούν να χρησιμοποιηθούν ως εγγύηση.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Το αιτούμενο ποσό είναι μεγαλύτερο από το μέγιστο μέγεθος δανείου στη λειτουργία σταθερού επιτοκίου\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Προσφορά\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Η διεύθυνση δεν είναι συμβόλαιο\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Δεν μπορείτε να αποσύρετε αυτό το ποσό, διότι θα προκληθεί κλήση εγγύησης\",\"cBc+4A\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να δανειστείτε. Μπορείτε να δανειστείτε με βάση την εξασφάλισή σας και μέχρι να επιτευχθεί το ανώτατο όριο δανεισμού.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Λεπτομέρειες κινδύνου\",\"cNT+ij\":\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη Λειτουργία Αποδοτικότητας (E-Mode) και τη λειτουργία Απομόνωσης. Για να διαχειριστείτε τη λειτουργία E-Mode και τη λειτουργία Απομόνωσης, επισκεφθείτε τον <0>Πίνακα ελέγχου.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Ψηφίστε ΥΠΕΡ\",\"ckf7gX\":[\"Αποπληρώνοντας \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Συζήτηση φόρουμ\",\"csDS2L\":\"Διαθέσιμο\",\"cu7Stb\":\"Δεν συμμετείχατε στην παρούσα πρόταση\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Διακυβέρνηση\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Η επικύρωση του Ltv απέτυχε\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"Δεν έχετε αρκετά χρήματα στο πορτοφόλι σας για να αποπληρώσετε ολόκληρο το ποσό. Εάν προχωρήσετε στην αποπληρωμή με το τρέχον ποσό των χρημάτων σας, θα εξακολουθείτε να έχετε μια μικρή θέση δανεισμού στο ταμπλό σας.\",\"dXUQFX\":\"Περιουσιακά στοιχεία προς δανεισμό\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Χρησιμοποίηση εγγυήσεων\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Η δράση απαιτεί ενεργό απόθεμα\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Σύνολο δανεικών\",\"ecqEvn\":\"Το υπόλοιπο των εγγυήσεων είναι 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Ξεκλειδώστε τώρα\",\"evw5ha\":\"Καθαρή αξία\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"Αλλάξατε σε ποσοστό \",[\"0\"]],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Το τρέχον δάνειο προς αξία με βάση τις παρεχόμενες εξασφαλίσεις σας.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Υπόλοιπο\",\"fu1Dbh\":[\"Ανάληψη \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Λειτουργία Testnet\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"Ο χρήστης προσπαθεί να δανειστεί πολλαπλά περιουσιακά στοιχεία, συμπεριλαμβανομένου ενός απομονωμένου περιουσιακού στοιχείου\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Η μηδενική διεύθυνση δεν είναι έγκυρη\",\"gvTM4B\":\"Το καθαρό ΑΡΥ είναι η συνδυασμένη επίδραση όλων των θέσεων προσφοράς και δανεισμού στην καθαρή αξία, συμπεριλαμβανομένων των κινήτρων. Είναι δυνατόν να υπάρχει αρνητικό καθαρό APY εάν το χρεωστικό APY είναι υψηλότερο από το προσφερόμενο APY.\",\"gzcch9\":\"Μη έγκυρη αμοιβή πρωτοκόλλου γέφυρας\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Καθαρό APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"Το % της συνολικής δανειοληπτικής σας δύναμης που χρησιμοποιείται. Αυτό βασίζεται στο ποσό της παρεχόμενης εξασφάλισής σας και στο συνολικό ποσό που μπορείτε να δανειστείτε.\",\"hehnjM\":\"Ποσό\",\"hjDCQr\":\"Υπήρξε κάποιο σφάλμα. Προσπαθήστε να αλλάξετε τις παραμέτρους ή <0><1>αντιγράψτε το σφάλμα\",\"hom7qf\":\"Διεκδίκηση\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Δανεισμός \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Ασυνεπείς παράμετροι flashloan\",\"iEPVHF\":\"Δεν έχει αρκετή δύναμη ψήφου για να συμμετάσχει στην παρούσα πρόταση\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"Ψηφίσατε \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Εισάγετε ένα ποσό\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens δεν είναι το ίδιο με το να τα κλειδώνετε. Εάν επιθυμείτε να κλειδώσετε τα\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"H χρήση εγγυήσεων είναι περιορισμένη λόγω της λειτουργίας Απομόνωσης.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Προμηθεύοντας το\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Απενεργοποίηση E-Mode\",\"jKYzR1\":\"Ενεργοποίηση E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"δ\"],\"jbFMap\":\"Χρόνος ψύξης που έχει απομείνει\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"Στο E-Mode ορισμένα περιουσιακά στοιχεία δεν είναι δανείσιμα. Βγείτε από το E-Mode για να αποκτήσετε πρόσβαση σε όλα τα περιουσιακά στοιχεία\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Μη διαθέσιμο\",\"k/sb6z\":\"Επιλέξτε γλώσσα\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Διεκδίκηση \",[\"0\"]],\"kH6wUX\":\"Επίδραση στην τιμή\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"Για την εξόφληση εκ μέρους ενός χρήστη απαιτείται ένα ρητό ποσό προς εξόφληση\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Υπέρβαση του ανώτατου ορίου προσφοράς\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Το ανώτατο όριο χρέους δεν είναι μηδενικό\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Αγγλικά\",\"lfEjIE\":\"Μάθετε περισσότερα στον οδηγό <0>Συχνών Ερωτήσεων\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Συνολικές εκπομπές ανά ημέρα\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"mogZv0\":\"Favourite\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Εντάξει, Κλείσιμο\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Το περιουσιακό στοιχείο δεν μπορεί να χρησιμοποιηθεί ως εγγύηση.\",\"n+SX4g\":\"Προγραμματιστές\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Προσφορά apy\",\"nJgsQu\":\"Με δύναμη ψήφου <0/>\",\"nLC6tu\":\"Γαλλικά\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Μπορεί να εκτελεστεί\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"ω\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"Ο συντελεστής υγείας και το δάνειο προς αξία καθορίζουν τη διασφάλιση των εξασφαλίσεών σας. Για να αποφύγετε τις ρευστοποιήσεις μπορείτε να παράσχετε περισσότερες εξασφαλίσεις ή να εξοφλήσετε δανειακές θέσεις.\",\"o1xc2V\":\"Η προσφορά AToken δεν είναι μηδενική\",\"o5ooMr\":\"Χρέος\",\"o7J4JM\":\"Φίλτρο\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Ψύξτε για ξεκλείδωμα\",\"oJ5ZiG\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος μεταβλητού επιτοκίου σε αυτό το αποθεματικό\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"Το σταθερό επιτόκιο θα <0>μείνει το ίδιο για όλη τη διάρκεια του δανείου σας. Συνιστάται για μακροχρόνιες περιόδους δανεισμού και για χρήστες που προτιμούν την προβλεψιμότητα.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Διαθέσιμο για προμήθεια\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"Αυτό το περιουσιακό στοιχείο έχει φθάσει στο ανώτατο όριο δανεισμού του. Τίποτα δεν είναι διαθέσιμο για δανεισμό από αυτή την αγορά.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Το υποκείμενο υπόλοιπο πρέπει να είναι μεγαλύτερο από 0\",\"pgWG9H\":\"Δεν υπάρχει αρκετό κλειδωμένο υπόλοιπο\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"παρακαλούμε ελέγξτε ότι το ποσό που θέλετε να παρέχετε δεν χρησιμοποιείται επί του παρόντος για κλείδωμα. Εάν χρησιμοποιείται για κλείδωμα, η συναλλαγή σας ενδέχεται να αποτύχει.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Καταλαβαίνω πώς λειτουργεί η ψύξη (\",[\"0\"],\") και το ξεκλείδωμα (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"Ο καλών αυτής της συνάρτησης πρέπει να είναι ένα κοινόχρηστο ταμείο\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Κλειδωμένο\",\"qB4kPi\":\"Προσφορά APY\",\"qENI8q\":\"Γενικές ρυθμίσεις\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"αντιγράψτε το σφάλμα\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Συνδέστε το πορτοφόλι σας για να δείτε τις προμήθειες, τα δάνεια και τις ανοιχτές θέσεις σας.\",\"qY2jnw\":\"Μη έγκυρη λήξη\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Μη έγκυρη ποσότητα προς καύση\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Το ποσό πρέπει να είναι μεγαλύτερο από 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Εμφάνιση περιουσιακών στοιχείων με υπόλοιπο 0\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Διεκδικήστε όλες τις ανταμοιβές\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Αναθεώρηση συναλλαγής\",\"sP2+gB\":\"ΚΑΤΑ\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Μπορείτε να ξεκλειδώσετε εδώ\",\"smJNwH\":\"Διαθέσιμο για δανεισμό\",\"solypO\":\"Ο παράγοντας υγείας δεν είναι κάτω από το όριο\",\"sr0UJD\":\"Πηγαίνετε Πίσω\",\"ss5GCK\":\"Η διεύθυνση του παρόχου διευθύνσεων κοινόχρηστου ταμείου είναι άκυρη\",\"swEgK4\":\"Οι πληροφορίες ψήφου σας\",\"t+wtgf\":\"Τίποτα δανεισμένο ακόμα\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Τιμή Oracle\",\"tFZLf8\":\"Αυτός ο υπολογισμός gas είναι μόνο μια εκτίμηση. Το πορτοφόλι σας θα καθορίσει την τιμή της συναλλαγής. Μπορείτε να τροποποιήσετε τις ρυθμίσεις gas απευθείας από τον πάροχο του πορτοφολιού σας.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Παρακαλώ, συνδέστε το πορτοφόλι σας\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Οι προμήθειές σας\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Η συναλλαγή απέτυχε\",\"u706uF\":\"Άκυρη πριμοδότηση flashloan\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Για την αποπληρωμή ενός συγκεκριμένου τύπου χρέους, ο χρήστης πρέπει να έχει χρέος αυτού του τύπου\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Απόκρυψη\",\"vMba49\":\"Ο δανεισμός δεν είναι ενεργοποιημένος\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Γλώσσα\",\"vesuBJ\":\"Σας επιτρέπει να αποφασίσετε αν θα χρησιμοποιήσετε ένα παρεχόμενο περιουσιακό στοιχείο ως εγγύηση. Ένα περιουσιακό στοιχείο που χρησιμοποιείται ως εγγύηση θα επηρεάσει τη δανειοληπτική σας ικανότητα και τον συντελεστή υγείας.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Σταθερό νόμισμα\",\"w/JtJ3\":\"Η σταθερή προσφορά χρέους δεν είναι μηδενική\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Ανταμοιβές APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Εσείς \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"Ο καλών της συνάρτησης δεν είναι AToken\",\"wRRqvW\":\"Δεν έχετε προμήθειες σε αυτό το νόμισμα\",\"wZFvVU\":\"ΨΗΦΙΣΤΕ ΥΠΕΡ\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Βρύση \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Τρέχον διαφορικό\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, παρακαλούμε μεταβείτε στο\",\"xNy/UG\":\"Αποπληρωμή με\",\"xPm8wv\":\"Μάθετε περισσότερα για τους κινδύνους\",\"xXYpZl\":[[\"0\"],\" Βρύση\"],\"xaVBSS\":\"Οι πληροφορίες σας\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Ενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"yB1YpA\":\"Σκοτεινή λειτουργία\",\"yCrG6m\":\"Συνολικό μέγεθος της αγοράς\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Επισκόπηση συναλλαγής\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Μη έγκυρη διεύθυνση\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"Δεν μπορείτε να αλλάξετε τη χρήση ως λειτουργία εγγύησης για αυτό το νόμισμα, διότι θα προκαλέσει κλήση εγγύησης\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Δεν υπάρχουν αρκετά κεφάλαια στο\",[\"0\"],\"αποθεματικό για δανεισμό\"],\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Κλείσιμο\",\"z4uGQg\":\"Υπέρβαση του ανώτατου ορίου χρέους\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"Η εγγύηση που έχει επιλεγεί δεν μπορεί να ρευστοποιηθεί\",\"z5Y+p6\":[\"Παροχή \",[\"symbol\"]],\"zCjNKs\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή το αποθεματικό έχει παγώσει\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Υπολειπόμενο χρέος\",\"zmTPiV\":\"Υπόλοιπο προσφοράς\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Μενού\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Μάθετε περισσότερα\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Supply balance after switch\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Show Frozen or paused assets\",\"TszKts\":\"Borrow balance after switch\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Εάν ΔΕΝ ξεκλειδώσετε εντός \",[\"0\"],\" του παραθύρου ξεκλειδώματος, θα πρέπει να ενεργοποιήσετε ξανά τη διαδικασία ψύξης.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Η συμμετοχή σε αυτό το αποθεματικό \",[\"symbol\"],\" δίνει ετήσιες ανταμοιβές.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Ανώτατο όριο δανεισμού\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"ΣΥΧΝΕΣ ΕΡΩΤΗΣΕΙΣ\",\"/yNlZf\":\"Ο σταθερός δανεισμός δεν είναι ενεργοποιημένος\",\"/yQcJM\":\"Συνολική αξία\",\"00AB2i\":\"Ο χρήστης δεν δανείστηκε το καθορισμένο νόμισμα\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να προμηθεύσετε σε αυτό το αποθεματικό. Μπορείτε να προμηθεύσετε το υπόλοιπο του πορτοφολιού σας μέχρι να επιτευχθεί το ανώτατο όριο προμηθειών.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Παρακαλούμε συνδέστε ένα πορτοφόλι για να δείτε τις προσωπικές σας πληροφορίες εδώ.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Ρευστοποίηση <0/> κατώτατο όριο\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Προβολή λεπτομερειών\",\"2FYpfJ\":\"Περισσότερα\",\"2O3qp5\":\"Διαθέσιμη ρευστότητα\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Ο σταθερός δανεισμός είναι ενεργοποιημένος\",\"34Qfwy\":\"Υπέρβαση του ανώτατου ορίου δανεισμού\",\"39eQRj\":[\"Δανεισμός \",[\"symbol\"]],\"3BL1xB\":\"Σύνολο παρεχόμενων\",\"3K0oMo\":\"Υπολειπόμενη προσφορά\",\"3MoZhl\":\"Δεν υπάρχουν επαρκείς εξασφαλίσεις για την κάλυψη ενός νέου δανείου\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Προσφορά \",[\"symbol\"]],\"3mXg0z\":\"Μέγιστο LTV\",\"3q3mFy\":\"Αποπληρωμή\",\"3qsjtp\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα παρεχόμενα περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"3rL+os\":\"Μπορείτε να αποσύρετε τα περιουσιακά σας στοιχεία από τη Μονάδα Ασφαλείας μόνο αφού λήξει η περίοδος αναμονής και το παράθυρο ξεκλειδώματος είναι ενεργό.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Αποτελέσματα ψηφοφορίας\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"ΜΕΓΙΣΤΟ\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"τεκμηρίωση\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο της προσφοράς του. Μόνο \",[\"messageValue\"],\" μπορεί να παρασχεθεί σε αυτή την αγορά.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Η προσφορά μεταβλητού χρέους δεν είναι μηδενική\",\"5che++\":\"Για να ζητήσετε πρόσβαση σε αυτή την αδειοδοτημένη αγορά, επισκεφθείτε την ιστοσελίδα: <0>Όνομα Παρόχου Πρόσβασης\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Απαιτούμενη δράση επιδότησης\",\"5rsnKT\":\"Διαθέσιμες ανταμοιβές\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Επισκόπηση\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Εγγύηση\",\"65A04M\":\"Ισπανικά\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Αποπληρωμή \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Ψύξη...\",\"6bxci/\":\"Δύναμη ψήφου\",\"6f8S68\":\"Αγορές\",\"6g1gi0\":\"Προτάσεις\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Αλλαγή Δικτύου\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Συντελεστής υγείας\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Επιτεύχθηκε\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Διεκδικήστε τα όλα\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Ταμπλό\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Προσοχή - Είστε πολύ κοντά στην ρευστοποίηση. Εξετάστε το ενδεχόμενο να καταθέσετε περισσότερες εγγυήσεις ή να εξοφλήσετε κάποιες από τις δανειακές σας θέσεις\",\"87pUEW\":[\"Το πορτοφόλι σας \",[\"name\"],\" είναι άδειο. Αγοράστε ή μεταφέρετε περιουσιακά στοιχεία.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"Όλες οι προτάσεις\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Μη έγκυρο ποσό για νομισματοκοπία\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Αποσυνδέστε το πορτοφόλι\",\"8Zz7s5\":\"περιουσιακά στοιχεία\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Ποσοστό χρησιμοποίησης\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Εμφάνιση\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Εισέρχεστε σε λειτουργία απομόνωσης\",\"9CDK3/\":[\"Ο δανεισμός δεν είναι επί του παρόντος διαθέσιμος για \",[\"0\"],\".\"],\"9GIj3z\":\"Μέγεθος Αποθεματικού\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Απαρτία\",\"9QHoGr\":\"Τρέχουσες ψήφοι\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο δανεισμού του. Υπάρχει μόνο \",[\"messageValue\"],\" διαθέσιμο για δανεισμό από αυτή την αγορά.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Αυτό το περιουσιακό στοιχείο έχει φτάσει στο όριο της προσφοράς του. Τίποτα δεν είναι διαθέσιμο για προμήθεια από αυτή την αγορά.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Δεδομένου ότι πρόκειται για ένα δοκιμαστικό δίκτυο, μπορείτε να αποκτήσετε οποιοδήποτε από τα περιουσιακά στοιχεία αν έχετε ETH στο πορτοφόλι σας\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Τα δάνεια σας\",\"AV7cGz\":\"Αναθεώρηση λεπτομερειών έγκρισης συναλλαγής\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Η δύναμη δανεισμού και τα περιουσιακά στοιχεία είναι περιορισμένα λόγω της λειτουργίας απομόνωσης.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Η χρήση εγγύησης είναι περιορισμένη λόγω της λειτουργίας απομόνωσης. <0>Μάθετε περισσότερα\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Κατηγορία περιουσιακών στοιχείων\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Βρύση\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Μεγιστο\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Διεκδίκηση \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Βρύση\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Η εγγύηση είναι (ως επί το πλείστον) το ίδιο νόμισμα που δανείζεται\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"Το υποκείμενο περιουσιακό στοιχείο δεν μπορεί να διασωθεί\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave ανά μήνα\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Εξασφάλιση\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Απενεργοποιημένο\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Ανάληψη \",[\"symbol\"]],\"EdQY6l\":\"Κανένα\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Μάθετε περισσότερα.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Δανεισμός χρησιμοποιημένης ισχύος\",\"FPKEug\":\"Η λειτουργία δεν υποστηρίζεται\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"ενεργοποίηση\",\"Fjw9N+\":\"Περιουσιακά στοιχεία προς προμήθεια\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Περιουσιακά Στοιχεία\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"τελειώνει\",\"GtP2hp\":[\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη λειτουργία Αποδοτικότητας (E-Mode) για την κατηγορία \",[\"0\"],\". Για να διαχειριστείτε τις κατηγορίες E-Mode επισκεφθείτε τον <0>Πίνακα ελέγχου.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"η\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Παράθυρο ξεκλειδώματος\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Το συνολικό ποσό των περιουσιακών σας στοιχείων σε δολάρια ΗΠΑ που μπορούν να χρησιμοποιηθούν ως εγγύηση για δανεισμό περιουσιακών στοιχείων.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Περίοδος ψύξης\",\"IaA40H\":\"Ρευστοποίηση στο\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Δεν μπορείτε να χρησιμοποιήσετε αυτό το νόμισμα ως εγγύηση\",\"JYKRJS\":\"Κλειδώστε\",\"JZMxX0\":\"Δεν υπάρχει αρκετό υπόλοιπο στο πορτοφόλι σας\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Υπόλοιπο πορτοφολιού\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"Αυτό αντιπροσωπεύει το κατώτατο όριο στο οποίο μια θέση δανεισμού θα θεωρηθεί υποεγγυημένη και θα υπόκειται σε ρευστοποίηση για κάθε εγγύηση. Για παράδειγμα, εάν μια εγγύηση έχει κατώτατο όριο ρευστοποίησης 80%, αυτό σημαίνει ότι η θέση θα ρευστοποιηθεί όταν η αξία του χρέους ανέρχεται στο 80% της αξίας της εγγύησης.\",\"KYAjf3\":\"Απομονωμένο\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Λήγει\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Λάθος δίκτυο\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Κλείδωμα\",\"KuBTQq\":\"Εισάγετε διεύθυνση ETH\",\"KvG1xW\":\"Διεκδίκηση\",\"L+8Lzs\":\"Τρέχον LTV\",\"L+qiq+\":\"Αγορά\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Δεν υπάρχει δικαίωμα ψήφου\",\"LL0zks\":\"Μπορεί να αποτελέσει εγγύηση\",\"LLdJWu\":\"Διεκδικήσιμο AAVE\",\"LSIpNK\":\"Δεν επιτρέπεται ο δανεισμός και η αποπληρωμή στο ίδιο block\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Διεύθυνση παραλήπτη\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"προβολή κλειδώματος\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, μεταβλητό\",\"MghdTe\":\"Εάν ο συντελεστής υγείας πέσει κάτω από το 1, ενδέχεται να ενεργοποιηθεί η ρευστοποίηση των εγγυήσεών σας.\",\"Mm/DVQ\":\"Ακυρώσατε τη συναλλαγή.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Μη έγκυρη τιμή επιστροφής της συνάρτησης εκτελεστή flashloan\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Εκκρεμεί...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Τίποτα κλειδωμένο\",\"Nh9DAo\":[[\"m\"],\"λ\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Υπέρβαση του ανώτατου ορίου νομισματοκοπείου χωρίς αντίκρισμα\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Επισκόπηση πρότασης\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"απενεργοποιημένο\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Ανάληψη\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"Όταν πραγματοποιείται ρευστοποίηση, οι ρευστοποιητές επιστρέφουν έως και το 50% του ανεξόφλητου δανεισμένου ποσού για λογαριασμό του δανειολήπτη. Σε αντάλλαγμα, μπορούν να αγοράσουν τις εξασφαλίσεις με έκπτωση και να κρατήσουν τη διαφορά (ποινή ρευστοποίησης) ως μπόνους.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα δανειακά περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Κατώτατο όριο ρευστοποίησης\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Η ενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση αυξάνει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας. Ωστόσο, μπορεί να ρευστοποιηθεί εάν ο συντελεστής υγείας σας πέσει κάτω από το 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Δεν έχει επιτευχθεί\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Απενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"RMtxNk\":\"Διαφορικό\",\"RNK49r\":\"Μη έγκυρη υπογραφή\",\"RS0o7b\":\"Κατάσταση\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Λεπτομέρειες πρότασης\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Το περιουσιακό στοιχείο δεν περιλαμβάνεται στον κατάλογο\",\"Rj01Fz\":\"Σύνδεσμοι\",\"RmWFEe\":\"Κλείδωμα APR\",\"RtBLm7\":\"Ο συντελεστής υγείας είναι μικρότερος από το όριο ρευστοποίησης\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Ενεργοποιημένο\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Κεφάλαια στην Μονάδα Ασφάλειας\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Σύνολο διαθέσιμων\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Απενεργοποίηση E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Ο πάροχος διευθύνσεων κοινόχρηστων ταμείων δεν είναι εγγεγραμμένος\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Δανεισμός\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Ποινή ρευστοποίησης\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"To περιουσιακό στοιχείο μπορεί να χρησιμοποιηθεί ως εγγύηση μόνο σε λειτουργία απομόνωσης.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος σταθερού επιτοκίου σε αυτό το αποθεματικό\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Το περιουσιακό στοιχείο δεν είναι δανείσιμο σε λειτουργία απομόνωσης\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Λεπτομέρειες\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"Τα κεφάλαια αυτά έχουν δανειστεί και δεν είναι διαθέσιμα για ανάληψη αυτή τη στιγμή.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"Ο δείκτης μέγιστου LTV αντιπροσωπεύει τη μέγιστη δανειοληπτική ικανότητα μιας συγκεκριμένης εγγύησης. Για παράδειγμα, εάν μια εγγύηση έχει LTV 75%, ο χρήστης μπορεί να δανειστεί έως και 0,75 ETH στο κύριο νόμισμα για κάθε 1 ETH αξίας εγγύησης.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Δεν υπάρχουν ανταμοιβές για διεκδίκηση\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Συνδέστε το πορτοφόλι\",\"VMfYUK\":\"Ασφάλεια των κατατεθειμένων εξασφαλίσεών σας έναντι των δανειζόμενων περιουσιακών στοιχείων και της υποκείμενης αξίας τους.\",\"VOAZJh\":\"Σύνολο δανείων\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"ΥΠΕΡ\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Αναθεώρηση λεπτομερειών συναλλαγής\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Τίποτα δεν έχει παρασχεθεί ακόμη\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"Το E-Mode αυξάνει το LTV σας για μια επιλεγμένη κατηγορία περιουσιακών στοιχείων έως και <0/>. <1>Μάθετε περισσότερα\",\"WPWG/y\":\"Κατάσταση & διαμόρφωση αποθεματικού\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"Ο χρήστης δεν μπορεί να κάνει ανάληψη μεγαλύτερη από το διαθέσιμο υπόλοιπο\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Για να δανειστείτε πρέπει να προσκομίσετε οποιοδήποτε περιουσιακό στοιχείο που θα χρησιμοποιηθεί ως εγγύηση.\",\"X/ITG9\":\"Κείμενο σφάλματος αντιγραφής\",\"X3Pp6x\":\"Χρησιμοποιείται ως εγγύηση\",\"X4Zt7j\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή η εφεδρεία βρίσκεται σε παύση\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Θα βγείτε από τη λειτουργία απομόνωσης και άλλα tokens μπορούν πλέον να χρησιμοποιηθούν ως εγγύηση\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"ΨΗΦΙΣΤΕ ΚΑΤΑ\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Ενεργοποίηση E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"Εάν το δάνειο προς αξία υπερβεί το όριο ρευστοποίησης, η παρεχόμενη εγγύηση σας μπορεί να ρευστοποιηθεί.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Δεν τηρήθηκαν οι όροι επανεξισορρόπησης των επιτοκίων\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Διακυβέρνηση Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Λειτουργία αποδοτικότητας (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Μέγιστη περικοπή\",\"ZfUGFb\":\"Πριν από την προμήθεια\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Αξία ρευστοποίησης\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"ενεργοποιημένο\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Χρόνος που απομένει για το ξεκλείδωμα\",\"a5RYZd\":\"Η απενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση επηρεάζει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Ψηφίστε ΚΑΤΑ\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Οι παράμετροι της συστοιχίας που θα έπρεπε να είναι ίσου μήκους δεν είναι\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Δανεισμός APY, μεταβλητό\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Προειδοποίηση περιόδου ψύξης\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Περιουσιακό στοιχείο\",\"bXQ/Og\":\"Μοιραστείτε το στο twitter\",\"bXr0ee\":\"Τα απομονωμένα περιουσιακά στοιχεία έχουν περιορισμένη δανειοληπτική ικανότητα και άλλα περιουσιακά στοιχεία δεν μπορούν να χρησιμοποιηθούν ως εγγύηση.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Το αιτούμενο ποσό είναι μεγαλύτερο από το μέγιστο μέγεθος δανείου στη λειτουργία σταθερού επιτοκίου\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Προσφορά\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Η διεύθυνση δεν είναι συμβόλαιο\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Δεν μπορείτε να αποσύρετε αυτό το ποσό, διότι θα προκληθεί κλήση εγγύησης\",\"cBc+4A\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να δανειστείτε. Μπορείτε να δανειστείτε με βάση την εξασφάλισή σας και μέχρι να επιτευχθεί το ανώτατο όριο δανεισμού.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Λεπτομέρειες κινδύνου\",\"cNT+ij\":\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη Λειτουργία Αποδοτικότητας (E-Mode) και τη λειτουργία Απομόνωσης. Για να διαχειριστείτε τη λειτουργία E-Mode και τη λειτουργία Απομόνωσης, επισκεφθείτε τον <0>Πίνακα ελέγχου.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Ψηφίστε ΥΠΕΡ\",\"ckf7gX\":[\"Αποπληρώνοντας \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Συζήτηση φόρουμ\",\"csDS2L\":\"Διαθέσιμο\",\"cu7Stb\":\"Δεν συμμετείχατε στην παρούσα πρόταση\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Διακυβέρνηση\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Η επικύρωση του Ltv απέτυχε\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"Δεν έχετε αρκετά χρήματα στο πορτοφόλι σας για να αποπληρώσετε ολόκληρο το ποσό. Εάν προχωρήσετε στην αποπληρωμή με το τρέχον ποσό των χρημάτων σας, θα εξακολουθείτε να έχετε μια μικρή θέση δανεισμού στο ταμπλό σας.\",\"dXUQFX\":\"Περιουσιακά στοιχεία προς δανεισμό\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Χρησιμοποίηση εγγυήσεων\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Η δράση απαιτεί ενεργό απόθεμα\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Σύνολο δανεικών\",\"ecqEvn\":\"Το υπόλοιπο των εγγυήσεων είναι 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Ξεκλειδώστε τώρα\",\"evw5ha\":\"Καθαρή αξία\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"Αλλάξατε σε ποσοστό \",[\"0\"]],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Το τρέχον δάνειο προς αξία με βάση τις παρεχόμενες εξασφαλίσεις σας.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Υπόλοιπο\",\"fu1Dbh\":[\"Ανάληψη \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Λειτουργία Testnet\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"Ο χρήστης προσπαθεί να δανειστεί πολλαπλά περιουσιακά στοιχεία, συμπεριλαμβανομένου ενός απομονωμένου περιουσιακού στοιχείου\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Η μηδενική διεύθυνση δεν είναι έγκυρη\",\"gvTM4B\":\"Το καθαρό ΑΡΥ είναι η συνδυασμένη επίδραση όλων των θέσεων προσφοράς και δανεισμού στην καθαρή αξία, συμπεριλαμβανομένων των κινήτρων. Είναι δυνατόν να υπάρχει αρνητικό καθαρό APY εάν το χρεωστικό APY είναι υψηλότερο από το προσφερόμενο APY.\",\"gzcch9\":\"Μη έγκυρη αμοιβή πρωτοκόλλου γέφυρας\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Καθαρό APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"Το % της συνολικής δανειοληπτικής σας δύναμης που χρησιμοποιείται. Αυτό βασίζεται στο ποσό της παρεχόμενης εξασφάλισής σας και στο συνολικό ποσό που μπορείτε να δανειστείτε.\",\"hehnjM\":\"Ποσό\",\"hjDCQr\":\"Υπήρξε κάποιο σφάλμα. Προσπαθήστε να αλλάξετε τις παραμέτρους ή <0><1>αντιγράψτε το σφάλμα\",\"hom7qf\":\"Διεκδίκηση\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Δανεισμός \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Ασυνεπείς παράμετροι flashloan\",\"iEPVHF\":\"Δεν έχει αρκετή δύναμη ψήφου για να συμμετάσχει στην παρούσα πρόταση\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"Ψηφίσατε \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Εισάγετε ένα ποσό\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens δεν είναι το ίδιο με το να τα κλειδώνετε. Εάν επιθυμείτε να κλειδώσετε τα\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"H χρήση εγγυήσεων είναι περιορισμένη λόγω της λειτουργίας Απομόνωσης.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Προμηθεύοντας το\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Απενεργοποίηση E-Mode\",\"jKYzR1\":\"Ενεργοποίηση E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"δ\"],\"jbFMap\":\"Χρόνος ψύξης που έχει απομείνει\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"Στο E-Mode ορισμένα περιουσιακά στοιχεία δεν είναι δανείσιμα. Βγείτε από το E-Mode για να αποκτήσετε πρόσβαση σε όλα τα περιουσιακά στοιχεία\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Μη διαθέσιμο\",\"k/sb6z\":\"Επιλέξτε γλώσσα\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Διεκδίκηση \",[\"0\"]],\"kH6wUX\":\"Επίδραση στην τιμή\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"Για την εξόφληση εκ μέρους ενός χρήστη απαιτείται ένα ρητό ποσό προς εξόφληση\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Υπέρβαση του ανώτατου ορίου προσφοράς\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Το ανώτατο όριο χρέους δεν είναι μηδενικό\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Αγγλικά\",\"lfEjIE\":\"Μάθετε περισσότερα στον οδηγό <0>Συχνών Ερωτήσεων\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Συνολικές εκπομπές ανά ημέρα\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Εντάξει, Κλείσιμο\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Το περιουσιακό στοιχείο δεν μπορεί να χρησιμοποιηθεί ως εγγύηση.\",\"n+SX4g\":\"Προγραμματιστές\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Προσφορά apy\",\"nJgsQu\":\"Με δύναμη ψήφου <0/>\",\"nLC6tu\":\"Γαλλικά\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Μπορεί να εκτελεστεί\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"ω\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"Ο συντελεστής υγείας και το δάνειο προς αξία καθορίζουν τη διασφάλιση των εξασφαλίσεών σας. Για να αποφύγετε τις ρευστοποιήσεις μπορείτε να παράσχετε περισσότερες εξασφαλίσεις ή να εξοφλήσετε δανειακές θέσεις.\",\"o1xc2V\":\"Η προσφορά AToken δεν είναι μηδενική\",\"o5ooMr\":\"Χρέος\",\"o7J4JM\":\"Φίλτρο\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Ψύξτε για ξεκλείδωμα\",\"oJ5ZiG\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος μεταβλητού επιτοκίου σε αυτό το αποθεματικό\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"Το σταθερό επιτόκιο θα <0>μείνει το ίδιο για όλη τη διάρκεια του δανείου σας. Συνιστάται για μακροχρόνιες περιόδους δανεισμού και για χρήστες που προτιμούν την προβλεψιμότητα.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Διαθέσιμο για προμήθεια\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"Αυτό το περιουσιακό στοιχείο έχει φθάσει στο ανώτατο όριο δανεισμού του. Τίποτα δεν είναι διαθέσιμο για δανεισμό από αυτή την αγορά.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Το υποκείμενο υπόλοιπο πρέπει να είναι μεγαλύτερο από 0\",\"pgWG9H\":\"Δεν υπάρχει αρκετό κλειδωμένο υπόλοιπο\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"παρακαλούμε ελέγξτε ότι το ποσό που θέλετε να παρέχετε δεν χρησιμοποιείται επί του παρόντος για κλείδωμα. Εάν χρησιμοποιείται για κλείδωμα, η συναλλαγή σας ενδέχεται να αποτύχει.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Καταλαβαίνω πώς λειτουργεί η ψύξη (\",[\"0\"],\") και το ξεκλείδωμα (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"Ο καλών αυτής της συνάρτησης πρέπει να είναι ένα κοινόχρηστο ταμείο\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Κλειδωμένο\",\"qB4kPi\":\"Προσφορά APY\",\"qENI8q\":\"Γενικές ρυθμίσεις\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"αντιγράψτε το σφάλμα\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Συνδέστε το πορτοφόλι σας για να δείτε τις προμήθειες, τα δάνεια και τις ανοιχτές θέσεις σας.\",\"qY2jnw\":\"Μη έγκυρη λήξη\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Μη έγκυρη ποσότητα προς καύση\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Το ποσό πρέπει να είναι μεγαλύτερο από 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Εμφάνιση περιουσιακών στοιχείων με υπόλοιπο 0\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Διεκδικήστε όλες τις ανταμοιβές\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Αναθεώρηση συναλλαγής\",\"sP2+gB\":\"ΚΑΤΑ\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Μπορείτε να ξεκλειδώσετε εδώ\",\"smJNwH\":\"Διαθέσιμο για δανεισμό\",\"solypO\":\"Ο παράγοντας υγείας δεν είναι κάτω από το όριο\",\"sr0UJD\":\"Πηγαίνετε Πίσω\",\"ss5GCK\":\"Η διεύθυνση του παρόχου διευθύνσεων κοινόχρηστου ταμείου είναι άκυρη\",\"swEgK4\":\"Οι πληροφορίες ψήφου σας\",\"t+wtgf\":\"Τίποτα δανεισμένο ακόμα\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Τιμή Oracle\",\"tFZLf8\":\"Αυτός ο υπολογισμός gas είναι μόνο μια εκτίμηση. Το πορτοφόλι σας θα καθορίσει την τιμή της συναλλαγής. Μπορείτε να τροποποιήσετε τις ρυθμίσεις gas απευθείας από τον πάροχο του πορτοφολιού σας.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Παρακαλώ, συνδέστε το πορτοφόλι σας\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Οι προμήθειές σας\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Η συναλλαγή απέτυχε\",\"u706uF\":\"Άκυρη πριμοδότηση flashloan\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Για την αποπληρωμή ενός συγκεκριμένου τύπου χρέους, ο χρήστης πρέπει να έχει χρέος αυτού του τύπου\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Απόκρυψη\",\"vMba49\":\"Ο δανεισμός δεν είναι ενεργοποιημένος\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Γλώσσα\",\"vesuBJ\":\"Σας επιτρέπει να αποφασίσετε αν θα χρησιμοποιήσετε ένα παρεχόμενο περιουσιακό στοιχείο ως εγγύηση. Ένα περιουσιακό στοιχείο που χρησιμοποιείται ως εγγύηση θα επηρεάσει τη δανειοληπτική σας ικανότητα και τον συντελεστή υγείας.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Σταθερό νόμισμα\",\"w/JtJ3\":\"Η σταθερή προσφορά χρέους δεν είναι μηδενική\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Ανταμοιβές APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Εσείς \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"Ο καλών της συνάρτησης δεν είναι AToken\",\"wRRqvW\":\"Δεν έχετε προμήθειες σε αυτό το νόμισμα\",\"wZFvVU\":\"ΨΗΦΙΣΤΕ ΥΠΕΡ\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Βρύση \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Τρέχον διαφορικό\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, παρακαλούμε μεταβείτε στο\",\"xNy/UG\":\"Αποπληρωμή με\",\"xPm8wv\":\"Μάθετε περισσότερα για τους κινδύνους\",\"xXYpZl\":[[\"0\"],\" Βρύση\"],\"xaVBSS\":\"Οι πληροφορίες σας\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Ενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"yB1YpA\":\"Σκοτεινή λειτουργία\",\"yCrG6m\":\"Συνολικό μέγεθος της αγοράς\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Επισκόπηση συναλλαγής\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Μη έγκυρη διεύθυνση\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"Δεν μπορείτε να αλλάξετε τη χρήση ως λειτουργία εγγύησης για αυτό το νόμισμα, διότι θα προκαλέσει κλήση εγγύησης\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Δεν υπάρχουν αρκετά κεφάλαια στο\",[\"0\"],\"αποθεματικό για δανεισμό\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Κλείσιμο\",\"z4uGQg\":\"Υπέρβαση του ανώτατου ορίου χρέους\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"Η εγγύηση που έχει επιλεγεί δεν μπορεί να ρευστοποιηθεί\",\"z5Y+p6\":[\"Παροχή \",[\"symbol\"]],\"zCjNKs\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή το αποθεματικό έχει παγώσει\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Υπολειπόμενο χρέος\",\"zmTPiV\":\"Υπόλοιπο προσφοράς\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Μενού\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Μάθετε περισσότερα\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Supply balance after switch\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Show Frozen or paused assets\",\"TszKts\":\"Borrow balance after switch\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file diff --git a/src/locales/en/messages.js b/src/locales/en/messages.js index efc86366d6..5798012af1 100644 --- a/src/locales/en/messages.js +++ b/src/locales/en/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"If you DO NOT unstake within \",[\"0\"],\" of unstake window, you will need to activate cooldown process again.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participating in this \",[\"symbol\"],\" reserve gives annualized rewards.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Borrow cap\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"Stable borrowing is not enabled\",\"/yQcJM\":\"Total worth\",\"00AB2i\":\"User did not borrow the specified currency\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Please connect a wallet to view your personal information here.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Liquidation <0/> threshold\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"View details\",\"2FYpfJ\":\"More\",\"2O3qp5\":\"Available liquidity\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Stable borrowing is enabled\",\"34Qfwy\":\"Borrow cap is exceeded\",\"39eQRj\":[\"Borrow \",[\"symbol\"]],\"3BL1xB\":\"Total supplied\",\"3K0oMo\":\"Remaining supply\",\"3MoZhl\":\"There is not enough collateral to cover a new borrow\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Supply \",[\"symbol\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Repay\",\"3qsjtp\":\"The weighted average of APY for all supplied assets, including incentives.\",\"3rL+os\":\"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Voting results\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"This asset has almost reached its supply cap. There can only be \",[\"messageValue\"],\" supplied to this market.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Variable debt supply is not zero\",\"5che++\":\"To request access for this permissioned market, please visit: <0>Acces Provider Name\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Allowance required action\",\"5rsnKT\":\"Available rewards\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Overview\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Collateral\",\"65A04M\":\"Spanish\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Repay \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Voting power\",\"6f8S68\":\"Markets\",\"6g1gi0\":\"Proposals\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Switch Network\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Health factor\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Reached\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Claim all\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Dashboard\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions\",\"87pUEW\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"All proposals\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Invalid amount to mint\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Disconnect Wallet\",\"8Zz7s5\":\"assets\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Utilization Rate\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Show\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"You are entering Isolation mode\",\"9CDK3/\":[\"Borrowing is currently unavailable for \",[\"0\"],\".\"],\"9GIj3z\":\"Reserve Size\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Current votes\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"This asset has almost reached its borrow cap. There is only \",[\"messageValue\"],\" available to be borrowed from this market.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"This asset has reached its supply cap. Nothing is available to be supplied from this market.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Since this is a test network, you can get any of the assets if you have ETH on your wallet\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Your borrows\",\"AV7cGz\":\"Review approval tx details\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Borrowing power and assets are limited due to Isolation mode.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Collateral usage is limited because of isolation mode. <0>Learn More\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Asset category\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Claim \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Faucet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Collateral is (mostly) the same currency that is being borrowed\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"The underlying asset cannot be rescued\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave per month\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collateralization\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Disabled\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Withdrawing \",[\"symbol\"]],\"EdQY6l\":\"None\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Learn more.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Borrow power used\",\"FPKEug\":\"Operation not supported\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"on\",\"Fjw9N+\":\"Assets to supply\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Assets\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"ends\",\"GtP2hp\":[\"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for \",[\"0\"],\" category. To manage E-Mode categories visit your <0>Dashboard.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Unstake window\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Cooldown period\",\"IaA40H\":\"Liquidation at\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"You can not use this currency as collateral\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Not enough balance on your wallet\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Wallet balance\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Isolated\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Expires\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Wrong Network\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Enter ETH address\",\"KvG1xW\":\"Claiming\",\"L+8Lzs\":\"Current LTV\",\"L+qiq+\":\"Market\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"No voting power\",\"LL0zks\":\"Can be collateral\",\"LLdJWu\":\"Claimable AAVE\",\"LSIpNK\":\"Borrow and repay in same block is not allowed\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Recipient address\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"staking view\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"If the health factor goes below 1, the liquidation of your collateral might be triggered.\",\"Mm/DVQ\":\"You cancelled the transaction.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Invalid return value of the flashloan executor function\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pending...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nothing staked\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Unbacked mint cap is exceeded\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Proposal overview\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"disabled\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Withdraw\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"The weighted average of APY for all borrowed assets, including incentives.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Liquidation threshold\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Not reached\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Disable \",[\"symbol\"],\" as collateral\"],\"RMtxNk\":\"Differential\",\"RNK49r\":\"Invalid signature\",\"RS0o7b\":\"State\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Proposal details\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Asset is not listed\",\"Rj01Fz\":\"Links\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"Health factor is lesser than the liquidation threshold\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Enabled\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Funds in the Safety Module\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Total available\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Disabling E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Pool addresses provider is not registered\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Borrow\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Liquidation penalty\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"Asset can only be used as collateral in isolation mode only.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"User does not have outstanding stable rate debt on this reserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Asset is not borrowable in isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Details\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"These funds have been borrowed and are not available for withdrawal at this time.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No rewards to claim\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Connect wallet\",\"VMfYUK\":\"Safety of your deposited collateral against the borrowed assets and its underlying value.\",\"VOAZJh\":\"Total borrows\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Review tx details\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nothing supplied yet\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more\",\"WPWG/y\":\"Reserve status & configuration\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"User cannot withdraw more than the available balance\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"To borrow you need to supply any asset to be used as collateral.\",\"X/ITG9\":\"Copy error text\",\"X3Pp6x\":\"Used as collateral\",\"X4Zt7j\":\"Action cannot be performed because the reserve is paused\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"You will exit isolation mode and other tokens can now be used as collateral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTE NAY\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Enabling E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Interest rate rebalance conditions were not met\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Aave Governance\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Efficiency mode (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Before supplying\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Liquidation value\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"enabled\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Time left to unstake\",\"a5RYZd\":\"Disabling this asset as collateral affects your borrowing power and Health Factor.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Array parameters that should be equal length are not\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Borrow APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Cooldown period warning\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Asset\",\"bXQ/Og\":\"Share on twitter\",\"bXr0ee\":\"Isolated assets have limited borrowing power and other assets cannot be used as collateral.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"The requested amount is greater than the max loan size in stable rate mode\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Supply\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Address is not a contract\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"You can not withdraw this amount because it will cause collateral call\",\"cBc+4A\":\"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Risk details\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Repaying \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Forum discussion\",\"csDS2L\":\"Available\",\"cu7Stb\":\"You did not participate in this proposal\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Governance\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Ltv validation failed\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Assets to borrow\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Collateral usage\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Action requires an active reserve\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Total borrowed\",\"ecqEvn\":\"The collateral balance is 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstake now\",\"evw5ha\":\"Net worth\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"You switched to \",[\"0\"],\" rate\"],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Your current loan to value based on your collateral supplied.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Withdraw \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"User is trying to borrow multiple assets including a siloed one\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Zero address not valid\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Invalid bridge protocol fee\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Net APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Amount\",\"hjDCQr\":\"There was some error. Please try changing the parameters or <0><1>copy the error\",\"hom7qf\":\"Claim\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Borrowing \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Inconsistent flashloan parameters\",\"iEPVHF\":\"Not enough voting power to participate in this proposal\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"You voted \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Enter an amount\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens is not the same as staking them. If you wish to stake your\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"Collateral usage is limited because of Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Supplying your\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Disable E-Mode\",\"jKYzR1\":\"Enable E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Cooldown time left\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Unavailable\",\"k/sb6z\":\"Select language\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Claim \",[\"0\"]],\"kH6wUX\":\"Price impact\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"To repay on behalf of a user an explicit amount to repay is needed\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Supply cap is exceeded\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Debt ceiling is not zero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"English\",\"lfEjIE\":\"Learn more in our <0>FAQ guide\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Total emission per day\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"mogZv0\":\"Favourite\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Ok, Close\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Asset cannot be used as collateral.\",\"n+SX4g\":\"Developers\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Supply apy\",\"nJgsQu\":\"With a voting power of <0/>\",\"nLC6tu\":\"French\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Can be executed\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"AToken supply is not zero\",\"o5ooMr\":\"Debt\",\"o7J4JM\":\"Filter\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown to unstake\",\"oJ5ZiG\":\"User does not have outstanding variable rate debt on this reserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Available to supply\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"The underlying balance needs to be greater than 0\",\"pgWG9H\":\"Not enough staked balance\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"I understand how cooldown (\",[\"0\"],\") and unstaking (\",[\"1\"],\") work\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"The caller of this function must be a pool\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Staked\",\"qB4kPi\":\"Supply APY\",\"qENI8q\":\"Global settings\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copy the error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Please connect your wallet to see your supplies, borrowings, and open positions.\",\"qY2jnw\":\"Invalid expiration\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Invalid amount to burn\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Amount must be greater than 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Show assets with 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Claim all rewards\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Review tx\",\"sP2+gB\":\"NAY\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"You unstake here\",\"smJNwH\":\"Available to borrow\",\"solypO\":\"Health factor is not below the threshold\",\"sr0UJD\":\"Go Back\",\"ss5GCK\":\"The address of the pool addresses provider is invalid\",\"swEgK4\":\"Your voting info\",\"t+wtgf\":\"Nothing borrowed yet\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Oracle price\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Please, connect your wallet\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Your supplies\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Transaction failed\",\"u706uF\":\"Invalid flashloan premium\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Hide\",\"vMba49\":\"Borrowing is not enabled\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"Stable debt supply is not zero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Rewards APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"You \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"The caller of the function is not an AToken\",\"wRRqvW\":\"You do not have supplies in this currency\",\"wZFvVU\":\"VOTE YAE\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Current differential\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, please go to the\",\"xNy/UG\":\"Repay with\",\"xPm8wv\":\"Learn more about risks involved\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Your info\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Enable \",[\"symbol\"],\" as collateral\"],\"yB1YpA\":\"Dark mode\",\"yCrG6m\":\"Total market size\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Transaction overview\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Not a valid address\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"You can not switch usage as collateral mode for this currency, because it will cause collateral call\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"There are not enough funds in the\",[\"0\"],\"reserve to borrow\"],\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Close\",\"z4uGQg\":\"Debt ceiling is exceeded\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"The collateral chosen cannot be liquidated\",\"z5Y+p6\":[\"Supplying \",[\"symbol\"]],\"zCjNKs\":\"Action cannot be performed because the reserve is frozen\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Remaining debt\",\"zmTPiV\":\"Supply balance\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Learn more\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"If you DO NOT unstake within \",[\"0\"],\" of unstake window, you will need to activate cooldown process again.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participating in this \",[\"symbol\"],\" reserve gives annualized rewards.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Borrow cap\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"Stable borrowing is not enabled\",\"/yQcJM\":\"Total worth\",\"00AB2i\":\"User did not borrow the specified currency\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Please connect a wallet to view your personal information here.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Liquidation <0/> threshold\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"View details\",\"2FYpfJ\":\"More\",\"2O3qp5\":\"Available liquidity\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Stable borrowing is enabled\",\"34Qfwy\":\"Borrow cap is exceeded\",\"39eQRj\":[\"Borrow \",[\"symbol\"]],\"3BL1xB\":\"Total supplied\",\"3K0oMo\":\"Remaining supply\",\"3MoZhl\":\"There is not enough collateral to cover a new borrow\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Supply \",[\"symbol\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Repay\",\"3qsjtp\":\"The weighted average of APY for all supplied assets, including incentives.\",\"3rL+os\":\"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Voting results\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"This asset has almost reached its supply cap. There can only be \",[\"messageValue\"],\" supplied to this market.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Variable debt supply is not zero\",\"5che++\":\"To request access for this permissioned market, please visit: <0>Acces Provider Name\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Allowance required action\",\"5rsnKT\":\"Available rewards\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Overview\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Collateral\",\"65A04M\":\"Spanish\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Repay \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Voting power\",\"6f8S68\":\"Markets\",\"6g1gi0\":\"Proposals\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Switch Network\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Health factor\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Reached\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Claim all\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Dashboard\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions\",\"87pUEW\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"All proposals\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Invalid amount to mint\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Disconnect Wallet\",\"8Zz7s5\":\"assets\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Utilization Rate\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Show\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"You are entering Isolation mode\",\"9CDK3/\":[\"Borrowing is currently unavailable for \",[\"0\"],\".\"],\"9GIj3z\":\"Reserve Size\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Current votes\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"This asset has almost reached its borrow cap. There is only \",[\"messageValue\"],\" available to be borrowed from this market.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"This asset has reached its supply cap. Nothing is available to be supplied from this market.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Since this is a test network, you can get any of the assets if you have ETH on your wallet\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Your borrows\",\"AV7cGz\":\"Review approval tx details\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Borrowing power and assets are limited due to Isolation mode.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Collateral usage is limited because of isolation mode. <0>Learn More\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Asset category\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Claim \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Faucet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Collateral is (mostly) the same currency that is being borrowed\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"The underlying asset cannot be rescued\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave per month\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collateralization\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Disabled\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Withdrawing \",[\"symbol\"]],\"EdQY6l\":\"None\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Learn more.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Borrow power used\",\"FPKEug\":\"Operation not supported\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"on\",\"Fjw9N+\":\"Assets to supply\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Assets\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"ends\",\"GtP2hp\":[\"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for \",[\"0\"],\" category. To manage E-Mode categories visit your <0>Dashboard.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Unstake window\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Cooldown period\",\"IaA40H\":\"Liquidation at\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"You can not use this currency as collateral\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Not enough balance on your wallet\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Wallet balance\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Isolated\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Expires\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Wrong Network\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Enter ETH address\",\"KvG1xW\":\"Claiming\",\"L+8Lzs\":\"Current LTV\",\"L+qiq+\":\"Market\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"No voting power\",\"LL0zks\":\"Can be collateral\",\"LLdJWu\":\"Claimable AAVE\",\"LSIpNK\":\"Borrow and repay in same block is not allowed\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Recipient address\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"staking view\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"If the health factor goes below 1, the liquidation of your collateral might be triggered.\",\"Mm/DVQ\":\"You cancelled the transaction.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Invalid return value of the flashloan executor function\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pending...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nothing staked\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Unbacked mint cap is exceeded\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Proposal overview\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"disabled\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Withdraw\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"The weighted average of APY for all borrowed assets, including incentives.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Liquidation threshold\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Not reached\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Disable \",[\"symbol\"],\" as collateral\"],\"RMtxNk\":\"Differential\",\"RNK49r\":\"Invalid signature\",\"RS0o7b\":\"State\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Proposal details\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Asset is not listed\",\"Rj01Fz\":\"Links\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"Health factor is lesser than the liquidation threshold\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Enabled\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Funds in the Safety Module\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Total available\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Disabling E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Pool addresses provider is not registered\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Borrow\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Liquidation penalty\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"Asset can only be used as collateral in isolation mode only.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"User does not have outstanding stable rate debt on this reserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Asset is not borrowable in isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Details\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"These funds have been borrowed and are not available for withdrawal at this time.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No rewards to claim\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Connect wallet\",\"VMfYUK\":\"Safety of your deposited collateral against the borrowed assets and its underlying value.\",\"VOAZJh\":\"Total borrows\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Review tx details\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nothing supplied yet\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more\",\"WPWG/y\":\"Reserve status & configuration\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"User cannot withdraw more than the available balance\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"To borrow you need to supply any asset to be used as collateral.\",\"X/ITG9\":\"Copy error text\",\"X3Pp6x\":\"Used as collateral\",\"X4Zt7j\":\"Action cannot be performed because the reserve is paused\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"You will exit isolation mode and other tokens can now be used as collateral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTE NAY\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Enabling E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Interest rate rebalance conditions were not met\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Aave Governance\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Efficiency mode (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Before supplying\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Liquidation value\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"enabled\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Time left to unstake\",\"a5RYZd\":\"Disabling this asset as collateral affects your borrowing power and Health Factor.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Array parameters that should be equal length are not\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Borrow APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Cooldown period warning\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Asset\",\"bXQ/Og\":\"Share on twitter\",\"bXr0ee\":\"Isolated assets have limited borrowing power and other assets cannot be used as collateral.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"The requested amount is greater than the max loan size in stable rate mode\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Supply\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Address is not a contract\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"You can not withdraw this amount because it will cause collateral call\",\"cBc+4A\":\"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Risk details\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Repaying \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Forum discussion\",\"csDS2L\":\"Available\",\"cu7Stb\":\"You did not participate in this proposal\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Governance\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Ltv validation failed\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Assets to borrow\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Collateral usage\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Action requires an active reserve\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Total borrowed\",\"ecqEvn\":\"The collateral balance is 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstake now\",\"evw5ha\":\"Net worth\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"You switched to \",[\"0\"],\" rate\"],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Your current loan to value based on your collateral supplied.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Withdraw \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"User is trying to borrow multiple assets including a siloed one\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Zero address not valid\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Invalid bridge protocol fee\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Net APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Amount\",\"hjDCQr\":\"There was some error. Please try changing the parameters or <0><1>copy the error\",\"hom7qf\":\"Claim\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Borrowing \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Inconsistent flashloan parameters\",\"iEPVHF\":\"Not enough voting power to participate in this proposal\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"You voted \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Enter an amount\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens is not the same as staking them. If you wish to stake your\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"Collateral usage is limited because of Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Supplying your\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Disable E-Mode\",\"jKYzR1\":\"Enable E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Cooldown time left\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Unavailable\",\"k/sb6z\":\"Select language\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Claim \",[\"0\"]],\"kH6wUX\":\"Price impact\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"To repay on behalf of a user an explicit amount to repay is needed\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Supply cap is exceeded\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Debt ceiling is not zero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"English\",\"lfEjIE\":\"Learn more in our <0>FAQ guide\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Total emission per day\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Ok, Close\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Asset cannot be used as collateral.\",\"n+SX4g\":\"Developers\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Supply apy\",\"nJgsQu\":\"With a voting power of <0/>\",\"nLC6tu\":\"French\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Can be executed\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"AToken supply is not zero\",\"o5ooMr\":\"Debt\",\"o7J4JM\":\"Filter\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown to unstake\",\"oJ5ZiG\":\"User does not have outstanding variable rate debt on this reserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Available to supply\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"The underlying balance needs to be greater than 0\",\"pgWG9H\":\"Not enough staked balance\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"I understand how cooldown (\",[\"0\"],\") and unstaking (\",[\"1\"],\") work\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"The caller of this function must be a pool\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Staked\",\"qB4kPi\":\"Supply APY\",\"qENI8q\":\"Global settings\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copy the error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Please connect your wallet to see your supplies, borrowings, and open positions.\",\"qY2jnw\":\"Invalid expiration\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Invalid amount to burn\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Amount must be greater than 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Show assets with 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Claim all rewards\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Review tx\",\"sP2+gB\":\"NAY\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"You unstake here\",\"smJNwH\":\"Available to borrow\",\"solypO\":\"Health factor is not below the threshold\",\"sr0UJD\":\"Go Back\",\"ss5GCK\":\"The address of the pool addresses provider is invalid\",\"swEgK4\":\"Your voting info\",\"t+wtgf\":\"Nothing borrowed yet\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Oracle price\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Please, connect your wallet\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Your supplies\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Transaction failed\",\"u706uF\":\"Invalid flashloan premium\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Hide\",\"vMba49\":\"Borrowing is not enabled\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"Stable debt supply is not zero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Rewards APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"You \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"The caller of the function is not an AToken\",\"wRRqvW\":\"You do not have supplies in this currency\",\"wZFvVU\":\"VOTE YAE\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Current differential\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, please go to the\",\"xNy/UG\":\"Repay with\",\"xPm8wv\":\"Learn more about risks involved\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Your info\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Enable \",[\"symbol\"],\" as collateral\"],\"yB1YpA\":\"Dark mode\",\"yCrG6m\":\"Total market size\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Transaction overview\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Not a valid address\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"You can not switch usage as collateral mode for this currency, because it will cause collateral call\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"There are not enough funds in the\",[\"0\"],\"reserve to borrow\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Close\",\"z4uGQg\":\"Debt ceiling is exceeded\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"The collateral chosen cannot be liquidated\",\"z5Y+p6\":[\"Supplying \",[\"symbol\"]],\"zCjNKs\":\"Action cannot be performed because the reserve is frozen\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Remaining debt\",\"zmTPiV\":\"Supply balance\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Learn more\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\"}")}; \ No newline at end of file diff --git a/src/locales/en/messages.po b/src/locales/en/messages.po index 897c57c26d..a9122e5866 100644 --- a/src/locales/en/messages.po +++ b/src/locales/en/messages.po @@ -3367,10 +3367,6 @@ msgstr "Your {name} wallet is empty. Purchase or transfer assets or use <0>{0}Dashboard. To learn more about E-Mode and applied restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Límite del préstamo\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Cantidad para migrar\",\"/7ykiW\":\"Tomar prestado esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"Preguntas frecuentes\",\"/yNlZf\":\"El préstamo estable no está habilitado\",\"/yQcJM\":\"Valor total\",\"00AB2i\":\"El usuario no tomó prestado el activo especificado\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Cambio de tasa\",\"0BF3yK\":\"Lo sentimos, no hemos podido encontrar la página que estabas buscando.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Riesgo de liquidación\",\"0ojY+Y\":\"Balance actual v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Cambio de garantía\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Los datos de los precios no están disponibles actualmente para esta reserva en el subgraph del protocolo\",\"1LjK22\":\"Historial de transacciones\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Por favor conecta una cartera para ver tu información personal aquí.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Umbral <0/> de liquidación\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Ver detalles\",\"2FYpfJ\":\"Más\",\"2O3qp5\":\"Liquidez disponible\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Este activo no se puede migrar debido a una restricción del límite de suministro en el mercado v3 de \",[\"marketName\"],\".\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Por favor introduce una dirección de cartera válida.\",\"2eBWE6\":\"Acepto los riesgos involucadros.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"El préstamo estable no está habilitado\",\"34Qfwy\":\"El límite del préstamo se ha sobrepasado\",\"39eQRj\":[\"Tomar prestado \",[\"symbol\"]],\"3BL1xB\":\"Total suministrado\",\"3K0oMo\":\"Suministro restante\",\"3MoZhl\":\"No hay suficiente garantía para cubrir un nuevo préstamo\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Suministrar \",[\"symbol\"]],\"3mXg0z\":\"LTV máximo\",\"3q3mFy\":\"Pagar\",\"3qsjtp\":\"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrar al mercado V3 de \",[\"0\"]],\"49UFQA\":\"Resultados de la votación\",\"4DMZUI\":\"Ver Transacciones\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Términos\",\"4YYh4d\":\"Máximo disponible para tomar prestado\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Firma para continuar\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transacciones\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue activos de prueba gratis en\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentación\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Este activo casi ha alcanzado su límite de suministro. Solo se puede suministrar \",[\"messageValue\"],\" a este mercado.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"El suministro de deuda variable no es cero\",\"5che++\":\"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso\",\"5ctNdV\":[\"Mínimo \",[\"0\"],\" recibido\"],\"5hDe9v\":\"Acción de permiso requerida\",\"5rsnKT\":\"Recompensas disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Ver todos los votos\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Resumen\",\"60crCe\":\"Todas las transacciones\",\"62Xcjh\":\"Garantía\",\"65A04M\":\"Español\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Firmando\",\"6Jrv+z\":[\"Pagar \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Poder de votación\",\"6f8S68\":\"Mercados\",\"6g1gi0\":\"Propuestas\",\"6gvoHP\":\"Copiar mensaje de error\",\"6h3Q5G\":\"reembolsado\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Cambiar de red\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Factor de salud\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Alcanzado\",\"7YlcXu\":\"El fork mode está activado\",\"7Z76Iw\":\"Tomar prestado no está disponible porque estás usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.\",\"7aKlMS\":\"Compartir en Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Reclamar todo\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"No se pudieron recuperar los datos, por favor recarga el gráfico.\",\"7p5kLi\":\"Panel de control\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Ten cuidado - Estás muy cerca de la liquidación. Considera depositar más garantía o pagar alguno de tus préstamos\",\"87pUEW\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos.\"],\"8F1i42\":\"Página no encontrada\",\"8G8M0u\":\"Cargando datos...\",\"8Iu1QS\":\"retirado\",\"8JL93T\":\"Todas las propuestas\",\"8Q51DU\":\"Añadir a la cartera\",\"8X/oyn\":\"Cantidad invalidad para generar\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Desconectar cartera\",\"8Zz7s5\":\"activos\",\"8aLW8H\":\"Balance a revocar\",\"8bOT3H\":\"Tasa de uso\",\"8sLe4/\":\"Ver contrato\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Mostrar\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Estás entrando en el Isolation mode\",\"9CDK3/\":[\"Tomar prestado no está disponible actualmente para \",[\"0\"],\".\"],\"9GIj3z\":\"Tamaño de la reserva\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Balance stakeado\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votos actuales\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Este activo casi ha alcanzado su límite de préstamo. Solo hay \",[\"messageValue\"],\" disponibles para ser prestado de este mercado.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Este activo ha alcanzado su límite de suministro. No queda nada disponible para ser suministrado desde este mercado.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Token subyacente\",\"9xSooW\":\"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Elige uno de los servicios on-ramp\",\"A6dCI6\":[\"La máxima cantidad disponible para tomar prestado es <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Tus préstamos\",\"AV7cGz\":\"Revisa los detalles del approve\",\"AZOjB8\":\"Recuperando datos...\",\"Ai0jas\":\"Únete a la discusión de la comunidad\",\"Ajl2rq\":\"El poder de préstamo y los activos están limitados debido al Isolation mode.\",\"AqgYNC\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH suministrado como garantía continuará acumulando recompensas de staking proporcionadas por rebases diarios.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"El uso como garantía está limitado debido al isolation mode. <0>Aprende más\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Categoría de activos\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Este activo está congelado debido a una decisión de la comunidad de Aave. <0>Más información\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Documento técnico\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Griego\",\"CkTRmy\":[\"Reclamar \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Por favor conecta tu cartera para ver la herramienta de migración.\",\"CtGlFb\":[\"Faucet \",[\"networkName\"]],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"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.\",\"DAma/S\":\"La garantía es (en su mayoría) el mismo activo que se está tomando prestado\",\"DCnFg0\":[\"Direcciones (\",[\"0\"],\")\"],\"DG3Lv1\":\"Entiendo completamente los riesgos de migrar.\",\"DONJcV\":\"El activo base no puede ser rescatado\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave por mes\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Colateralización\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Deshabilitado\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restakeando \",[\"symbol\"]],\"Ebgc76\":[\"Retirando \",[\"symbol\"]],\"EdQY6l\":\"Ninguno\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivar el periodo de cooldown para unstakear \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrar a V3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Aprende más.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Balance actual v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Capacidad de préstamo utilizada\",\"FPKEug\":\"Operación no soportada\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Direcciones vinculadas\",\"Fdp03t\":\"en\",\"Fjw9N+\":\"Activos a suministrar\",\"FmN0fk\":\"Restakear\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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\xA0la\xA0DAO\xA0de\xA0Aave.\",\"GQrBTq\":\"Cambiar E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Activos\",\"GgEj+0\":\"Modo de solo lectura. Conéctate a una cartera para realizar transacciones.\",\"GjkIKV\":\"finaliza\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la página, o volver después.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Ventana de unstakeo\",\"HpK/8d\":\"Recargar\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Este activo no se puede migrar al mercado v3 de \",[\"marketName\"],\", ya que el activo de garantía habilitará el isolation mode.\"],\"Hvwnm9\":[\"La cantidad máxima disponible para suministrar está limitada porque el límite de suministro del protocolo está al \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"La cantidad total de tus activos denominados en USD que pueden ser usados como garantía para activos de préstamo.\",\"IAD2SB\":[\"Reclamando \",[\"symbol\"]],\"IG9X9/\":\"Tomar prestado este activo está limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"Está previsto que este activo se desvincule debido a una decisión del Gobierno del Protocolo Aave. <0>Más detalles\",\"IP+I/j\":\"Periodo de cooldown\",\"IaA40H\":\"Liquidación en\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Administrar analíticas\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstakeando \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"No puedes usar este activo como garantía\",\"JYKRJS\":\"Stakear\",\"JZMxX0\":\"No hay suficiente balance en tu cartera\",\"Jgflkm\":\"Obtener GHO\",\"JoMQnI\":\"Balance de la cartera\",\"JtwD8u\":\"Balance tomado prestado tras pagar\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"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.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Aislado\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Cambiando E-Mode\",\"KnN1Tu\":\"Caduca\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Red incorrecta\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Introduce la dirección ETH\",\"KvG1xW\":\"Reclamando\",\"L+8Lzs\":\"LTV actual\",\"L+qiq+\":\"Mercado\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Sin poder de voto\",\"LL0zks\":\"Puede ser garantía\",\"LLdJWu\":\"AAVE Reclamable\",\"LSIpNK\":\"Tomar prestado y pagar en el mismo bloque no está permitido\",\"LVt3TI\":[\"<0>Tolerancia de deslizamiento <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Modo E\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Dirección del destinatario\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vista de stakeo\",\"McHlGl\":\"Cambio de APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si el factor de salud se encuentra por debajo de 1, la liquidación de tu colateral puede ser activada.\",\"Mm/DVQ\":\"Has cancelado la transacción.\",\"MnE2QX\":\"Información de préstamo\",\"MuDFEQ\":\"Valor de retorno inválido en la función executor del préstamo flash\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pendiente...\",\"NK9ikO\":\"Balance de la cartera\",\"NMt2CB\":\"Cantidad reclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nada invertido\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"El límite de minteo sin respaldo ha sido excedido\",\"O+tyU+\":[\"La cantidad máxima disponible para tomar prestado contra este activo está limitada porque el límite de deuda está al \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstakear\",\"OR8cYX\":\"Resumen de la propuesta\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"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.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Restablecer\",\"Og2SKn\":\"deshabilitado\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Página web\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirar\",\"P1dURE\":\"Revocar poder\",\"P2WCD/\":[\"El activo subyacente no existe en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stakea ABPT\",\"P72/OW\":\"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.\",\"P7e6Ug\":\"Por favor conecta tu cartera para ver el historial de transacciones.\",\"PByO0X\":\"Votos\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Deshabilitar fork\",\"PJK9u/\":\"Apy préstamo\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Umbral de liquidación\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Retirando\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"No alcanzado\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Desactivar \",[\"symbol\"],\" como garantía\"],\"RMtxNk\":\"Diferencial\",\"RNK49r\":\"Firma inválida\",\"RS0o7b\":\"Estado\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Detalles de la propuesta\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"El activo no está listado\",\"Rj01Fz\":\"Enlaces\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"El factor de salud es menor que el umbral de liquidación\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Habilitado\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fondos en el Módulo de Seguridad\",\"SENccp\":\"Si el error persiste, <0/> podrías reportarlo a esto\",\"SM58dD\":\"Cantidad en cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Umbral de liquidación\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrás realizar transacciones.\",\"SZRUQ4\":\"Deslizamiento máximo\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"Sk2zW9\":\"Desactivando E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"La dirección del proveedor del pool no esta registrada\",\"T/AIqG\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"T0xCO9\":\"No se puede validar la dirección de la cartera. Vuelve a intentarlo.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Tomar prestado\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Penalización de liquidación\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"El activo solo puede usarse como garantía en el Isolation mode únicamente.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"El usuario no tiene deuda pendiente de tasa estable en esta reserva\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recarga la página\",\"U2r8nY\":\"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.\",\"U8IubP\":\"La aplicación se está ejecutando en testnet mode. Aprende como funciona en\",\"U9btTk\":\"El activo no se puede pedir prestado en isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Detalles\",\"UTTKmT\":\"Cooldown de stakeo activado\",\"UXeR72\":\"Estos fondos se han tomado prestados y no están disponibles para su retirada en este momento.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No hay recompensas para reclamar\",\"V0f2Xv\":\"Factor de reserva\",\"V1HK43\":\"Riesgos de migración\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Deuda cubierta\",\"VHOVEJ\":\"Conectar cartera\",\"VMfYUK\":\"Seguridad de tu garantía depositada contra los activos prestados y su valor subyacente.\",\"VOAZJh\":\"Total de préstamos\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Revisar detalles de la tx\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nada suministrado aún\",\"W5kTFy\":\"Votando\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"El E-Mode incrementa tu LTV para una categoría seleccionada de activos hasta el <0/>. <1>Aprende más\",\"WPWG/y\":\"Configuración y estado de la reserva\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"El usuario no puede retirar más que el balance disponible\",\"WaZyaV\":\"<0>Ampleforth es un activo con rebase. Visita la <1>documentación para aprender más.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Debido a que este activo está en pausa, no se pueden realizar acciones hasta nuevo aviso\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantía.\",\"X/ITG9\":\"Copiar el texto del error\",\"X3Pp6x\":\"Utilizado como garantía\",\"X4Zt7j\":\"No se puede realizar la acción porque la reserva está pausada\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Saldrás del modo aislamiento y otros tokens pueden ser usados ahora como garantía\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTAR NO\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Habilitar E-Mode\",\"YSodyW\":\"Esta acción reducirá tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidación de la garantía.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode está ON\",\"YrDxdO\":\"Si tu relación préstamo-valor supera el umbral de liquidación, tu garantía puede ser liquidada.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"No se cumplieron las condiciones de ajuste de tasas de interés\",\"YyydIq\":[\"Añade \",[\"0\"],\" a tu cartera para hacer un seguimiento del balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gobierno de Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Modo de eficiencia (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Deshabilitar testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Antes de suministrar\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valor de liquidación\",\"ZrEc8j\":\"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.\",\"ZsLF7e\":\"habilitado\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Tempo restante para unstakear\",\"a5RYZd\":\"Deshabilitar este activo como garantía afecta tu poder de préstamo y Factor de Salud.\",\"a7u1N9\":\"Precio\",\"a9D+6D\":\"Unstakeado\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Votar NO\",\"aMmFE1\":\"Comprar Crypto con Fiat\",\"aOKIms\":\"Los parámetros del array que deberían ser iguales en longitud no lo son\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"Se ha producido un error al recuperar la propuesta.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"APY préstamo, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Advertencia periodo de cooldown\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Activo\",\"bXQ/Og\":\"Compartir en twitter\",\"bXr0ee\":\"Los activos aislados han limitado tu capacidad de préstamo y otros activos no pueden ser usados como garantía.\",\"bYmAV1\":\"Direcciones\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"La cantidad solicitada es mayor que el tamaño máximo del préstamo en el modo de tasa estable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Suministrar\",\"bxN6EM\":\"No se puede deshabilitar E-Mode\",\"c91vuQ\":\"La dirección no es un contrato\",\"c97os2\":\"aToken de Aave\",\"c9b44w\":\"No puedes retirar esta cantidad porque causará una liquidación\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"cLo09S\":\"Detalles de riesgo\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Votar SI\",\"ckf7gX\":[\"Pagando \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Hilo de discusión del foro\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"No has participado en esta propuesta\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gobierno\",\"dEgA5A\":\"Cancelar\",\"dIsyWh\":\"La validación del LTV ha fallado\",\"dOB5nW\":[\"La cantidad máxima disponible para suministrar es <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Activos a tomar prestado\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Tomar prestado está deshabilitado debido a una decisión de la comunidad de Aave. <0>Más información\",\"djsg0o\":\"Uso de la garantía\",\"drdV8R\":\"Liquidación\",\"dxW8cS\":\"Token de deuda de Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 direcciones\",\"eD8WX/\":\"La acción requiere una reserva activa\",\"eJRJ04\":\"Cantidad para unstakear\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Editar\",\"eVpCmf\":\"Recompensas de Staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aún no hay transacciones.\",\"ebLGGN\":\"Total tomado prestado\",\"ecqEvn\":\"El balance de garantía es 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible en\",\"enruNF\":\"empieza\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstakea ahora\",\"evw5ha\":\"Valor neto\",\"ezcU16\":\"Obtener Token ABP\",\"f3W0Ej\":[\"Has cambiado a tasa \",[\"0\"]],\"fMJQZK\":\"Prestado\",\"fZ5Vnu\":\"Recibido\",\"firl9Q\":\"Tu actual relación préstamo-valor basado en tu garantía suministrada.\",\"fldjW9\":\"Previsualizar la tx y migrar\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Retirar \",[\"symbol\"]],\"fwjWSI\":\"Suministrado\",\"fwyTMb\":\"Migrar a stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Votó NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Este activo está congelado debido a una decisión del Gobierno del Protocolo Aave. <0>More información\",\"gTHi2T\":\"El usuario está intentando tomar prestado múltiples activos incluido uno aislado\",\"gVW59Y\":\"Por favor conecta tu cartera para obtener activos testnet gratis.\",\"gcFNxP\":\"Aprobación confirmada\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Dirección cero no válida\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Comisión de puente de protocolo inválida\",\"h33MxW\":\"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activar Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY neto\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Reclamado\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Cantidad\",\"hjDCQr\":\"Hubo un error. Por favor intenta cambiar los parámetros o <0><1>copiar el error\",\"hom7qf\":\"Reclamar\",\"hpHJ4I\":\"Garantía liquidada\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Tomando prestado \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"Sobre GHO\",\"iChbOF\":\"Parámetros inconsistentes del préstamo flash\",\"iEPVHF\":\"No hay suficiente poder de voto para participar en esta propuesta\",\"iEW87X\":\"Poder delegado\",\"iEju36\":[\"Has votado \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Seleccionar tolerancia de deslizamiento\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Ingresa una cantidad\",\"iSLIjg\":\"Conectar\",\"iUo5rv\":\"tokens no es lo mismo que stakearlos. Si deseas stakearlos\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Úsalo para votar a favor o en contra de propuestas activas.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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 \"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"El uso de garantías está limitado debido al Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Suministrando tu\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Desactivar el E-Mode\",\"jKYzR1\":\"Habilitar E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Periodo restante de cooldown\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrado\",\"jmXdoY\":\"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"No disponible\",\"k/sb6z\":\"Seleccionar idioma\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Reclamar \",[\"0\"]],\"kH6wUX\":\"Impacto del precio\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" activos seleccionados\"],\"kN1Yg5\":\"Para pagar en nombre de un usuario, se necesita una cantidad explícita para pagar\",\"kRTD40\":[\"Cantidad a pagar para alcanzar el \",[\"0\"],\"% de utilización\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"El límite de suministro se ha sobrepasado\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"El límite de deuda no es cero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"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.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"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\"],\".\"],\"lVhKKI\":\"Votó YAE\",\"lWLqxB\":\"No pudimos encontrar ninguna transacción relacionada con tu búsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Inglés\",\"lfEjIE\":\"Aprende más en nuestra guía <0>Preguntas frecuentes\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Emisiones totales por día\",\"m7r7Hh\":\"Activos de préstamo seleccionados\",\"mDDK4p\":\"Pool de Balancer\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos o usa <0>\",[\"0\"],\" para transferir tus activos de \",[\"network\"],\".\"],\"me5LMQ\":\"Checking approval\",\"mogZv0\":\"Favourite\",\"muiOng\":[\"Comprar \",[\"cryptoSymbol\"],\" con Fiat\"],\"mvCXBY\":\"Stakea AAVE\",\"mwdzil\":\"Vale, cerrar\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Este activo no puede usarse como garantía.\",\"n+SX4g\":\"Desarrolladores\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Apy de suministro\",\"nJgsQu\":\"Con un poder de votación de <0/>\",\"nLC6tu\":\"Francés\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposición\",\"nPGNMh\":\"Puede ser ejecutado\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Ambos\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Se produjo un error\",\"nxyWvj\":\"Retirar esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"El balance de AToken no es cero\",\"o5ooMr\":\"Deuda\",\"o7J4JM\":\"Filtro\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown para undstakear\",\"oJ5ZiG\":\"El usuario no tiene deuda pendiente de tasa variable en esta reserva\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Activos de prueba\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible para suministrar\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Sin resultados\",\"owSsI3\":\"Firmas listas\",\"p+R52m\":\"Ir al pool de Balancer\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Este activo ha alcanzado su límite de préstamo. No queda nada disponible para ser prestado de este mercado.\",\"p45alK\":\"Configurar la delegación\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"El balance subyacente debe ser mayor que 0\",\"pgWG9H\":\"No hay suficiente balance stakeado\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Cantidad mínima recibida\",\"pooutM\":\"La votación está activa\",\"pqaM5s\":\"Confirmando transacción\",\"ptaxX3\":[\"Entiendo como el cooldown (\",[\"0\"],\") y el proceso de unstaking (\",[\"1\"],\") funcionan\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"La función debe ser llamada por un pool\",\"q/51mF\":\"Migrar a V3\",\"q3df11\":\"Estrategia de tasa de interés\",\"q6lAbz\":\"Stakeado\",\"qB4kPi\":\"Suministrar APY\",\"qENI8q\":\"Configuración global\",\"qGz5zl\":\"Balance de la garantía tras pagar\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copiar el error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Por favor, conecta tu cartera para ver tus suministros, préstamos y posiciones abiertas.\",\"qY2jnw\":\"Expiración inválida\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Cantidad inválida para quemar\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"La cantidad debe ser mayor que 0\",\"rQ+R+0\":\"Activos de suministro seleccionados\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"\"],\"rcT+yy\":\"Mostrar activos con 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacidad\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Reclamar todas las recompensas\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Tu poder de proposición se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstakear \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Revisión tx\",\"sP2+gB\":\"NO\",\"sQv06Y\":\"para\",\"sTtO6J\":\"Confirmar transacción\",\"sXKb3l\":\"Tasa de cambio\",\"sb0q4+\":\"Unstakea aquí\",\"smJNwH\":\"Disponible para tomar prestado\",\"solypO\":\"El factor de salud no está por debajo del umbral\",\"sr0UJD\":\"Volver atrás\",\"ss5GCK\":\"La dirección del proveedor del grupo de direcciones no es válida\",\"swEgK4\":\"Tu información de voto\",\"t+wtgf\":\"Nada tomado prestado aún\",\"t/YqKh\":\"Eliminar\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Precio del oráculo\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Ir al panel de control V3\",\"tOcg3N\":\"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\",\"tOuXfv\":[\"Cantidad a tomar prestado para alcanzar el \",[\"0\"],\"% de utilización\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Por favor, conecta tu cartera\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Tus suministros\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Error en la transacción\",\"u706uF\":\"Préstamo flash inválido\",\"u8Gfu7\":[\"Sin resultados de búsqueda\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No hay activos seleccionados para migrar.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrando\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Para el pago de un tipo específico de deuda, el usuario necesita tener una deuda de ese tipo\",\"ulNuNq\":\"Exportar datos a\",\"ulup2p\":\"Comprar Crypto con Fiat\",\"usB84Z\":\"La cantidad máxima disponible para tomar prestado está limitada porque casi se ha alcanzado el límite de préstamo del protocolo.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"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.\",\"vEqxH9\":\"Restakeado\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Ocultar\",\"vMba49\":\"Tomar prestado no está habilitado\",\"vMpNwt\":\"Aprobar con\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Idioma\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"El balance de deuda estable no es cero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"APR de recompensas\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Tu \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Canal de Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"El llamador de la función no es un AToken\",\"wRRqvW\":\"No tienes suministros en este activo\",\"wZFvVU\":\"VOTAR SI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"No tienes balance de AAVE/stkAAVE/aAave para delegar.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Obtener Token ABP v2\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.\",\"x7F2p6\":\"Diferencial actual\",\"x7K5ib\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue \",[\"0\"],\" de prueba gratis en\"],\"x9iLRD\":\"tokens, por favor ve al\",\"xNy/UG\":\"Pagar con\",\"xPm8wv\":\"Aprende más sobre los riesgos involucrados\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Tu información\",\"xaWZ6f\":\"Cambio tipo de APY\",\"xh6k71\":\"El uso de garantías está limitado debido al isolation mode.\",\"xvIklc\":\"El préstamo flash está deshabilitado para este activo, por lo tanto, esta posición no se puede migrar.\",\"y5rS9U\":\"Migrar\",\"y66tBm\":[\"Habilitar \",[\"symbol\"],\" como garantía\"],\"yB1YpA\":\"Modo oscuro\",\"yCrG6m\":\"Tamaño total del mercado\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Resumen de la transacción\",\"yLGmLX\":[\"Restakear \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Dirección no válida\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Haz seguimiento de tu cartera\",\"yh2sjd\":[\"Impacto en el precio \",[\"0\"],\"%\"],\"yhvj6d\":\"No puedes cambiar el uso como modo de garantía para este activo, porque causará una liquidación\",\"ylmtBZ\":\"La aplicación se ejecuta en fork mode.\",\"ymNY32\":[\"No hay fondos suficientes en la reserva\",[\"0\"],\"para tomar prestado\"],\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Cerrar\",\"z4uGQg\":\"El límite de deuda está sobrepasado\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantía elegida no puede ser liquidada\",\"z5Y+p6\":[\"Suministrando \",[\"symbol\"]],\"zCjNKs\":\"No se puede realizar la acción porque la reserva está congelada\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Límite de deuda aislado\",\"zTOjMP\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Deuda restante\",\"zmTPiV\":\"Balance de suministro\",\"zpPbZl\":\"Parámetros de riesgo de liquidación\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menú\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Aprende más\",\"zy9fXn\":[\"Este activo está congelado en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"zys+R6\":\"Ten en cuenta la congestión de la red y los precios del gas.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Balance del suministro después del cambio\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Mostrar activos congelados o pausados\",\"TszKts\":\"Balance de préstamo después del cambio\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Si NO unstakeas entre \",[\"0\"],\" de la ventana de unstakeo, necesitarás activar el proceso de cooldown de nuevo.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participar en esta reserva de \",[\"symbol\"],\" da recompensas anuales.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Límite del préstamo\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Cantidad para migrar\",\"/7ykiW\":\"Tomar prestado esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"Preguntas frecuentes\",\"/yNlZf\":\"El préstamo estable no está habilitado\",\"/yQcJM\":\"Valor total\",\"00AB2i\":\"El usuario no tomó prestado el activo especificado\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Cambio de tasa\",\"0BF3yK\":\"Lo sentimos, no hemos podido encontrar la página que estabas buscando.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Riesgo de liquidación\",\"0ojY+Y\":\"Balance actual v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Cambio de garantía\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Los datos de los precios no están disponibles actualmente para esta reserva en el subgraph del protocolo\",\"1LjK22\":\"Historial de transacciones\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Por favor conecta una cartera para ver tu información personal aquí.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Umbral <0/> de liquidación\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Ver detalles\",\"2FYpfJ\":\"Más\",\"2O3qp5\":\"Liquidez disponible\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Este activo no se puede migrar debido a una restricción del límite de suministro en el mercado v3 de \",[\"marketName\"],\".\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Por favor introduce una dirección de cartera válida.\",\"2eBWE6\":\"Acepto los riesgos involucadros.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"El préstamo estable no está habilitado\",\"34Qfwy\":\"El límite del préstamo se ha sobrepasado\",\"39eQRj\":[\"Tomar prestado \",[\"symbol\"]],\"3BL1xB\":\"Total suministrado\",\"3K0oMo\":\"Suministro restante\",\"3MoZhl\":\"No hay suficiente garantía para cubrir un nuevo préstamo\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Suministrar \",[\"symbol\"]],\"3mXg0z\":\"LTV máximo\",\"3q3mFy\":\"Pagar\",\"3qsjtp\":\"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrar al mercado V3 de \",[\"0\"]],\"49UFQA\":\"Resultados de la votación\",\"4DMZUI\":\"Ver Transacciones\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Términos\",\"4YYh4d\":\"Máximo disponible para tomar prestado\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Firma para continuar\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transacciones\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue activos de prueba gratis en\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentación\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Este activo casi ha alcanzado su límite de suministro. Solo se puede suministrar \",[\"messageValue\"],\" a este mercado.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"El suministro de deuda variable no es cero\",\"5che++\":\"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso\",\"5ctNdV\":[\"Mínimo \",[\"0\"],\" recibido\"],\"5hDe9v\":\"Acción de permiso requerida\",\"5rsnKT\":\"Recompensas disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Ver todos los votos\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Resumen\",\"60crCe\":\"Todas las transacciones\",\"62Xcjh\":\"Garantía\",\"65A04M\":\"Español\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Firmando\",\"6Jrv+z\":[\"Pagar \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Poder de votación\",\"6f8S68\":\"Mercados\",\"6g1gi0\":\"Propuestas\",\"6gvoHP\":\"Copiar mensaje de error\",\"6h3Q5G\":\"reembolsado\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Cambiar de red\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Factor de salud\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Alcanzado\",\"7YlcXu\":\"El fork mode está activado\",\"7Z76Iw\":\"Tomar prestado no está disponible porque estás usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.\",\"7aKlMS\":\"Compartir en Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Reclamar todo\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"No se pudieron recuperar los datos, por favor recarga el gráfico.\",\"7p5kLi\":\"Panel de control\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Ten cuidado - Estás muy cerca de la liquidación. Considera depositar más garantía o pagar alguno de tus préstamos\",\"87pUEW\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos.\"],\"8F1i42\":\"Página no encontrada\",\"8G8M0u\":\"Cargando datos...\",\"8Iu1QS\":\"retirado\",\"8JL93T\":\"Todas las propuestas\",\"8Q51DU\":\"Añadir a la cartera\",\"8X/oyn\":\"Cantidad invalidad para generar\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Desconectar cartera\",\"8Zz7s5\":\"activos\",\"8aLW8H\":\"Balance a revocar\",\"8bOT3H\":\"Tasa de uso\",\"8sLe4/\":\"Ver contrato\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Mostrar\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Estás entrando en el Isolation mode\",\"9CDK3/\":[\"Tomar prestado no está disponible actualmente para \",[\"0\"],\".\"],\"9GIj3z\":\"Tamaño de la reserva\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Balance stakeado\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votos actuales\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Este activo casi ha alcanzado su límite de préstamo. Solo hay \",[\"messageValue\"],\" disponibles para ser prestado de este mercado.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Este activo ha alcanzado su límite de suministro. No queda nada disponible para ser suministrado desde este mercado.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Token subyacente\",\"9xSooW\":\"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Elige uno de los servicios on-ramp\",\"A6dCI6\":[\"La máxima cantidad disponible para tomar prestado es <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Tus préstamos\",\"AV7cGz\":\"Revisa los detalles del approve\",\"AZOjB8\":\"Recuperando datos...\",\"Ai0jas\":\"Únete a la discusión de la comunidad\",\"Ajl2rq\":\"El poder de préstamo y los activos están limitados debido al Isolation mode.\",\"AqgYNC\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH suministrado como garantía continuará acumulando recompensas de staking proporcionadas por rebases diarios.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"El uso como garantía está limitado debido al isolation mode. <0>Aprende más\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Categoría de activos\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Este activo está congelado debido a una decisión de la comunidad de Aave. <0>Más información\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Documento técnico\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Griego\",\"CkTRmy\":[\"Reclamar \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Por favor conecta tu cartera para ver la herramienta de migración.\",\"CtGlFb\":[\"Faucet \",[\"networkName\"]],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"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.\",\"DAma/S\":\"La garantía es (en su mayoría) el mismo activo que se está tomando prestado\",\"DCnFg0\":[\"Direcciones (\",[\"0\"],\")\"],\"DG3Lv1\":\"Entiendo completamente los riesgos de migrar.\",\"DONJcV\":\"El activo base no puede ser rescatado\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave por mes\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Colateralización\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Deshabilitado\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restakeando \",[\"symbol\"]],\"Ebgc76\":[\"Retirando \",[\"symbol\"]],\"EdQY6l\":\"Ninguno\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivar el periodo de cooldown para unstakear \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrar a V3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Aprende más.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Balance actual v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Capacidad de préstamo utilizada\",\"FPKEug\":\"Operación no soportada\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Direcciones vinculadas\",\"Fdp03t\":\"en\",\"Fjw9N+\":\"Activos a suministrar\",\"FmN0fk\":\"Restakear\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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\xA0la\xA0DAO\xA0de\xA0Aave.\",\"GQrBTq\":\"Cambiar E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Activos\",\"GgEj+0\":\"Modo de solo lectura. Conéctate a una cartera para realizar transacciones.\",\"GjkIKV\":\"finaliza\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la página, o volver después.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Ventana de unstakeo\",\"HpK/8d\":\"Recargar\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Este activo no se puede migrar al mercado v3 de \",[\"marketName\"],\", ya que el activo de garantía habilitará el isolation mode.\"],\"Hvwnm9\":[\"La cantidad máxima disponible para suministrar está limitada porque el límite de suministro del protocolo está al \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"La cantidad total de tus activos denominados en USD que pueden ser usados como garantía para activos de préstamo.\",\"IAD2SB\":[\"Reclamando \",[\"symbol\"]],\"IG9X9/\":\"Tomar prestado este activo está limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"Está previsto que este activo se desvincule debido a una decisión del Gobierno del Protocolo Aave. <0>Más detalles\",\"IP+I/j\":\"Periodo de cooldown\",\"IaA40H\":\"Liquidación en\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Administrar analíticas\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstakeando \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"No puedes usar este activo como garantía\",\"JYKRJS\":\"Stakear\",\"JZMxX0\":\"No hay suficiente balance en tu cartera\",\"Jgflkm\":\"Obtener GHO\",\"JoMQnI\":\"Balance de la cartera\",\"JtwD8u\":\"Balance tomado prestado tras pagar\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"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.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Aislado\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Cambiando E-Mode\",\"KnN1Tu\":\"Caduca\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Red incorrecta\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Introduce la dirección ETH\",\"KvG1xW\":\"Reclamando\",\"L+8Lzs\":\"LTV actual\",\"L+qiq+\":\"Mercado\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Sin poder de voto\",\"LL0zks\":\"Puede ser garantía\",\"LLdJWu\":\"AAVE Reclamable\",\"LSIpNK\":\"Tomar prestado y pagar en el mismo bloque no está permitido\",\"LVt3TI\":[\"<0>Tolerancia de deslizamiento <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Modo E\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Dirección del destinatario\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vista de stakeo\",\"McHlGl\":\"Cambio de APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si el factor de salud se encuentra por debajo de 1, la liquidación de tu colateral puede ser activada.\",\"Mm/DVQ\":\"Has cancelado la transacción.\",\"MnE2QX\":\"Información de préstamo\",\"MuDFEQ\":\"Valor de retorno inválido en la función executor del préstamo flash\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pendiente...\",\"NK9ikO\":\"Balance de la cartera\",\"NMt2CB\":\"Cantidad reclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nada invertido\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"El límite de minteo sin respaldo ha sido excedido\",\"O+tyU+\":[\"La cantidad máxima disponible para tomar prestado contra este activo está limitada porque el límite de deuda está al \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstakear\",\"OR8cYX\":\"Resumen de la propuesta\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"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.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Restablecer\",\"Og2SKn\":\"deshabilitado\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Página web\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirar\",\"P1dURE\":\"Revocar poder\",\"P2WCD/\":[\"El activo subyacente no existe en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stakea ABPT\",\"P72/OW\":\"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.\",\"P7e6Ug\":\"Por favor conecta tu cartera para ver el historial de transacciones.\",\"PByO0X\":\"Votos\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Deshabilitar fork\",\"PJK9u/\":\"Apy préstamo\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Umbral de liquidación\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Retirando\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"No alcanzado\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Desactivar \",[\"symbol\"],\" como garantía\"],\"RMtxNk\":\"Diferencial\",\"RNK49r\":\"Firma inválida\",\"RS0o7b\":\"Estado\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Detalles de la propuesta\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"El activo no está listado\",\"Rj01Fz\":\"Enlaces\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"El factor de salud es menor que el umbral de liquidación\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Habilitado\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fondos en el Módulo de Seguridad\",\"SENccp\":\"Si el error persiste, <0/> podrías reportarlo a esto\",\"SM58dD\":\"Cantidad en cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Umbral de liquidación\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrás realizar transacciones.\",\"SZRUQ4\":\"Deslizamiento máximo\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"Sk2zW9\":\"Desactivando E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"La dirección del proveedor del pool no esta registrada\",\"T/AIqG\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"T0xCO9\":\"No se puede validar la dirección de la cartera. Vuelve a intentarlo.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Tomar prestado\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Penalización de liquidación\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"El activo solo puede usarse como garantía en el Isolation mode únicamente.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"El usuario no tiene deuda pendiente de tasa estable en esta reserva\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recarga la página\",\"U2r8nY\":\"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.\",\"U8IubP\":\"La aplicación se está ejecutando en testnet mode. Aprende como funciona en\",\"U9btTk\":\"El activo no se puede pedir prestado en isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Detalles\",\"UTTKmT\":\"Cooldown de stakeo activado\",\"UXeR72\":\"Estos fondos se han tomado prestados y no están disponibles para su retirada en este momento.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No hay recompensas para reclamar\",\"V0f2Xv\":\"Factor de reserva\",\"V1HK43\":\"Riesgos de migración\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Deuda cubierta\",\"VHOVEJ\":\"Conectar cartera\",\"VMfYUK\":\"Seguridad de tu garantía depositada contra los activos prestados y su valor subyacente.\",\"VOAZJh\":\"Total de préstamos\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Revisar detalles de la tx\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nada suministrado aún\",\"W5kTFy\":\"Votando\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"El E-Mode incrementa tu LTV para una categoría seleccionada de activos hasta el <0/>. <1>Aprende más\",\"WPWG/y\":\"Configuración y estado de la reserva\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"El usuario no puede retirar más que el balance disponible\",\"WaZyaV\":\"<0>Ampleforth es un activo con rebase. Visita la <1>documentación para aprender más.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Debido a que este activo está en pausa, no se pueden realizar acciones hasta nuevo aviso\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantía.\",\"X/ITG9\":\"Copiar el texto del error\",\"X3Pp6x\":\"Utilizado como garantía\",\"X4Zt7j\":\"No se puede realizar la acción porque la reserva está pausada\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Saldrás del modo aislamiento y otros tokens pueden ser usados ahora como garantía\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTAR NO\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Habilitar E-Mode\",\"YSodyW\":\"Esta acción reducirá tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidación de la garantía.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode está ON\",\"YrDxdO\":\"Si tu relación préstamo-valor supera el umbral de liquidación, tu garantía puede ser liquidada.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"No se cumplieron las condiciones de ajuste de tasas de interés\",\"YyydIq\":[\"Añade \",[\"0\"],\" a tu cartera para hacer un seguimiento del balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gobierno de Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Modo de eficiencia (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Deshabilitar testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Antes de suministrar\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valor de liquidación\",\"ZrEc8j\":\"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.\",\"ZsLF7e\":\"habilitado\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Tempo restante para unstakear\",\"a5RYZd\":\"Deshabilitar este activo como garantía afecta tu poder de préstamo y Factor de Salud.\",\"a7u1N9\":\"Precio\",\"a9D+6D\":\"Unstakeado\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Votar NO\",\"aMmFE1\":\"Comprar Crypto con Fiat\",\"aOKIms\":\"Los parámetros del array que deberían ser iguales en longitud no lo son\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"Se ha producido un error al recuperar la propuesta.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"APY préstamo, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Advertencia periodo de cooldown\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Activo\",\"bXQ/Og\":\"Compartir en twitter\",\"bXr0ee\":\"Los activos aislados han limitado tu capacidad de préstamo y otros activos no pueden ser usados como garantía.\",\"bYmAV1\":\"Direcciones\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"La cantidad solicitada es mayor que el tamaño máximo del préstamo en el modo de tasa estable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Suministrar\",\"bxN6EM\":\"No se puede deshabilitar E-Mode\",\"c91vuQ\":\"La dirección no es un contrato\",\"c97os2\":\"aToken de Aave\",\"c9b44w\":\"No puedes retirar esta cantidad porque causará una liquidación\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"cLo09S\":\"Detalles de riesgo\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Votar SI\",\"ckf7gX\":[\"Pagando \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Hilo de discusión del foro\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"No has participado en esta propuesta\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gobierno\",\"dEgA5A\":\"Cancelar\",\"dIsyWh\":\"La validación del LTV ha fallado\",\"dOB5nW\":[\"La cantidad máxima disponible para suministrar es <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Activos a tomar prestado\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Tomar prestado está deshabilitado debido a una decisión de la comunidad de Aave. <0>Más información\",\"djsg0o\":\"Uso de la garantía\",\"drdV8R\":\"Liquidación\",\"dxW8cS\":\"Token de deuda de Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 direcciones\",\"eD8WX/\":\"La acción requiere una reserva activa\",\"eJRJ04\":\"Cantidad para unstakear\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Editar\",\"eVpCmf\":\"Recompensas de Staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aún no hay transacciones.\",\"ebLGGN\":\"Total tomado prestado\",\"ecqEvn\":\"El balance de garantía es 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible en\",\"enruNF\":\"empieza\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstakea ahora\",\"evw5ha\":\"Valor neto\",\"ezcU16\":\"Obtener Token ABP\",\"f3W0Ej\":[\"Has cambiado a tasa \",[\"0\"]],\"fMJQZK\":\"Prestado\",\"fZ5Vnu\":\"Recibido\",\"firl9Q\":\"Tu actual relación préstamo-valor basado en tu garantía suministrada.\",\"fldjW9\":\"Previsualizar la tx y migrar\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Retirar \",[\"symbol\"]],\"fwjWSI\":\"Suministrado\",\"fwyTMb\":\"Migrar a stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Votó NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Este activo está congelado debido a una decisión del Gobierno del Protocolo Aave. <0>More información\",\"gTHi2T\":\"El usuario está intentando tomar prestado múltiples activos incluido uno aislado\",\"gVW59Y\":\"Por favor conecta tu cartera para obtener activos testnet gratis.\",\"gcFNxP\":\"Aprobación confirmada\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Dirección cero no válida\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Comisión de puente de protocolo inválida\",\"h33MxW\":\"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activar Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY neto\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Reclamado\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Cantidad\",\"hjDCQr\":\"Hubo un error. Por favor intenta cambiar los parámetros o <0><1>copiar el error\",\"hom7qf\":\"Reclamar\",\"hpHJ4I\":\"Garantía liquidada\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Tomando prestado \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"Sobre GHO\",\"iChbOF\":\"Parámetros inconsistentes del préstamo flash\",\"iEPVHF\":\"No hay suficiente poder de voto para participar en esta propuesta\",\"iEW87X\":\"Poder delegado\",\"iEju36\":[\"Has votado \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Seleccionar tolerancia de deslizamiento\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Ingresa una cantidad\",\"iSLIjg\":\"Conectar\",\"iUo5rv\":\"tokens no es lo mismo que stakearlos. Si deseas stakearlos\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Úsalo para votar a favor o en contra de propuestas activas.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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 \"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"El uso de garantías está limitado debido al Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Suministrando tu\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Desactivar el E-Mode\",\"jKYzR1\":\"Habilitar E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Periodo restante de cooldown\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrado\",\"jmXdoY\":\"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"No disponible\",\"k/sb6z\":\"Seleccionar idioma\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Reclamar \",[\"0\"]],\"kH6wUX\":\"Impacto del precio\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" activos seleccionados\"],\"kN1Yg5\":\"Para pagar en nombre de un usuario, se necesita una cantidad explícita para pagar\",\"kRTD40\":[\"Cantidad a pagar para alcanzar el \",[\"0\"],\"% de utilización\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"El límite de suministro se ha sobrepasado\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"El límite de deuda no es cero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"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.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"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\"],\".\"],\"lVhKKI\":\"Votó YAE\",\"lWLqxB\":\"No pudimos encontrar ninguna transacción relacionada con tu búsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Inglés\",\"lfEjIE\":\"Aprende más en nuestra guía <0>Preguntas frecuentes\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Emisiones totales por día\",\"m7r7Hh\":\"Activos de préstamo seleccionados\",\"mDDK4p\":\"Pool de Balancer\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos o usa <0>\",[\"0\"],\" para transferir tus activos de \",[\"network\"],\".\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Comprar \",[\"cryptoSymbol\"],\" con Fiat\"],\"mvCXBY\":\"Stakea AAVE\",\"mwdzil\":\"Vale, cerrar\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Este activo no puede usarse como garantía.\",\"n+SX4g\":\"Desarrolladores\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Apy de suministro\",\"nJgsQu\":\"Con un poder de votación de <0/>\",\"nLC6tu\":\"Francés\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposición\",\"nPGNMh\":\"Puede ser ejecutado\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Ambos\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Se produjo un error\",\"nxyWvj\":\"Retirar esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"El balance de AToken no es cero\",\"o5ooMr\":\"Deuda\",\"o7J4JM\":\"Filtro\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown para undstakear\",\"oJ5ZiG\":\"El usuario no tiene deuda pendiente de tasa variable en esta reserva\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Activos de prueba\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible para suministrar\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Sin resultados\",\"owSsI3\":\"Firmas listas\",\"p+R52m\":\"Ir al pool de Balancer\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Este activo ha alcanzado su límite de préstamo. No queda nada disponible para ser prestado de este mercado.\",\"p45alK\":\"Configurar la delegación\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"El balance subyacente debe ser mayor que 0\",\"pgWG9H\":\"No hay suficiente balance stakeado\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Cantidad mínima recibida\",\"pooutM\":\"La votación está activa\",\"pqaM5s\":\"Confirmando transacción\",\"ptaxX3\":[\"Entiendo como el cooldown (\",[\"0\"],\") y el proceso de unstaking (\",[\"1\"],\") funcionan\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"La función debe ser llamada por un pool\",\"q/51mF\":\"Migrar a V3\",\"q3df11\":\"Estrategia de tasa de interés\",\"q6lAbz\":\"Stakeado\",\"qB4kPi\":\"Suministrar APY\",\"qENI8q\":\"Configuración global\",\"qGz5zl\":\"Balance de la garantía tras pagar\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copiar el error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Por favor, conecta tu cartera para ver tus suministros, préstamos y posiciones abiertas.\",\"qY2jnw\":\"Expiración inválida\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Cantidad inválida para quemar\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"La cantidad debe ser mayor que 0\",\"rQ+R+0\":\"Activos de suministro seleccionados\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"\"],\"rcT+yy\":\"Mostrar activos con 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacidad\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Reclamar todas las recompensas\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Tu poder de proposición se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstakear \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Revisión tx\",\"sP2+gB\":\"NO\",\"sQv06Y\":\"para\",\"sTtO6J\":\"Confirmar transacción\",\"sXKb3l\":\"Tasa de cambio\",\"sb0q4+\":\"Unstakea aquí\",\"smJNwH\":\"Disponible para tomar prestado\",\"solypO\":\"El factor de salud no está por debajo del umbral\",\"sr0UJD\":\"Volver atrás\",\"ss5GCK\":\"La dirección del proveedor del grupo de direcciones no es válida\",\"swEgK4\":\"Tu información de voto\",\"t+wtgf\":\"Nada tomado prestado aún\",\"t/YqKh\":\"Eliminar\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Precio del oráculo\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Ir al panel de control V3\",\"tOcg3N\":\"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\",\"tOuXfv\":[\"Cantidad a tomar prestado para alcanzar el \",[\"0\"],\"% de utilización\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Por favor, conecta tu cartera\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Tus suministros\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Error en la transacción\",\"u706uF\":\"Préstamo flash inválido\",\"u8Gfu7\":[\"Sin resultados de búsqueda\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No hay activos seleccionados para migrar.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrando\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Para el pago de un tipo específico de deuda, el usuario necesita tener una deuda de ese tipo\",\"ulNuNq\":\"Exportar datos a\",\"ulup2p\":\"Comprar Crypto con Fiat\",\"usB84Z\":\"La cantidad máxima disponible para tomar prestado está limitada porque casi se ha alcanzado el límite de préstamo del protocolo.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"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.\",\"vEqxH9\":\"Restakeado\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Ocultar\",\"vMba49\":\"Tomar prestado no está habilitado\",\"vMpNwt\":\"Aprobar con\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Idioma\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"El balance de deuda estable no es cero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"APR de recompensas\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Tu \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Canal de Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"El llamador de la función no es un AToken\",\"wRRqvW\":\"No tienes suministros en este activo\",\"wZFvVU\":\"VOTAR SI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"No tienes balance de AAVE/stkAAVE/aAave para delegar.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Obtener Token ABP v2\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.\",\"x7F2p6\":\"Diferencial actual\",\"x7K5ib\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue \",[\"0\"],\" de prueba gratis en\"],\"x9iLRD\":\"tokens, por favor ve al\",\"xNy/UG\":\"Pagar con\",\"xPm8wv\":\"Aprende más sobre los riesgos involucrados\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Tu información\",\"xaWZ6f\":\"Cambio tipo de APY\",\"xh6k71\":\"El uso de garantías está limitado debido al isolation mode.\",\"xvIklc\":\"El préstamo flash está deshabilitado para este activo, por lo tanto, esta posición no se puede migrar.\",\"y5rS9U\":\"Migrar\",\"y66tBm\":[\"Habilitar \",[\"symbol\"],\" como garantía\"],\"yB1YpA\":\"Modo oscuro\",\"yCrG6m\":\"Tamaño total del mercado\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Resumen de la transacción\",\"yLGmLX\":[\"Restakear \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Dirección no válida\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Haz seguimiento de tu cartera\",\"yh2sjd\":[\"Impacto en el precio \",[\"0\"],\"%\"],\"yhvj6d\":\"No puedes cambiar el uso como modo de garantía para este activo, porque causará una liquidación\",\"ylmtBZ\":\"La aplicación se ejecuta en fork mode.\",\"ymNY32\":[\"No hay fondos suficientes en la reserva\",[\"0\"],\"para tomar prestado\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Cerrar\",\"z4uGQg\":\"El límite de deuda está sobrepasado\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantía elegida no puede ser liquidada\",\"z5Y+p6\":[\"Suministrando \",[\"symbol\"]],\"zCjNKs\":\"No se puede realizar la acción porque la reserva está congelada\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Límite de deuda aislado\",\"zTOjMP\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Deuda restante\",\"zmTPiV\":\"Balance de suministro\",\"zpPbZl\":\"Parámetros de riesgo de liquidación\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menú\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Aprende más\",\"zy9fXn\":[\"Este activo está congelado en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"zys+R6\":\"Ten en cuenta la congestión de la red y los precios del gas.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Balance del suministro después del cambio\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Mostrar activos congelados o pausados\",\"TszKts\":\"Balance de préstamo después del cambio\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file diff --git a/src/locales/fr/messages.js b/src/locales/fr/messages.js index 791ffef9db..6f4a7cd4d5 100644 --- a/src/locales/fr/messages.js +++ b/src/locales/fr/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"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.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participer à cette réserve \",[\"symbol\"],\" donne des récompenses annualisées.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Limite d'emprunt\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Emprunter ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"L'emprunt stable n'est pas activé\",\"/yQcJM\":\"Valeur totale\",\"00AB2i\":\"L'utilisateur n'a pas emprunté la devise spécifiée\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Changement de taux\",\"0BF3yK\":\"Désolé, nous n’avons pas trouvé la page que vous cherchiez.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Risque de liquidation\",\"0ojY+Y\":\"Solde actuel v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Modification des garanties\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"À l’heure actuelle, les données sur les prix ne sont pas disponibles pour cette réserve dans le sous-graphe du protocole\",\"1LjK22\":\"Historique des transactions\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Seuil de liquidation <0/>\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Voir détails\",\"2FYpfJ\":\"Plus\",\"2O3qp5\":\"Liquidités disponibles\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"L’actif ne peut pas être migré en raison d’une restriction de plafond d’approvisionnement dans \",[\"marketName\"],\" v3 marché.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Veuillez saisir une adresse de portefeuille valide.\",\"2eBWE6\":\"Je reconnais les risques encourus.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"L'emprunt stable est activé\",\"34Qfwy\":\"Le plafond d'emprunt est dépassé\",\"39eQRj\":[\"Emprunter \",[\"symbole\"]],\"3BL1xB\":\"Total fourni\",\"3K0oMo\":\"Offre restante\",\"3MoZhl\":\"Il n'y a pas assez de collatéral pour couvrir un nouvel emprunt\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Fournir \",[\"symbole\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Rembourser\",\"3qsjtp\":\"La moyenne pondérée de l'APY pour tous les actifs fournis, y compris les incitations.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrer vers \",[\"0\"],\" Marché v3\"],\"49UFQA\":\"Résultats du vote\",\"4DMZUI\":\"Afficher les transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Petits caractères\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Signez pour continuer\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenez des ressources de test gratuites à l’adresse suivante :\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que \",[\"messageValue\"],\" fourni à ce marché.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"L'offre de dette variable n'est pas nulle\",\"5che++\":\"Pour demander l'accès à ce marché autorisé, veuillez consulter\xA0: <0>Nom du fournisseur d'accès\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" reçu\"],\"5hDe9v\":\"Allocation action requise\",\"5rsnKT\":\"Récompenses disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Voir tous les votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Aperçu\",\"60crCe\":\"Toutes les transactions\",\"62Xcjh\":\"Collatérale\",\"65A04M\":\"Espagnol\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signature\",\"6Jrv+z\":[\"Rembourser \",[\"symbole\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Refroidissement...\",\"6bxci/\":\"Pouvoir de vote\",\"6f8S68\":\"Marchés\",\"6g1gi0\":\"Les propositions\",\"6gvoHP\":\"Copier le message d’erreur\",\"6h3Q5G\":\"Remboursé\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Changer de réseau\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Facteur de santé\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Atteint\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"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.\",\"7aKlMS\":\"Partager sur Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Réclamer tout\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Les données n’ont pas pu être récupérées, veuillez recharger le graphique.\",\"7p5kLi\":\"Tableau de bord\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"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\",\"87pUEW\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs.\"],\"8F1i42\":\"Page introuvable\",\"8G8M0u\":\"Chargement des données...\",\"8Iu1QS\":\"Retiré\",\"8JL93T\":\"Toutes les propositions\",\"8Q51DU\":\"Ajouter au portefeuille\",\"8X/oyn\":\"Montant invalide à frapper\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Déconnecter le portefeuille\",\"8Zz7s5\":\"actifs\",\"8aLW8H\":\"Solde à révoquer\",\"8bOT3H\":\"Taux d'utilisation\",\"8sLe4/\":\"Voir le contrat\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Montrer\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Vous entrez en mode Isolation\",\"9CDK3/\":[\"L'emprunt n'est actuellement pas disponible pour \",[\"0\"],\".\"],\"9GIj3z\":\"Taille de réserve\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Solde de mise en jeu\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votes actuels\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Cet actif a presque atteint son plafond d'emprunt. Il n'y a que \",[\"messageValue\"],\" disponible pour être emprunté sur ce marché.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour être fourni à partir de ce marché.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Jeton sous-jacent\",\"9xSooW\":\"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\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choisissez l’un des services de rampe d’accès\",\"A6dCI6\":[\"Le montant maximal disponible pour emprunter est de <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Vos emprunts\",\"AV7cGz\":\"Examiner les détails de la taxe d'approbation\",\"AZOjB8\":\"Récupération de données...\",\"Ai0jas\":\"Rejoignez la discussion de la communauté\",\"Ajl2rq\":\"Le pouvoir d'emprunt et les actifs sont limités en raison du mode d'isolement.\",\"AqgYNC\":\"Plafond d’emprunt du protocole à 100% pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"Les stETH fournis en garantie continueront d’accumuler des récompenses de staking fournies par les rebasages quotidiens.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"L'utilisation de la garantie est limitée en raison du mode d'isolement. <0>En savoir plus\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Catégorie d'actifs\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Cet actif est gelé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Fiche technique\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Grec\",\"CkTRmy\":[\"Revendication \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Veuillez connecter votre portefeuille pour voir l’outil de migration.\",\"CtGlFb\":[[\"networkName\"],\" Robinet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"La garantie est (principalement) la même devise que celle qui est empruntée\",\"DCnFg0\":[\"Adresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"Je comprends parfaitement les risques liés à la migration.\",\"DONJcV\":\"L'actif sous-jacent ne peut pas être sauvé\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave par mois\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collatéralisation\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Désactivé\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Reprise \",[\"symbol\"]],\"Ebgc76\":[\"Retrait \",[\"symbole\"]],\"EdQY6l\":\"Aucun/Aucune\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Réactiver la période de recharge pour annuler le pieu \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrer vers la v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Pour en savoir plus.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Solde actuel de la v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Puissance d'emprunt utilisée\",\"FPKEug\":\"Opération non prise en charge\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"sur\",\"Fjw9N+\":\"Actifs à déposer\",\"FmN0fk\":\"Remise en jeu\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Changer de mode E\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Actifs\",\"GgEj+0\":\"Mode lecture seule. Connectez-vous à un portefeuille pour effectuer des transactions.\",\"GjkIKV\":\"Prend fin\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Désolé, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Fenêtre d'arrêt de staking\",\"HpK/8d\":\"Recharger\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"La ressource ne peut pas être migrée vers \",[\"marketName\"],\" v3 Marché puisque l’actif collatéral activera le mode d’isolation.\"],\"Hvwnm9\":[\"La quantité maximale disponible pour l’approvisionnement est limitée parce que le plafond d’approvisionnement du protocole est à \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Le montant total de vos actifs libellés en USD qui peut être utilisé comme garantie pour emprunter des actifs.\",\"IAD2SB\":[\"Prétendant \",[\"symbol\"]],\"IG9X9/\":\"L’emprunt de cet actif est limité à un certain montant afin de minimiser l’insolvabilité du pool de liquidités.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"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\",\"IP+I/j\":\"Période de recharge\",\"IaA40H\":\"Liquidation à\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Gérer l’analytique\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Déjalonnement \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Vous ne pouvez pas utiliser cette devise comme garantie\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Pas assez de solde sur votre portefeuille\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Solde du portefeuille\",\"JtwD8u\":\"Emprunter le solde après le remboursement\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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\xA0%, cela signifie que la position sera liquidée lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.\",\"KYAjf3\":\"Isolé\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Changement de mode E\",\"KnN1Tu\":\"Expire\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Mauvais réseau\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Entrez l'adresse ETH\",\"KvG1xW\":\"Réclamer\",\"L+8Lzs\":\"LTV actuelle\",\"L+qiq+\":\"Marché\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Pas de pouvoir de vote\",\"LL0zks\":\"Peut être collatéral\",\"LLdJWu\":\"AAVE Réclamable\",\"LSIpNK\":\"Emprunter et rembourser dans le même bloc n'est pas autorisé\",\"LVt3TI\":[\"<0>Tolérance de glissement <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Astuce : Essayez d’augmenter le glissement ou de réduire la quantité d’entrée\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Adresse du destinataire\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vue de staking\",\"McHlGl\":\"Changement d’APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si le facteur de santé descend en dessous de 1, la liquidation de votre collatéral peut être déclenchée.\",\"Mm/DVQ\":\"Vous avez annulé la transaction.\",\"MnE2QX\":\"Emprunter des informations\",\"MuDFEQ\":\"Valeur de retour invalide de la fonction flashloan executor\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"En attente...\",\"NK9ikO\":\"Solde du portefeuille\",\"NMt2CB\":\"Montant réclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Contrat de collectionneur\",\"NfpPeS\":\"Rien staké\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Le plafond de mintage non soutenu est dépassé\",\"O+tyU+\":[\"Le montant maximal disponible pour emprunter sur cet actif est limité car le plafond de la dette est à \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Aperçu de la proposition\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Réinitialisation\",\"Og2SKn\":\"handicapé\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Site internet\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirer\",\"P1dURE\":\"Révoquer le pouvoir\",\"P2WCD/\":[\"L’actif sous-jacent n’existe pas dans \",[\"marketName\"],\" v3 Market, par conséquent, cette position ne peut pas être migrée.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Mise en jeu ABPT\",\"P72/OW\":\"La moyenne pondérée de l'APY pour tous les actifs empruntés, y compris les incitatifs.\",\"P7e6Ug\":\"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Emprunter apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Seuil de liquidation\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Non atteint\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Désactiver \",[\"symbol\"],\" comme garantie\"],\"RMtxNk\":\"Différentiel\",\"RNK49r\":\"Signature non valide\",\"RS0o7b\":\"État\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Détails de la proposition\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"L'actif n'est pas répertorié\",\"Rj01Fz\":\"Liens\",\"RmWFEe\":\"APR staké\",\"RtBLm7\":\"Le facteur santé est inférieur au seuil de liquidation\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Activé\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fonds dans le Safety Module\",\"SENccp\":\"Si l’erreur persiste,<0/> vous pouvez la signaler à ce\",\"SM58dD\":\"Quantité en temps de recharge\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Seuil de liquidation\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.\",\"SZRUQ4\":\"Glissement maximal\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"Sk2zW9\":\"Désactiver le E-mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Le fournisseur d'adresses de pool n'est pas enregistré\",\"T/AIqG\":\"Limite d’approvisionnement du protocole à 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Emprunter\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Pénalité de liquidation\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"L'actif ne peut être utilisé comme garantie qu'en mode isolé.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"L'utilisateur n'a pas de dette à taux stable impayée sur cette réserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recharger la page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"L’application s’exécute en mode réseau de test. Découvrez comment cela fonctionne dans\",\"U9btTk\":\"L'actif n'est pas empruntable en mode d'isolement\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Détails\",\"UTTKmT\":\"Temps de recharge de la mise activé\",\"UXeR72\":\"Ces fonds ont été empruntés et ne peuvent pas être retirés pour le moment.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Aucune récompense à réclamer\",\"V0f2Xv\":\"Facteur de réserve\",\"V1HK43\":\"Risques liés à la migration\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Dette couverte\",\"VHOVEJ\":\"Connecter le portefeuille\",\"VMfYUK\":\"Sécurité de votre garantie déposée contre les actifs empruntés et sa valeur sous-jacente.\",\"VOAZJh\":\"Total des emprunts\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Examiner les détails de la transaction\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Rien fourni pour le moment\",\"W5kTFy\":\"Vote\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode augmente votre LTV pour une catégorie d'actifs sélectionnée jusqu'à <0/>. <1>En savoir plus\",\"WPWG/y\":\"Statut et configuration de la réserve\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"L'utilisateur ne peut pas retirer plus que le solde disponible\",\"WaZyaV\":\"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Étant donné que cette ressource est suspendue, aucune action ne peut être entreprise jusqu’à nouvel ordre\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Pour emprunter, vous devez fournir tout actif à utiliser comme garantie.\",\"X/ITG9\":\"Copier le texte d'erreur\",\"X3Pp6x\":\"Utilisé comme collatéral\",\"X4Zt7j\":\"L'action ne peut pas être effectuée car la réserve est mise en pause\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Vous quitterez le mode d'isolement et d'autres jetons peuvent désormais être utilisés comme collatéral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTER NON\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Activation du E-Mode\",\"YSodyW\":\"Cette action réduira votre facteur de santé. Veuillez garder à l’esprit le risque accru de liquidation des garanties.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Le mode réseau de test est activé\",\"YrDxdO\":\"Si votre prêt à la valeur dépasse le seuil de liquidation, votre garantie fournie peut être liquidée.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Les conditions de rééquilibrage des taux d'intérêt n'ont pas été remplies\",\"YyydIq\":[\"Ajouter \",[\"0\"],\" à Wallet pour suivre votre solde.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gouvernance Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Mode efficacité (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Désactiver le réseau de test\",\"Zbyywy\":\"Coupure maximale\",\"ZfUGFb\":\"Avant de déposer\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valeur de liquidation\",\"ZrEc8j\":\"Nous n’avons trouvé aucun élément lié à votre recherche. Réessayez avec un autre nom, symbole ou adresse de ressource.\",\"ZsLF7e\":\"Activé\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Temps restant pour dépiquer\",\"a5RYZd\":\"La désactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santé.\",\"a7u1N9\":\"Prix\",\"a9D+6D\":\"Non jalonné\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"aOKIms\":\"Les paramètres de tableau devraient être de même longueur ne sont pas\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Prêt APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Avertissement de période de refroidissement\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Actif\",\"bXQ/Og\":\"Partager sur Twitter\",\"bXr0ee\":\"Les actifs isolés ont un pouvoir d'emprunt limité et les autres actifs ne peuvent pas être utilisés comme garantie.\",\"bYmAV1\":\"Adresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Le montant demandé est supérieur au montant maximum du prêt en mode taux stable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Fournir\",\"bxN6EM\":\"Impossible de désactiver le mode E\",\"c91vuQ\":\"L'adresse n'est pas un contrat\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Vous ne pouvez pas retirer ce montant car cela entraînera un appel de garantie\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Votre pouvoir de vote est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"cLo09S\":\"Détails des risques\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Remboursement \",[\"symbole\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Discussion de forum\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"Vous n'avez pas participé à cette proposition\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gouvernance\",\"dEgA5A\":\"Annuler\",\"dIsyWh\":\"Échec de la validation LTV\",\"dOB5nW\":[\"La quantité maximale disponible pour la fourniture est de <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Actifs à emprunter\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"L’emprunt est désactivé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"djsg0o\":\"Usage de collatéral\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Jeton de dette Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 des adresses\",\"eD8WX/\":\"L'action nécessite une réserve active\",\"eJRJ04\":\"Montant à la mise en jeu\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Récompenses de staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aucune transaction n’a encore été effectuée.\",\"ebLGGN\":\"Total emprunté\",\"ecqEvn\":\"Le solde de la garantie est de 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible sur\",\"enruNF\":\"Commence\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Arrêter de staker maintenant\",\"evw5ha\":\"Valeur nette\",\"ezcU16\":\"Obtenir le jeton ABP\",\"f3W0Ej\":[\"Vous êtes passé au tarif \",[\"0\"]],\"fMJQZK\":\"Emprunté\",\"fZ5Vnu\":\"Reçu\",\"firl9Q\":\"Votre prêt actuel à la valeur en fonction de votre collatéral fournie.\",\"fldjW9\":\"Prévisualiser tx et migrer\",\"fsBGk0\":\"Solde\",\"fu1Dbh\":[\"Retirer \",[\"symbole\"]],\"fwjWSI\":\"Fourni\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Alimenté par\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"Foire aux questions\",\"g9zzqS\":\"A voté NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Mode réseau test\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Cet actif est gelé en raison d’une décision de gouvernance du protocole Aave. <0>Plus d’informations\",\"gTHi2T\":\"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo\",\"gVW59Y\":\"Veuillez connecter votre portefeuille pour obtenir des ressources de réseau de test gratuites.\",\"gcFNxP\":\"Approuver Confirmé\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Adresse zéro non-valide\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Frais de protocole de pont invalide\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\". .CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activer le temps de recharge\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY Net\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Revendiqué\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Montant\",\"hjDCQr\":\"Il y a eu une erreur. Veuillez essayer de modifier les paramètres ou <0><1>copier l'erreur\",\"hom7qf\":\"Réclamer\",\"hpHJ4I\":\"Garantie liquidée\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Emprunter \",[\"symbole\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"À propos de GHO\",\"iChbOF\":\"Paramètres de prêt flash incohérents\",\"iEPVHF\":\"Pas assez de pouvoir de vote pour participer à cette proposition\",\"iEW87X\":\"Délégation de pouvoirs\",\"iEju36\":[\"Vous avez voté \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Sélectionner la tolérance de glissement\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Entrez un montant\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens n'est pas la même chose que de les staker . Si vous souhaitez staker votre\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Utilisez-le pour voter pour ou contre les propositions actives.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Informations sur le collectionneur\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"L'utilisation du collatéral est limitée en raison du mode d'isolation.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Fournir votre\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Désactiver le E-mode\",\"jKYzR1\":\"Activer le E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Temps de recharge restant\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migré\",\"jmXdoY\":\"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accéder à tous les actifs\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Non disponible\",\"k/sb6z\":\"Choisir la langue\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Réclamer \",[\"0\"]],\"kH6wUX\":\"Impact sur les prix\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" Actifs sélectionnés\"],\"kN1Yg5\":\"Pour rembourser au nom d'un utilisateur, un montant explicite à rembourser est nécessaire\",\"kRTD40\":[\"Montant de remboursement à atteindre \",[\"0\"],\"% d’utilisation\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Le plafond d'approvisionnement est dépassé\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\". JSON (en anglais seulement)\",\"ks2LWT\":\"Le plafond de la dette n'est pas nul\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"L’actif ne peut pas être migré en raison d’une liquidité insuffisante ou d’une limitation du plafond d’emprunt \",[\"marketName\"],\" v3 marché.\"],\"lVhKKI\":\"A voté YAE\",\"lWLqxB\":\"Nous n’avons trouvé aucune transaction liée à votre recherche. Réessayez avec un autre nom de ressource ou réinitialisez les filtres.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Anglais\",\"lfEjIE\":\"En savoir plus dans notre <0>guide FAQ\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Émission totale par jour\",\"m7r7Hh\":\"Sélection d’actifs d’emprunt\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs ou utiliser <0>\",[\"0\"],\" pour transférer votre \",[\"network\"],\" actif.\"],\"me5LMQ\":\"Checking approval\",\"mogZv0\":\"Favourite\",\"muiOng\":[\"Acheter \",[\"cryptoSymbol\"],\" avec Fiat\"],\"mvCXBY\":\"Mise en jeu AAVE\",\"mwdzil\":\"D'accord, fermer\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"L'actif ne peut pas être utilisé comme collatéral.\",\"n+SX4g\":\"Développeurs\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Fournir apy\",\"nJgsQu\":\"Avec un pouvoir de vote de <0/>\",\"nLC6tu\":\"Français\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Peut être exécuté\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Les deux\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Quelque chose s’est mal passé\",\"nxyWvj\":\"Le retrait de ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"L'approvisionnement en aTokens n'est pas nul\",\"o5ooMr\":\"Dette\",\"o7J4JM\":\"Filtrer\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Temps de recharge pour déstaker\",\"oJ5ZiG\":\"L'utilisateur n'a pas de dette à taux variable impayée sur cette réserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Ressources de test\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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é.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible au dépôt\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Rien n’a été trouvé\",\"owSsI3\":\"Signatures prêtes\",\"p+R52m\":\"Accéder à Balancer Pool\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour être emprunté à ce marché.\",\"p45alK\":\"Configurer la délégation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Le solde sous-jacent doit être supérieur à 0\",\"pgWG9H\":\"Pas assez de solde staké\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Je comprends comment fonctionnent le temps de recharge (\",[\"0\"],\") et le retrait (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"L'appelant de cette fonction doit être un pool\",\"q/51mF\":\"Migrer vers la V3\",\"q3df11\":\"Stratégie de taux d’intérêt\",\"q6lAbz\":\"Staké\",\"qB4kPi\":\"Fournir APY\",\"qENI8q\":\"Paramètres globaux\",\"qGz5zl\":\"Solde de garantie après remboursement\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copier l'erreur\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.\",\"qY2jnw\":\"Expiration invalide\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Montant non valide à brûler\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Le montant doit être supérieur à 0\",\"rQ+R+0\":\"Sélection d’actifs d’approvisionnement\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Afficher les actifs avec 0 solde\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Vie privée\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Réclamez toutes les récompenses\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Votre pouvoir de proposition est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Réviser tx\",\"sP2+gB\":\"NON\",\"sQv06Y\":\"pour\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Vous unstaké ici\",\"smJNwH\":\"Disponible à emprunter\",\"solypO\":\"Le facteur de santé n'est pas inférieur au seuil\",\"sr0UJD\":\"Retourner\",\"ss5GCK\":\"L'adresse du fournisseur d'adresses du pool n'est pas valide\",\"swEgK4\":\"Vos informations de vote\",\"t+wtgf\":\"Aucun emprunt pour l'instant\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Prix Oracle\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Accéder au tableau de bord V3\",\"tOcg3N\":\"Étant donné que cet actif est gelé, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord\",\"tOuXfv\":[\"Emprunter le montant à atteindre \",[\"0\"],\"% d’utilisation\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"S'il vous plaît, connectez votre portefeuille\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Vos ressources\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"La transaction a échoué\",\"u706uF\":\"Prime flash non valide\",\"u8Gfu7\":[\"Aucun résultat de recherche\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"Aucune ressource n’a été sélectionnée pour la migration.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migration\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Exporter des données vers\",\"ulup2p\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"usB84Z\":\"Le montant maximum disponible pour emprunter est limité car le plafond d’emprunt du protocole est presque atteint.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacité d’emprunt restante pour effectuer le transfert de dette.\",\"vEqxH9\":\"Restauré\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Cacher\",\"vMba49\":\"L'emprunt n'est pas activé\",\"vMpNwt\":\"Approuvez avec\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"L'offre de dette stable n'est pas nulle\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Récompenses APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Vous \",[\"action\"],\" <0/> \",[\"symbole\"]],\"wBIsjb\":\"Canal Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"L'appelant de la fonction n'est pas un AToken\",\"wRRqvW\":\"Vous n'avez pas de fournitures dans cette devise\",\"wZFvVU\":\"VOTER OUI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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 «\xA0Faucet\xA0» 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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Les ressources sélectionnées ont été migrées avec succès. Rendez-vous sur le tableau de bord du marché pour les voir.\",\"x7F2p6\":\"Différentiel de courant\",\"x7K5ib\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenir un test gratuit \",[\"0\"],\" à\"],\"x9iLRD\":\"tokens, veuillez vous rendre sur\",\"xNy/UG\":\"Rembourser avec\",\"xPm8wv\":\"En savoir plus sur les risques encourus\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Vos informations\",\"xaWZ6f\":\"Changement de type APY\",\"xh6k71\":\"L’utilisation des garanties est limitée en raison du mode d’isolation.\",\"xvIklc\":\"Flashloan est désactivé pour cet actif, cette position ne peut donc pas être migrée.\",\"y5rS9U\":\"Émigrer\",\"y66tBm\":[\"Activer \",[\"symbol\"],\" comme collatéral\"],\"yB1YpA\":\"Mode Sombre\",\"yCrG6m\":\"Taille totale du marché\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Aperçu des transactions\",\"yLGmLX\":[\"Remise en jeu \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Pas une adresse valide\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Suivre le portefeuille\",\"yh2sjd\":[\"Impact sur les prix \",[\"0\"],\"%\"],\"yhvj6d\":\"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraînera un appel de garantie\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Il n'y a pas assez de fonds dans la \",[\"0\"],\" réserve pour emprunter\"],\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Fermer\",\"z4uGQg\":\"Le plafond de la dette est dépassé\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantie choisie ne peut être liquidée\",\"z5Y+p6\":[\"Fournir \",[\"symbole\"]],\"zCjNKs\":\"L'action ne peut pas être effectuée car la réserve est gelée\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Plafond de la dette isolée\",\"zTOjMP\":\"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Dette restante\",\"zmTPiV\":\"Bilan d'approvisionnement\",\"zpPbZl\":\"Paramètres du risque de liquidation\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Apprendre encore plus\",\"zy9fXn\":[\"L’actif est gelé \",[\"marketName\"],\" v3, donc cette position ne peut pas être migrée.\"],\"zys+R6\":\"Faites attention à la congestion du réseau et aux prix de l’essence.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Bilan de l’alimentation après le changement\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Afficher les ressources gelées ou mises en pause\",\"TszKts\":\"Emprunter le solde après le changement\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"]}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"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.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participer à cette réserve \",[\"symbol\"],\" donne des récompenses annualisées.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Limite d'emprunt\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Emprunter ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"L'emprunt stable n'est pas activé\",\"/yQcJM\":\"Valeur totale\",\"00AB2i\":\"L'utilisateur n'a pas emprunté la devise spécifiée\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Changement de taux\",\"0BF3yK\":\"Désolé, nous n’avons pas trouvé la page que vous cherchiez.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Risque de liquidation\",\"0ojY+Y\":\"Solde actuel v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Modification des garanties\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"À l’heure actuelle, les données sur les prix ne sont pas disponibles pour cette réserve dans le sous-graphe du protocole\",\"1LjK22\":\"Historique des transactions\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Seuil de liquidation <0/>\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Voir détails\",\"2FYpfJ\":\"Plus\",\"2O3qp5\":\"Liquidités disponibles\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"L’actif ne peut pas être migré en raison d’une restriction de plafond d’approvisionnement dans \",[\"marketName\"],\" v3 marché.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Veuillez saisir une adresse de portefeuille valide.\",\"2eBWE6\":\"Je reconnais les risques encourus.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"L'emprunt stable est activé\",\"34Qfwy\":\"Le plafond d'emprunt est dépassé\",\"39eQRj\":[\"Emprunter \",[\"symbole\"]],\"3BL1xB\":\"Total fourni\",\"3K0oMo\":\"Offre restante\",\"3MoZhl\":\"Il n'y a pas assez de collatéral pour couvrir un nouvel emprunt\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Fournir \",[\"symbole\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Rembourser\",\"3qsjtp\":\"La moyenne pondérée de l'APY pour tous les actifs fournis, y compris les incitations.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrer vers \",[\"0\"],\" Marché v3\"],\"49UFQA\":\"Résultats du vote\",\"4DMZUI\":\"Afficher les transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Petits caractères\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Signez pour continuer\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenez des ressources de test gratuites à l’adresse suivante :\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que \",[\"messageValue\"],\" fourni à ce marché.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"L'offre de dette variable n'est pas nulle\",\"5che++\":\"Pour demander l'accès à ce marché autorisé, veuillez consulter\xA0: <0>Nom du fournisseur d'accès\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" reçu\"],\"5hDe9v\":\"Allocation action requise\",\"5rsnKT\":\"Récompenses disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Voir tous les votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Aperçu\",\"60crCe\":\"Toutes les transactions\",\"62Xcjh\":\"Collatérale\",\"65A04M\":\"Espagnol\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signature\",\"6Jrv+z\":[\"Rembourser \",[\"symbole\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Refroidissement...\",\"6bxci/\":\"Pouvoir de vote\",\"6f8S68\":\"Marchés\",\"6g1gi0\":\"Les propositions\",\"6gvoHP\":\"Copier le message d’erreur\",\"6h3Q5G\":\"Remboursé\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Changer de réseau\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Facteur de santé\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Atteint\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"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.\",\"7aKlMS\":\"Partager sur Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Réclamer tout\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Les données n’ont pas pu être récupérées, veuillez recharger le graphique.\",\"7p5kLi\":\"Tableau de bord\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"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\",\"87pUEW\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs.\"],\"8F1i42\":\"Page introuvable\",\"8G8M0u\":\"Chargement des données...\",\"8Iu1QS\":\"Retiré\",\"8JL93T\":\"Toutes les propositions\",\"8Q51DU\":\"Ajouter au portefeuille\",\"8X/oyn\":\"Montant invalide à frapper\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Déconnecter le portefeuille\",\"8Zz7s5\":\"actifs\",\"8aLW8H\":\"Solde à révoquer\",\"8bOT3H\":\"Taux d'utilisation\",\"8sLe4/\":\"Voir le contrat\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Montrer\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Vous entrez en mode Isolation\",\"9CDK3/\":[\"L'emprunt n'est actuellement pas disponible pour \",[\"0\"],\".\"],\"9GIj3z\":\"Taille de réserve\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Solde de mise en jeu\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votes actuels\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Cet actif a presque atteint son plafond d'emprunt. Il n'y a que \",[\"messageValue\"],\" disponible pour être emprunté sur ce marché.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour être fourni à partir de ce marché.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Jeton sous-jacent\",\"9xSooW\":\"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\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choisissez l’un des services de rampe d’accès\",\"A6dCI6\":[\"Le montant maximal disponible pour emprunter est de <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Vos emprunts\",\"AV7cGz\":\"Examiner les détails de la taxe d'approbation\",\"AZOjB8\":\"Récupération de données...\",\"Ai0jas\":\"Rejoignez la discussion de la communauté\",\"Ajl2rq\":\"Le pouvoir d'emprunt et les actifs sont limités en raison du mode d'isolement.\",\"AqgYNC\":\"Plafond d’emprunt du protocole à 100% pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"Les stETH fournis en garantie continueront d’accumuler des récompenses de staking fournies par les rebasages quotidiens.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"L'utilisation de la garantie est limitée en raison du mode d'isolement. <0>En savoir plus\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Catégorie d'actifs\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Cet actif est gelé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Fiche technique\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Grec\",\"CkTRmy\":[\"Revendication \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Veuillez connecter votre portefeuille pour voir l’outil de migration.\",\"CtGlFb\":[[\"networkName\"],\" Robinet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"La garantie est (principalement) la même devise que celle qui est empruntée\",\"DCnFg0\":[\"Adresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"Je comprends parfaitement les risques liés à la migration.\",\"DONJcV\":\"L'actif sous-jacent ne peut pas être sauvé\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave par mois\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collatéralisation\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Désactivé\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Reprise \",[\"symbol\"]],\"Ebgc76\":[\"Retrait \",[\"symbole\"]],\"EdQY6l\":\"Aucun/Aucune\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Réactiver la période de recharge pour annuler le pieu \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrer vers la v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Pour en savoir plus.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Solde actuel de la v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Puissance d'emprunt utilisée\",\"FPKEug\":\"Opération non prise en charge\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"sur\",\"Fjw9N+\":\"Actifs à déposer\",\"FmN0fk\":\"Remise en jeu\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Changer de mode E\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Actifs\",\"GgEj+0\":\"Mode lecture seule. Connectez-vous à un portefeuille pour effectuer des transactions.\",\"GjkIKV\":\"Prend fin\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Désolé, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Fenêtre d'arrêt de staking\",\"HpK/8d\":\"Recharger\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"La ressource ne peut pas être migrée vers \",[\"marketName\"],\" v3 Marché puisque l’actif collatéral activera le mode d’isolation.\"],\"Hvwnm9\":[\"La quantité maximale disponible pour l’approvisionnement est limitée parce que le plafond d’approvisionnement du protocole est à \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Le montant total de vos actifs libellés en USD qui peut être utilisé comme garantie pour emprunter des actifs.\",\"IAD2SB\":[\"Prétendant \",[\"symbol\"]],\"IG9X9/\":\"L’emprunt de cet actif est limité à un certain montant afin de minimiser l’insolvabilité du pool de liquidités.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"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\",\"IP+I/j\":\"Période de recharge\",\"IaA40H\":\"Liquidation à\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Gérer l’analytique\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Déjalonnement \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Vous ne pouvez pas utiliser cette devise comme garantie\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Pas assez de solde sur votre portefeuille\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Solde du portefeuille\",\"JtwD8u\":\"Emprunter le solde après le remboursement\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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\xA0%, cela signifie que la position sera liquidée lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.\",\"KYAjf3\":\"Isolé\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Changement de mode E\",\"KnN1Tu\":\"Expire\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Mauvais réseau\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Entrez l'adresse ETH\",\"KvG1xW\":\"Réclamer\",\"L+8Lzs\":\"LTV actuelle\",\"L+qiq+\":\"Marché\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Pas de pouvoir de vote\",\"LL0zks\":\"Peut être collatéral\",\"LLdJWu\":\"AAVE Réclamable\",\"LSIpNK\":\"Emprunter et rembourser dans le même bloc n'est pas autorisé\",\"LVt3TI\":[\"<0>Tolérance de glissement <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Astuce : Essayez d’augmenter le glissement ou de réduire la quantité d’entrée\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Adresse du destinataire\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vue de staking\",\"McHlGl\":\"Changement d’APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si le facteur de santé descend en dessous de 1, la liquidation de votre collatéral peut être déclenchée.\",\"Mm/DVQ\":\"Vous avez annulé la transaction.\",\"MnE2QX\":\"Emprunter des informations\",\"MuDFEQ\":\"Valeur de retour invalide de la fonction flashloan executor\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"En attente...\",\"NK9ikO\":\"Solde du portefeuille\",\"NMt2CB\":\"Montant réclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Contrat de collectionneur\",\"NfpPeS\":\"Rien staké\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Le plafond de mintage non soutenu est dépassé\",\"O+tyU+\":[\"Le montant maximal disponible pour emprunter sur cet actif est limité car le plafond de la dette est à \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Aperçu de la proposition\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Réinitialisation\",\"Og2SKn\":\"handicapé\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Site internet\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirer\",\"P1dURE\":\"Révoquer le pouvoir\",\"P2WCD/\":[\"L’actif sous-jacent n’existe pas dans \",[\"marketName\"],\" v3 Market, par conséquent, cette position ne peut pas être migrée.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Mise en jeu ABPT\",\"P72/OW\":\"La moyenne pondérée de l'APY pour tous les actifs empruntés, y compris les incitatifs.\",\"P7e6Ug\":\"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Emprunter apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Seuil de liquidation\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Non atteint\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Désactiver \",[\"symbol\"],\" comme garantie\"],\"RMtxNk\":\"Différentiel\",\"RNK49r\":\"Signature non valide\",\"RS0o7b\":\"État\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Détails de la proposition\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"L'actif n'est pas répertorié\",\"Rj01Fz\":\"Liens\",\"RmWFEe\":\"APR staké\",\"RtBLm7\":\"Le facteur santé est inférieur au seuil de liquidation\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Activé\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fonds dans le Safety Module\",\"SENccp\":\"Si l’erreur persiste,<0/> vous pouvez la signaler à ce\",\"SM58dD\":\"Quantité en temps de recharge\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Seuil de liquidation\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.\",\"SZRUQ4\":\"Glissement maximal\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"Sk2zW9\":\"Désactiver le E-mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Le fournisseur d'adresses de pool n'est pas enregistré\",\"T/AIqG\":\"Limite d’approvisionnement du protocole à 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Emprunter\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Pénalité de liquidation\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"L'actif ne peut être utilisé comme garantie qu'en mode isolé.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"L'utilisateur n'a pas de dette à taux stable impayée sur cette réserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recharger la page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"L’application s’exécute en mode réseau de test. Découvrez comment cela fonctionne dans\",\"U9btTk\":\"L'actif n'est pas empruntable en mode d'isolement\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Détails\",\"UTTKmT\":\"Temps de recharge de la mise activé\",\"UXeR72\":\"Ces fonds ont été empruntés et ne peuvent pas être retirés pour le moment.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Aucune récompense à réclamer\",\"V0f2Xv\":\"Facteur de réserve\",\"V1HK43\":\"Risques liés à la migration\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Dette couverte\",\"VHOVEJ\":\"Connecter le portefeuille\",\"VMfYUK\":\"Sécurité de votre garantie déposée contre les actifs empruntés et sa valeur sous-jacente.\",\"VOAZJh\":\"Total des emprunts\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Examiner les détails de la transaction\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Rien fourni pour le moment\",\"W5kTFy\":\"Vote\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode augmente votre LTV pour une catégorie d'actifs sélectionnée jusqu'à <0/>. <1>En savoir plus\",\"WPWG/y\":\"Statut et configuration de la réserve\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"L'utilisateur ne peut pas retirer plus que le solde disponible\",\"WaZyaV\":\"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Étant donné que cette ressource est suspendue, aucune action ne peut être entreprise jusqu’à nouvel ordre\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Pour emprunter, vous devez fournir tout actif à utiliser comme garantie.\",\"X/ITG9\":\"Copier le texte d'erreur\",\"X3Pp6x\":\"Utilisé comme collatéral\",\"X4Zt7j\":\"L'action ne peut pas être effectuée car la réserve est mise en pause\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Vous quitterez le mode d'isolement et d'autres jetons peuvent désormais être utilisés comme collatéral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTER NON\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Activation du E-Mode\",\"YSodyW\":\"Cette action réduira votre facteur de santé. Veuillez garder à l’esprit le risque accru de liquidation des garanties.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Le mode réseau de test est activé\",\"YrDxdO\":\"Si votre prêt à la valeur dépasse le seuil de liquidation, votre garantie fournie peut être liquidée.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Les conditions de rééquilibrage des taux d'intérêt n'ont pas été remplies\",\"YyydIq\":[\"Ajouter \",[\"0\"],\" à Wallet pour suivre votre solde.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gouvernance Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Mode efficacité (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Désactiver le réseau de test\",\"Zbyywy\":\"Coupure maximale\",\"ZfUGFb\":\"Avant de déposer\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valeur de liquidation\",\"ZrEc8j\":\"Nous n’avons trouvé aucun élément lié à votre recherche. Réessayez avec un autre nom, symbole ou adresse de ressource.\",\"ZsLF7e\":\"Activé\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Temps restant pour dépiquer\",\"a5RYZd\":\"La désactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santé.\",\"a7u1N9\":\"Prix\",\"a9D+6D\":\"Non jalonné\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"aOKIms\":\"Les paramètres de tableau devraient être de même longueur ne sont pas\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Prêt APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Avertissement de période de refroidissement\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Actif\",\"bXQ/Og\":\"Partager sur Twitter\",\"bXr0ee\":\"Les actifs isolés ont un pouvoir d'emprunt limité et les autres actifs ne peuvent pas être utilisés comme garantie.\",\"bYmAV1\":\"Adresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Le montant demandé est supérieur au montant maximum du prêt en mode taux stable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Fournir\",\"bxN6EM\":\"Impossible de désactiver le mode E\",\"c91vuQ\":\"L'adresse n'est pas un contrat\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Vous ne pouvez pas retirer ce montant car cela entraînera un appel de garantie\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Votre pouvoir de vote est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"cLo09S\":\"Détails des risques\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Remboursement \",[\"symbole\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Discussion de forum\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"Vous n'avez pas participé à cette proposition\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gouvernance\",\"dEgA5A\":\"Annuler\",\"dIsyWh\":\"Échec de la validation LTV\",\"dOB5nW\":[\"La quantité maximale disponible pour la fourniture est de <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Actifs à emprunter\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"L’emprunt est désactivé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"djsg0o\":\"Usage de collatéral\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Jeton de dette Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 des adresses\",\"eD8WX/\":\"L'action nécessite une réserve active\",\"eJRJ04\":\"Montant à la mise en jeu\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Récompenses de staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aucune transaction n’a encore été effectuée.\",\"ebLGGN\":\"Total emprunté\",\"ecqEvn\":\"Le solde de la garantie est de 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible sur\",\"enruNF\":\"Commence\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Arrêter de staker maintenant\",\"evw5ha\":\"Valeur nette\",\"ezcU16\":\"Obtenir le jeton ABP\",\"f3W0Ej\":[\"Vous êtes passé au tarif \",[\"0\"]],\"fMJQZK\":\"Emprunté\",\"fZ5Vnu\":\"Reçu\",\"firl9Q\":\"Votre prêt actuel à la valeur en fonction de votre collatéral fournie.\",\"fldjW9\":\"Prévisualiser tx et migrer\",\"fsBGk0\":\"Solde\",\"fu1Dbh\":[\"Retirer \",[\"symbole\"]],\"fwjWSI\":\"Fourni\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Alimenté par\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"Foire aux questions\",\"g9zzqS\":\"A voté NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Mode réseau test\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Cet actif est gelé en raison d’une décision de gouvernance du protocole Aave. <0>Plus d’informations\",\"gTHi2T\":\"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo\",\"gVW59Y\":\"Veuillez connecter votre portefeuille pour obtenir des ressources de réseau de test gratuites.\",\"gcFNxP\":\"Approuver Confirmé\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Adresse zéro non-valide\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Frais de protocole de pont invalide\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\". .CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activer le temps de recharge\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY Net\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Revendiqué\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Montant\",\"hjDCQr\":\"Il y a eu une erreur. Veuillez essayer de modifier les paramètres ou <0><1>copier l'erreur\",\"hom7qf\":\"Réclamer\",\"hpHJ4I\":\"Garantie liquidée\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Emprunter \",[\"symbole\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"À propos de GHO\",\"iChbOF\":\"Paramètres de prêt flash incohérents\",\"iEPVHF\":\"Pas assez de pouvoir de vote pour participer à cette proposition\",\"iEW87X\":\"Délégation de pouvoirs\",\"iEju36\":[\"Vous avez voté \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Sélectionner la tolérance de glissement\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Entrez un montant\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens n'est pas la même chose que de les staker . Si vous souhaitez staker votre\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Utilisez-le pour voter pour ou contre les propositions actives.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Informations sur le collectionneur\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"L'utilisation du collatéral est limitée en raison du mode d'isolation.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Fournir votre\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Désactiver le E-mode\",\"jKYzR1\":\"Activer le E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Temps de recharge restant\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migré\",\"jmXdoY\":\"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accéder à tous les actifs\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Non disponible\",\"k/sb6z\":\"Choisir la langue\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Réclamer \",[\"0\"]],\"kH6wUX\":\"Impact sur les prix\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" Actifs sélectionnés\"],\"kN1Yg5\":\"Pour rembourser au nom d'un utilisateur, un montant explicite à rembourser est nécessaire\",\"kRTD40\":[\"Montant de remboursement à atteindre \",[\"0\"],\"% d’utilisation\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Le plafond d'approvisionnement est dépassé\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\". JSON (en anglais seulement)\",\"ks2LWT\":\"Le plafond de la dette n'est pas nul\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"L’actif ne peut pas être migré en raison d’une liquidité insuffisante ou d’une limitation du plafond d’emprunt \",[\"marketName\"],\" v3 marché.\"],\"lVhKKI\":\"A voté YAE\",\"lWLqxB\":\"Nous n’avons trouvé aucune transaction liée à votre recherche. Réessayez avec un autre nom de ressource ou réinitialisez les filtres.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Anglais\",\"lfEjIE\":\"En savoir plus dans notre <0>guide FAQ\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Émission totale par jour\",\"m7r7Hh\":\"Sélection d’actifs d’emprunt\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs ou utiliser <0>\",[\"0\"],\" pour transférer votre \",[\"network\"],\" actif.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Acheter \",[\"cryptoSymbol\"],\" avec Fiat\"],\"mvCXBY\":\"Mise en jeu AAVE\",\"mwdzil\":\"D'accord, fermer\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"L'actif ne peut pas être utilisé comme collatéral.\",\"n+SX4g\":\"Développeurs\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Fournir apy\",\"nJgsQu\":\"Avec un pouvoir de vote de <0/>\",\"nLC6tu\":\"Français\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Peut être exécuté\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Les deux\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Quelque chose s’est mal passé\",\"nxyWvj\":\"Le retrait de ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"L'approvisionnement en aTokens n'est pas nul\",\"o5ooMr\":\"Dette\",\"o7J4JM\":\"Filtrer\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Temps de recharge pour déstaker\",\"oJ5ZiG\":\"L'utilisateur n'a pas de dette à taux variable impayée sur cette réserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Ressources de test\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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é.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible au dépôt\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Rien n’a été trouvé\",\"owSsI3\":\"Signatures prêtes\",\"p+R52m\":\"Accéder à Balancer Pool\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour être emprunté à ce marché.\",\"p45alK\":\"Configurer la délégation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Le solde sous-jacent doit être supérieur à 0\",\"pgWG9H\":\"Pas assez de solde staké\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Je comprends comment fonctionnent le temps de recharge (\",[\"0\"],\") et le retrait (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"L'appelant de cette fonction doit être un pool\",\"q/51mF\":\"Migrer vers la V3\",\"q3df11\":\"Stratégie de taux d’intérêt\",\"q6lAbz\":\"Staké\",\"qB4kPi\":\"Fournir APY\",\"qENI8q\":\"Paramètres globaux\",\"qGz5zl\":\"Solde de garantie après remboursement\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copier l'erreur\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.\",\"qY2jnw\":\"Expiration invalide\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Montant non valide à brûler\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Le montant doit être supérieur à 0\",\"rQ+R+0\":\"Sélection d’actifs d’approvisionnement\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Afficher les actifs avec 0 solde\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Vie privée\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Réclamez toutes les récompenses\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Votre pouvoir de proposition est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Réviser tx\",\"sP2+gB\":\"NON\",\"sQv06Y\":\"pour\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Vous unstaké ici\",\"smJNwH\":\"Disponible à emprunter\",\"solypO\":\"Le facteur de santé n'est pas inférieur au seuil\",\"sr0UJD\":\"Retourner\",\"ss5GCK\":\"L'adresse du fournisseur d'adresses du pool n'est pas valide\",\"swEgK4\":\"Vos informations de vote\",\"t+wtgf\":\"Aucun emprunt pour l'instant\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Prix Oracle\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Accéder au tableau de bord V3\",\"tOcg3N\":\"Étant donné que cet actif est gelé, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord\",\"tOuXfv\":[\"Emprunter le montant à atteindre \",[\"0\"],\"% d’utilisation\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"S'il vous plaît, connectez votre portefeuille\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Vos ressources\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"La transaction a échoué\",\"u706uF\":\"Prime flash non valide\",\"u8Gfu7\":[\"Aucun résultat de recherche\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"Aucune ressource n’a été sélectionnée pour la migration.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migration\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Exporter des données vers\",\"ulup2p\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"usB84Z\":\"Le montant maximum disponible pour emprunter est limité car le plafond d’emprunt du protocole est presque atteint.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacité d’emprunt restante pour effectuer le transfert de dette.\",\"vEqxH9\":\"Restauré\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Cacher\",\"vMba49\":\"L'emprunt n'est pas activé\",\"vMpNwt\":\"Approuvez avec\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"L'offre de dette stable n'est pas nulle\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Récompenses APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Vous \",[\"action\"],\" <0/> \",[\"symbole\"]],\"wBIsjb\":\"Canal Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"L'appelant de la fonction n'est pas un AToken\",\"wRRqvW\":\"Vous n'avez pas de fournitures dans cette devise\",\"wZFvVU\":\"VOTER OUI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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 «\xA0Faucet\xA0» 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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Les ressources sélectionnées ont été migrées avec succès. Rendez-vous sur le tableau de bord du marché pour les voir.\",\"x7F2p6\":\"Différentiel de courant\",\"x7K5ib\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenir un test gratuit \",[\"0\"],\" à\"],\"x9iLRD\":\"tokens, veuillez vous rendre sur\",\"xNy/UG\":\"Rembourser avec\",\"xPm8wv\":\"En savoir plus sur les risques encourus\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Vos informations\",\"xaWZ6f\":\"Changement de type APY\",\"xh6k71\":\"L’utilisation des garanties est limitée en raison du mode d’isolation.\",\"xvIklc\":\"Flashloan est désactivé pour cet actif, cette position ne peut donc pas être migrée.\",\"y5rS9U\":\"Émigrer\",\"y66tBm\":[\"Activer \",[\"symbol\"],\" comme collatéral\"],\"yB1YpA\":\"Mode Sombre\",\"yCrG6m\":\"Taille totale du marché\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Aperçu des transactions\",\"yLGmLX\":[\"Remise en jeu \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Pas une adresse valide\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Suivre le portefeuille\",\"yh2sjd\":[\"Impact sur les prix \",[\"0\"],\"%\"],\"yhvj6d\":\"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraînera un appel de garantie\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Il n'y a pas assez de fonds dans la \",[\"0\"],\" réserve pour emprunter\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Fermer\",\"z4uGQg\":\"Le plafond de la dette est dépassé\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantie choisie ne peut être liquidée\",\"z5Y+p6\":[\"Fournir \",[\"symbole\"]],\"zCjNKs\":\"L'action ne peut pas être effectuée car la réserve est gelée\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Plafond de la dette isolée\",\"zTOjMP\":\"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Dette restante\",\"zmTPiV\":\"Bilan d'approvisionnement\",\"zpPbZl\":\"Paramètres du risque de liquidation\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Apprendre encore plus\",\"zy9fXn\":[\"L’actif est gelé \",[\"marketName\"],\" v3, donc cette position ne peut pas être migrée.\"],\"zys+R6\":\"Faites attention à la congestion du réseau et aux prix de l’essence.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Bilan de l’alimentation après le changement\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Afficher les ressources gelées ou mises en pause\",\"TszKts\":\"Emprunter le solde après le changement\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file From b0c26d5e67437528a810d3f76b7cee1ca6b6db46 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 11:34:58 +0900 Subject: [PATCH 08/39] refactor(buttons): use fixed heights per size and drop vertical padding --- src/layouts/AppHeader.tsx | 4 ++-- src/layouts/SettingsMenu.tsx | 2 +- src/utils/theme.tsx | 8 +++++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/layouts/AppHeader.tsx b/src/layouts/AppHeader.tsx index 16519e1a9c..c894ad3fff 100644 --- a/src/layouts/AppHeader.tsx +++ b/src/layouts/AppHeader.tsx @@ -281,7 +281,7 @@ export function AppHeader() { onClick={handleBridgeClick} variant="surface" startIcon={} - sx={{ p: '0.5rem 0.88rem', minWidth: 'unset', alignItems: 'center' }} + sx={{ p: '0 0.88rem', minWidth: 'unset', alignItems: 'center' }} > {!smd && ( @@ -317,7 +317,7 @@ export function AppHeader() { )} } - sx={{ p: '0.5rem 0.88rem', minWidth: 'unset', alignItems: 'center' }} + sx={{ p: '0 0.88rem', minWidth: 'unset', alignItems: 'center' }} aria-label="Switch tool" disabled={!showSwitchButton} > diff --git a/src/layouts/SettingsMenu.tsx b/src/layouts/SettingsMenu.tsx index fb9cb4896e..7b573df23d 100644 --- a/src/layouts/SettingsMenu.tsx +++ b/src/layouts/SettingsMenu.tsx @@ -71,7 +71,7 @@ export function SettingsMenu() { aria-expanded={settingsOpen ? 'true' : undefined} aria-haspopup="true" onClick={handleSettingsClick} - sx={{ p: '0.5rem', minWidth: 'unset', ml: 2 }} + sx={{ p: '0 0.5rem', minWidth: 'unset', ml: 2 }} > ({ fontSize: '20px', color: theme.palette.fig['fg-2'] })} /> diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 0b160a8d00..342f99dbb8 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -447,14 +447,17 @@ export function getThemedComponents(theme: Theme) { }, sizeLarge: { ...theme.typography.buttonL, - padding: '10px 24px', + height: '44px', + padding: '0 24px', }, sizeMedium: { ...theme.typography.buttonM, - padding: '6px 12px', + height: '36px', + padding: '0 12px', }, sizeSmall: { ...theme.typography.buttonS, + height: '28px', padding: '0 6px', }, }, @@ -865,7 +868,6 @@ export function getThemedComponents(theme: Theme) { outlined: { backgroundColor: theme.palette.fig['bg-1'], ...theme.typography.buttonM, - padding: '6px 12px', color: theme.palette.fig['fg-1'], }, }, From 6ee2dabf127f03fcd79b332950b292a3e1e47900 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 11:35:18 +0900 Subject: [PATCH 09/39] feat(favourites): gold star icon with label and icon on the right --- src/components/MarketSwitcher.tsx | 11 ++++----- src/components/TopInfoPanel/PageTitle.tsx | 30 +++++++++++------------ src/components/icons/StarIcon.tsx | 12 +++++++++ 3 files changed, 32 insertions(+), 21 deletions(-) create mode 100644 src/components/icons/StarIcon.tsx diff --git a/src/components/MarketSwitcher.tsx b/src/components/MarketSwitcher.tsx index b85531b294..6357467ec7 100644 --- a/src/components/MarketSwitcher.tsx +++ b/src/components/MarketSwitcher.tsx @@ -1,5 +1,5 @@ import { SearchIcon, XIcon } from '@heroicons/react/outline'; -import { ExternalLinkIcon, StarIcon } from '@heroicons/react/solid'; +import { ExternalLinkIcon } from '@heroicons/react/solid'; import { t, Trans } from '@lingui/macro'; import { Box, @@ -19,6 +19,7 @@ import { } from '@mui/material'; import React, { useMemo, useRef, useState } from 'react'; import { ChevronUpDownIcon } from 'src/components/icons/ChevronUpDownIcon'; +import { FAVOURITE_STAR_COLOR, StarIcon } from 'src/components/icons/StarIcon'; import { useRootStore } from 'src/store/root'; import { BaseNetworkConfig } from 'src/ui-config/networksConfig'; import { DASHBOARD } from 'src/utils/events'; @@ -413,14 +414,12 @@ export const MarketSwitcher = () => { onClick={(e) => handleStarClick(e, marketId)} sx={{ padding: '1px', ml: 0.5, flexShrink: 0 }} > - - - + /> ); diff --git a/src/components/TopInfoPanel/PageTitle.tsx b/src/components/TopInfoPanel/PageTitle.tsx index b3a131bd53..5b41885d5b 100644 --- a/src/components/TopInfoPanel/PageTitle.tsx +++ b/src/components/TopInfoPanel/PageTitle.tsx @@ -1,7 +1,7 @@ -import { StarIcon } from '@heroicons/react/solid'; import { Trans } from '@lingui/macro'; -import { Box, Button, SvgIcon, Typography, useMediaQuery, useTheme } from '@mui/material'; +import { Box, Button, Typography, useMediaQuery, useTheme } from '@mui/material'; import { ReactNode } from 'react'; +import { FAVOURITE_STAR_COLOR, StarIcon } from 'src/components/icons/StarIcon'; import { useRootStore } from '../../store/root'; import { selectIsMigrationAvailable } from '../../store/v3MigrationSelectors'; @@ -96,27 +96,27 @@ export const PageTitle = ({ sx={{ display: 'none', [theme.breakpoints.up(800)]: { display: 'flex' }, // Hide on mobile (xs) and for widths between 759px and 800px, show on small screens and up - p: '7px 8px', + p: '0 8px', minWidth: 'unset', gap: 2, alignItems: 'center', }} aria-label="Favorite tool" > - - - - - - - {isCurrentMarketFavorite ? Favourited : Favourite} + {isCurrentMarketFavorite ? ( + Favourited + ) : ( + Add to Favourites + )} + + )} diff --git a/src/components/icons/StarIcon.tsx b/src/components/icons/StarIcon.tsx new file mode 100644 index 0000000000..13fb1b57fa --- /dev/null +++ b/src/components/icons/StarIcon.tsx @@ -0,0 +1,12 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Gold used for the favourited state of the star toggle. +export const FAVOURITE_STAR_COLOR = '#FFB300'; + +// Filled star for the "favourite" toggle. Fills with `currentColor` so the consumer +// controls the color (e.g. gold when favourited, muted when not). +export const StarIcon = ({ sx, ...rest }: SvgIconProps) => ( + + + +); From afa811602ce16348bcdbf05c0f96b19329165b36 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 12:17:52 +0900 Subject: [PATCH 10/39] style(buttons): use bg-4 token for secondary button hover --- src/utils/theme.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 342f99dbb8..9141f9c808 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -29,7 +29,7 @@ const secondaryPillStyle = (fig: Record) => ({ color: fig['fg-3'], }, '&:hover, &.Mui-focusVisible': { - backgroundColor: fig['bg-3'], + backgroundColor: fig['bg-4'], boxShadow: figSurfaceShadow(fig), }, }); From 6e60fcbc299b9dae36bf39fe4f49b8ab64f5205a Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 16:29:53 +0900 Subject: [PATCH 11/39] feat(controls): themed checkbox and pill toggle switch --- src/utils/theme.tsx | 79 ++++++++++++++++++++++++++++++++++++++------- 1 file changed, 67 insertions(+), 12 deletions(-) diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 9141f9c808..cabf29c299 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -4,7 +4,7 @@ import { ExclamationIcon, InformationCircleIcon, } from '@heroicons/react/outline'; -import { SvgIcon, Theme, ThemeOptions } from '@mui/material'; +import { Box, SvgIcon, Theme, ThemeOptions } from '@mui/material'; import { createTheme } from '@mui/material/styles'; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore @@ -34,6 +34,9 @@ const secondaryPillStyle = (fig: Record) => ({ }, }); +// Shared box geometry for the custom checkbox icon (unchecked + checked). +const checkboxIconBox = { width: 18, height: 18, borderRadius: '0.375rem' }; + const theme = createTheme(); const { typography: { pxToRem }, @@ -502,6 +505,53 @@ export function getThemedComponents(theme: Theme) { }, ], }, + MuiCheckbox: { + defaultProps: { + disableRipple: true, + icon: ( + + ), + checkedIcon: ( + + + + + + ), + }, + styleOverrides: { + root: { + '&:hover, &.Mui-focusVisible': { + backgroundColor: 'transparent', + }, + }, + }, + }, MuiTypography: { defaultProps: { variant: 'description', @@ -572,7 +622,10 @@ export function getThemedComponents(theme: Theme) { MuiListItemText: { styleOverrides: { root: { - ...theme.typography.subheader1, + ...theme.typography.subheader2, + fontSize: pxToRem(14), + fontWeight: 400, + lineHeight: pxToRem(14), }, }, }, @@ -663,16 +716,18 @@ export function getThemedComponents(theme: Theme) { MuiSwitch: { styleOverrides: { root: { - height: 20 + 6 * 2, - width: 34 + 6 * 2, - padding: 6, + width: '1.75rem', + height: '1.125rem', + padding: 0, + flexShrink: 0, }, switchBase: { - padding: 8, + padding: 0, + margin: '2px', '&.Mui-checked': { - transform: 'translateX(14px)', + transform: 'translateX(10px)', '& + .MuiSwitch-track': { - backgroundColor: theme.palette.success.main, + backgroundColor: theme.palette.fig['purple-1'], opacity: 1, }, }, @@ -682,15 +737,15 @@ export function getThemedComponents(theme: Theme) { }, thumb: { color: figmaDark['fg-1'], - borderRadius: '6px', - width: '16px', - height: '16px', + borderRadius: '50%', + width: '14px', + height: '14px', boxShadow: '0px 1px 1px rgba(0, 0, 0, 0.12)', }, track: { opacity: 1, backgroundColor: theme.palette.action.active, - borderRadius: '8px', + borderRadius: '9px', }, }, }, From 5d6db7867403694609f6b1bdfda74bdeb5ec14ca Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 16:30:11 +0900 Subject: [PATCH 12/39] refactor(settings): shared switch row and drop on/off labels --- src/layouts/components/DarkModeSwitcher.tsx | 44 ++++--------------- src/layouts/components/SettingSwitchRow.tsx | 41 +++++++++++++++++ src/layouts/components/ShieldSwitcher.tsx | 31 +++---------- .../components/TestNetModeSwitcher.tsx | 36 ++++----------- 4 files changed, 66 insertions(+), 86 deletions(-) create mode 100644 src/layouts/components/SettingSwitchRow.tsx diff --git a/src/layouts/components/DarkModeSwitcher.tsx b/src/layouts/components/DarkModeSwitcher.tsx index 7f15a2d3eb..2604525a18 100644 --- a/src/layouts/components/DarkModeSwitcher.tsx +++ b/src/layouts/components/DarkModeSwitcher.tsx @@ -1,18 +1,11 @@ import { Trans } from '@lingui/macro'; -import { - Box, - FormControlLabel, - ListItem, - ListItemText, - MenuItem, - Switch, - useTheme, -} from '@mui/material'; -import React from 'react'; +import { ListItem, MenuItem, useTheme } from '@mui/material'; +import { useContext } from 'react'; import { useRootStore } from 'src/store/root'; import { SETTINGS } from 'src/utils/events'; import { ColorModeContext } from '../AppGlobalStyles'; +import { SettingSwitchRow } from './SettingSwitchRow'; interface DarkModeSwitcherProps { component?: typeof MenuItem | typeof ListItem; @@ -20,35 +13,16 @@ interface DarkModeSwitcherProps { export const DarkModeSwitcher = ({ component = ListItem }: DarkModeSwitcherProps) => { const theme = useTheme(); - const colorMode = React.useContext(ColorModeContext); + const colorMode = useContext(ColorModeContext); const trackEvent = useRootStore((store) => store.trackEvent); return ( - Dark mode} + checked={theme.palette.mode === 'dark'} onClick={colorMode.toggleColorMode} - sx={{ - color: { xs: '#F1F1F3', md: 'text.primary' }, - py: { xs: 1.5, md: 2 }, - }} - > - - Dark mode - - trackEvent(SETTINGS.DARK_MODE, { mode: theme.palette.mode })} - disableRipple - checked={theme.palette.mode === 'dark'} - sx={{ '.MuiSwitch-track': { bgcolor: { xs: '#FFFFFF1F', md: 'primary.light' } } }} - /> - } - label={theme.palette.mode === 'dark' ? 'On' : 'Off'} - labelPlacement="start" - /> - + onSwitchClick={() => trackEvent(SETTINGS.DARK_MODE, { mode: theme.palette.mode })} + /> ); }; diff --git a/src/layouts/components/SettingSwitchRow.tsx b/src/layouts/components/SettingSwitchRow.tsx new file mode 100644 index 0000000000..0e4ad96bbb --- /dev/null +++ b/src/layouts/components/SettingSwitchRow.tsx @@ -0,0 +1,41 @@ +import { Box, ListItem, ListItemText, MenuItem, Switch } from '@mui/material'; +import { ReactNode } from 'react'; +import { figmaDark } from 'src/utils/figmaColors'; + +interface SettingSwitchRowProps { + component?: typeof MenuItem | typeof ListItem; + label: ReactNode; + checked: boolean; + onClick: () => void; + // Optional switch-specific click (e.g. analytics) — fires in addition to the row `onClick`. + onSwitchClick?: () => void; +} + +// A settings-menu row: label on the left, toggle on the right. Shared by the dark-mode / +// shield / testnet switchers, which render in both the desktop settings menu and the +// (always-dark) mobile drawer — hence the responsive text/track colors. +export const SettingSwitchRow = ({ + component = ListItem, + label, + checked, + onClick, + onSwitchClick, +}: SettingSwitchRowProps) => ( + + {label} + + +); diff --git a/src/layouts/components/ShieldSwitcher.tsx b/src/layouts/components/ShieldSwitcher.tsx index 555b4f6faa..70b003f734 100644 --- a/src/layouts/components/ShieldSwitcher.tsx +++ b/src/layouts/components/ShieldSwitcher.tsx @@ -1,8 +1,10 @@ import { Trans } from '@lingui/macro'; -import { Box, FormControlLabel, ListItem, ListItemText, MenuItem, Switch } from '@mui/material'; +import { ListItem, MenuItem } from '@mui/material'; import { useRootStore } from 'src/store/root'; import { SETTINGS } from 'src/utils/events'; +import { SettingSwitchRow } from './SettingSwitchRow'; + interface ShieldSwitcherProps { component?: typeof MenuItem | typeof ListItem; } @@ -13,34 +15,15 @@ export const ShieldSwitcher = ({ component = ListItem }: ShieldSwitcherProps) => const trackEvent = useRootStore((store) => store.trackEvent); return ( - Aave Shield} + checked={shieldEnabled} onClick={() => { const newValue = !shieldEnabled; toggleShield(); trackEvent(SETTINGS.SHIELD_TOGGLE, { enabled: newValue }); }} - sx={{ - color: { xs: '#F1F1F3', md: 'text.primary' }, - py: { xs: 1.5, md: 2 }, - }} - > - - Aave Shield - - - } - label={shieldEnabled ? 'On' : 'Off'} - labelPlacement="start" - /> - + /> ); }; diff --git a/src/layouts/components/TestNetModeSwitcher.tsx b/src/layouts/components/TestNetModeSwitcher.tsx index 6510b9d818..2279c7734f 100644 --- a/src/layouts/components/TestNetModeSwitcher.tsx +++ b/src/layouts/components/TestNetModeSwitcher.tsx @@ -1,9 +1,11 @@ import { Trans } from '@lingui/macro'; -import { Box, FormControlLabel, ListItem, ListItemText, MenuItem, Switch } from '@mui/material'; -import React, { useState } from 'react'; +import { ListItem, MenuItem } from '@mui/material'; +import { useState } from 'react'; import { useRootStore } from 'src/store/root'; import { SETTINGS } from 'src/utils/events'; +import { SettingSwitchRow } from './SettingSwitchRow'; + interface TestNetModeSwitcherProps { component?: typeof MenuItem | typeof ListItem; } @@ -23,32 +25,12 @@ export const TestNetModeSwitcher = ({ component = ListItem }: TestNetModeSwitche }; return ( - Testnet mode} + checked={testnetsEnabled} onClick={toggleTestnetsEnabled} - sx={{ - cursor: 'pointer', - color: { xs: '#F1F1F3', md: 'text.primary' }, - py: { xs: 1.5, md: 2 }, - }} - > - - Testnet mode - - trackEvent(SETTINGS.TESTNET_MODE)} - checked={testnetsEnabled} - sx={{ '.MuiSwitch-track': { bgcolor: { xs: '#FFFFFF1F', md: 'primary.light' } } }} - /> - } - label={testnetsEnabled ? 'On' : 'Off'} - labelPlacement="start" - /> - + onSwitchClick={() => trackEvent(SETTINGS.TESTNET_MODE)} + /> ); }; From e014f909e53f103bcdbf83e9e65226b33aaac5e6 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 16 Jul 2026 16:30:28 +0900 Subject: [PATCH 13/39] style(top-panel): tighten top-panel item spacing --- src/components/TopInfoPanel/TopInfoPanelItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TopInfoPanel/TopInfoPanelItem.tsx b/src/components/TopInfoPanel/TopInfoPanelItem.tsx index 764e304de3..805ef2534e 100644 --- a/src/components/TopInfoPanel/TopInfoPanelItem.tsx +++ b/src/components/TopInfoPanel/TopInfoPanelItem.tsx @@ -38,7 +38,7 @@ export const TopInfoPanelItem = ({ {withLine && ( Date: Thu, 16 Jul 2026 17:25:35 +0900 Subject: [PATCH 14/39] style(nav): increase top-nav item vertical padding --- src/layouts/components/NavItems.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/components/NavItems.tsx b/src/layouts/components/NavItems.tsx index db60786948..15790e107c 100644 --- a/src/layouts/components/NavItems.tsx +++ b/src/layouts/components/NavItems.tsx @@ -68,7 +68,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} onClick={() => handleClick(item.title, false)} href={item.link} - sx={(theme) => navLinkSx(theme, '1.625rem 0.88rem')} + sx={(theme) => navLinkSx(theme, '2.25rem 0.88rem')} > {i18n._(item.title)} From e48b9e7a8d47d07ceddfbcc5a8c7cc58bc7462bb Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Fri, 17 Jul 2026 07:35:36 +0900 Subject: [PATCH 15/39] feat(modal): themed paper variant, backdrop, and close icon --- src/components/icons/CloseIcon.tsx | 14 ++++++++++++++ src/components/primitives/BasicModal.tsx | 16 +++++++++++----- src/utils/figmaColors.ts | 2 +- src/utils/theme.tsx | 14 ++++++++++++++ 4 files changed, 40 insertions(+), 6 deletions(-) create mode 100644 src/components/icons/CloseIcon.tsx diff --git a/src/components/icons/CloseIcon.tsx b/src/components/icons/CloseIcon.tsx new file mode 100644 index 0000000000..2b127278eb --- /dev/null +++ b/src/components/icons/CloseIcon.tsx @@ -0,0 +1,14 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Close (X) icon. Strokes with `currentColor` so it inherits the consumer's color +// (e.g. a palette token via `color`/sx). +export const CloseIcon = ({ sx, ...rest }: SvgIconProps) => ( + + + + +); diff --git a/src/components/primitives/BasicModal.tsx b/src/components/primitives/BasicModal.tsx index 7b20f4f0b9..9d1930e357 100644 --- a/src/components/primitives/BasicModal.tsx +++ b/src/components/primitives/BasicModal.tsx @@ -1,7 +1,8 @@ -import { XIcon } from '@heroicons/react/outline'; -import { Box, IconButton, Modal, Paper, SvgIcon } from '@mui/material'; +import { Box, IconButton, Modal, Paper } from '@mui/material'; import React from 'react'; +import { CloseIcon } from '../icons/CloseIcon'; + export interface BasicModalProps { open: boolean; children: React.ReactNode; @@ -47,6 +48,9 @@ export const BasicModal = ({ '.MuiPaper-root': { outline: 'none', }, + '.MuiBackdrop-root': { + backgroundColor: 'rgba(0, 0, 0, 0.32)', + }, }} onClick={(e) => { e.stopPropagation(); @@ -55,6 +59,7 @@ export const BasicModal = ({ data-cy={'Modal'} > - - - + ({ fontSize: '24px', color: theme.palette.fig['fg-3'] })} + /> )} diff --git a/src/utils/figmaColors.ts b/src/utils/figmaColors.ts index f8602eed27..761e9b918d 100644 --- a/src/utils/figmaColors.ts +++ b/src/utils/figmaColors.ts @@ -50,7 +50,7 @@ export const figmaLight = { 'navy-2': '#6188c0', 'navy-3': '#b0d3ff', 'shadow-low': 'rgba(0, 0, 0, 0.02)', - 'shadow-medium': 'rgba(46, 15, 15, 0.05)', + 'shadow-medium': 'rgba(0, 0, 0, 0.04)', 'shadow-high': 'rgba(46, 15, 15, 0.07)', 'shadow-strong': 'rgba(46, 15, 15, 0.12)', 'shadow-stroke-1': 'rgba(46, 15, 15, 0.08)', diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index cabf29c299..e372133c20 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -151,6 +151,12 @@ declare module '@mui/material/Button' { } } +declare module '@mui/material/Paper' { + interface PaperPropsVariantOverrides { + modal: true; + } +} + export const getDesignTokens = (mode: 'light' | 'dark') => { const getColor = (lightColor: string, darkColor: string) => mode === 'dark' ? darkColor : lightColor; @@ -671,6 +677,14 @@ export function getThemedComponents(theme: Theme) { ...(theme.palette.mode === 'dark' ? { backgroundImage: 'none' } : {}), }, }, + { + props: { variant: 'modal' }, + style: { + borderRadius: '0.75rem', + backgroundColor: theme.palette.fig['bg-2'], + boxShadow: `0 0 0 1px ${theme.palette.fig['border-1']}, 0 4px 16px 0 ${theme.palette.fig['shadow-medium']}`, + }, + }, ], }, MuiContainer: { From 97dc2cd119e64cfa138a60df4d3fbec258f07da3 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Fri, 17 Jul 2026 07:35:59 +0900 Subject: [PATCH 16/39] style(modal): apply H4 spec to modal titles --- .../transactions/FlowCommons/TxModalTitle.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/transactions/FlowCommons/TxModalTitle.tsx b/src/components/transactions/FlowCommons/TxModalTitle.tsx index 702ed90ee4..c3c8d78a11 100644 --- a/src/components/transactions/FlowCommons/TxModalTitle.tsx +++ b/src/components/transactions/FlowCommons/TxModalTitle.tsx @@ -8,7 +8,16 @@ export type TxModalTitleProps = { export const TxModalTitle = ({ title, symbol }: TxModalTitleProps) => { return ( - + ({ + mb: 6, + color: theme.palette.fig['fg-1'], + fontSize: '1rem', + fontWeight: 500, + lineHeight: '1.5rem', + })} + > {title} {symbol ?? ''} ); From 3bcb3b5acc17dbd5a2db48c34a9c21e6cc1291f9 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Fri, 17 Jul 2026 18:10:49 +0900 Subject: [PATCH 17/39] refactor(theme): consolidate button variants and add createAppTheme --- src/components/HealthFactorNumber.tsx | 2 +- src/components/TopInfoPanel/PageTitle.tsx | 6 +- .../WalletConnection/ConnectWalletButton.tsx | 2 +- .../Bridge/BridgeModalContent.tsx | 2 +- .../MigrateV3/MigrateV3ModalContent.tsx | 2 +- src/layouts/AppGlobalStyles.tsx | 10 +-- src/layouts/AppHeader.tsx | 10 +-- src/layouts/MobileMenu.tsx | 2 +- src/layouts/SettingsMenu.tsx | 2 +- src/modules/bridge/BridgeWrapper.tsx | 2 +- .../dashboard/DashboardContentWrapper.tsx | 4 +- .../dashboard/DashboardEModeButton.tsx | 2 +- src/modules/dashboard/DashboardTopPanel.tsx | 6 +- src/modules/governance/GovernanceTopPanel.tsx | 2 +- .../governance/proposal/ProposalTopPanel.tsx | 2 +- .../migration/MigrationBottomPanel.tsx | 2 +- src/modules/migration/MigrationTopPanel.tsx | 2 +- .../ReserveTopDetailsWrapper.tsx | 2 +- src/modules/staking/GhoStakingPanel.tsx | 2 +- src/modules/staking/StakingPanel.tsx | 2 +- src/modules/umbrella/UmbrellaHeader.tsx | 2 +- src/utils/figmaColors.ts | 4 +- src/utils/theme.tsx | 79 +++++++++---------- 23 files changed, 70 insertions(+), 81 deletions(-) diff --git a/src/components/HealthFactorNumber.tsx b/src/components/HealthFactorNumber.tsx index 2f7d615d91..2f9dad566f 100644 --- a/src/components/HealthFactorNumber.tsx +++ b/src/components/HealthFactorNumber.tsx @@ -50,7 +50,7 @@ export const HealthFactorNumber = ({ value, onInfoClick, ...rest }: HealthFactor {onInfoClick && ( @@ -92,7 +92,7 @@ export const PageTitle = ({ {withFavoriteButton && ( diff --git a/src/layouts/AppGlobalStyles.tsx b/src/layouts/AppGlobalStyles.tsx index ca31f629ea..58cc2d0919 100644 --- a/src/layouts/AppGlobalStyles.tsx +++ b/src/layouts/AppGlobalStyles.tsx @@ -1,10 +1,9 @@ import { useMediaQuery } from '@mui/material'; import CssBaseline from '@mui/material/CssBaseline'; -import { createTheme, ThemeProvider } from '@mui/material/styles'; -import { deepmerge } from '@mui/utils'; +import { ThemeProvider } from '@mui/material/styles'; import React, { ReactNode, useEffect, useMemo, useState } from 'react'; -import { getDesignTokens, getThemedComponents } from '../utils/theme'; +import { createAppTheme } from '../utils/theme'; export const ColorModeContext = React.createContext({ // eslint-disable-next-line @typescript-eslint/no-empty-function @@ -43,10 +42,7 @@ export function AppGlobalStyles({ children }: { children: ReactNode }) { } }, []); - const theme = useMemo(() => { - const themeCreate = createTheme(getDesignTokens(mode)); - return deepmerge(themeCreate, getThemedComponents(themeCreate)); - }, [mode]); + const theme = useMemo(() => createAppTheme(mode), [mode]); return ( diff --git a/src/layouts/AppHeader.tsx b/src/layouts/AppHeader.tsx index c894ad3fff..5a2f7f427f 100644 --- a/src/layouts/AppHeader.tsx +++ b/src/layouts/AppHeader.tsx @@ -241,7 +241,7 @@ export function AppHeader() { {ENABLE_TESTNET && ( - diff --git a/src/modules/dashboard/DashboardContentWrapper.tsx b/src/modules/dashboard/DashboardContentWrapper.tsx index a931aadc6b..90f078e7a9 100644 --- a/src/modules/dashboard/DashboardContentWrapper.tsx +++ b/src/modules/dashboard/DashboardContentWrapper.tsx @@ -66,7 +66,7 @@ export const DashboardContentWrapper = ({ isBorrow }: DashboardContentWrapperPro trackEvent(AUTH.VIEW_TX_HISTORY); }} component="a" - variant="surface" + variant="outlined" size="small" > View Transactions @@ -101,7 +101,7 @@ export const DashboardContentWrapper = ({ isBorrow }: DashboardContentWrapperPro trackEvent(AUTH.VIEW_TX_HISTORY); }} component="a" - variant="surface" + variant="outlined" size="small" > View Transactions diff --git a/src/modules/dashboard/DashboardEModeButton.tsx b/src/modules/dashboard/DashboardEModeButton.tsx index 57acebd969..1d2fced63c 100644 --- a/src/modules/dashboard/DashboardEModeButton.tsx +++ b/src/modules/dashboard/DashboardEModeButton.tsx @@ -209,7 +209,7 @@ export const DashboardEModeButton = ({ userEmodeCategoryId }: DashboardEModeButt {isEModeDisabled ? ( diff --git a/src/layouts/components/StakingMenu.tsx b/src/layouts/components/StakingMenu.tsx index 7fe282b5a2..3c6715dad1 100644 --- a/src/layouts/components/StakingMenu.tsx +++ b/src/layouts/components/StakingMenu.tsx @@ -73,7 +73,7 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { aria-expanded={open ? 'true' : undefined} aria-haspopup="true" onClick={handleClick} - sx={(theme) => navLinkSx(theme, '1.5rem 0.5rem')} + sx={(theme) => navLinkSx(theme, '2.25rem 0.88rem')} > Staking Date: Fri, 17 Jul 2026 18:12:00 +0900 Subject: [PATCH 20/39] feat(dev): component showcase page at /dev/components --- pages/dev/components/[section].page.tsx | 30 ++++ pages/dev/components/index.page.tsx | 16 +++ .../components/ButtonsSection/index.tsx | 39 ++++++ .../components/ColorsSection/index.tsx | 29 ++++ .../DataPrimitivesSection/index.tsx | 98 +++++++++++++ .../components/FeedbackSection/index.tsx | 49 +++++++ .../components/FormControlsSection/index.tsx | 72 ++++++++++ .../components/OverlaysSection/index.tsx | 52 +++++++ .../components/Section/index.tsx | 34 +++++ .../components/ShowcaseLayout/index.tsx | 132 ++++++++++++++++++ .../components/Specimen/index.tsx | 50 +++++++ .../components/SurfacesSection/index.tsx | 102 ++++++++++++++ .../components/Swatch/index.tsx | 37 +++++ .../components/ThemeControl/index.tsx | 30 ++++ .../components/TogglesBadgesSection/index.tsx | 59 ++++++++ .../components/TypographySection/index.tsx | 17 +++ .../dev/ComponentShowcase/utils/catalog.ts | 113 +++++++++++++++ .../dev/ComponentShowcase/utils/registry.tsx | 95 +++++++++++++ 18 files changed, 1054 insertions(+) create mode 100644 pages/dev/components/[section].page.tsx create mode 100644 pages/dev/components/index.page.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/ColorsSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/FeedbackSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/Section/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/Specimen/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/Swatch/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/ThemeControl/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/components/TypographySection/index.tsx create mode 100644 src/modules/dev/ComponentShowcase/utils/catalog.ts create mode 100644 src/modules/dev/ComponentShowcase/utils/registry.tsx diff --git a/pages/dev/components/[section].page.tsx b/pages/dev/components/[section].page.tsx new file mode 100644 index 0000000000..ec9af72e7b --- /dev/null +++ b/pages/dev/components/[section].page.tsx @@ -0,0 +1,30 @@ +import { Typography } from '@mui/material'; +import { useRouter } from 'next/router'; +import { ShowcaseLayout } from 'src/modules/dev/ComponentShowcase/components/ShowcaseLayout'; +import { SHOWCASE_SECTIONS } from 'src/modules/dev/ComponentShowcase/utils/registry'; + +/** + * One route per showcase section: `/dev/components/`. Renders only the active + * section (lazily loaded via the registry) inside the shared sidebar layout. Dev-only. + */ +export default function ComponentShowcaseSectionPage() { + const router = useRouter(); + + if (process.env.NODE_ENV !== 'development') { + return null; + } + + const slug = typeof router.query.section === 'string' ? router.query.section : ''; + const section = SHOWCASE_SECTIONS.find((s) => s.slug === slug); + const ActiveSection = section?.Component; + + return ( + + {ActiveSection ? ( + + ) : router.isReady ? ( + Section not found + ) : null} + + ); +} diff --git a/pages/dev/components/index.page.tsx b/pages/dev/components/index.page.tsx new file mode 100644 index 0000000000..8a2da9ef39 --- /dev/null +++ b/pages/dev/components/index.page.tsx @@ -0,0 +1,16 @@ +import { useRouter } from 'next/router'; +import { useEffect } from 'react'; +import { SHOWCASE_SECTIONS } from 'src/modules/dev/ComponentShowcase/utils/registry'; + +// `/dev/components` → redirect to the first section. Dev-only. +export default function ComponentShowcaseIndexPage() { + const router = useRouter(); + + useEffect(() => { + if (process.env.NODE_ENV === 'development') { + router.replace(`/dev/components/${SHOWCASE_SECTIONS[0].slug}`); + } + }, [router]); + + return null; +} diff --git a/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx b/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx new file mode 100644 index 0000000000..d3bf46bc0d --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx @@ -0,0 +1,39 @@ +import { PlusIcon } from '@heroicons/react/outline'; +import { Button, SvgIcon } from '@mui/material'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const VARIANTS = ['contained', 'outlined', 'text'] as const; +const SIZES = ['small', 'medium', 'large'] as const; + +export const ButtonsSection = () => ( +
+ {VARIANTS.map((variant) => ( + + {SIZES.map((size) => ( + + ))} + + + + ))} +
+); diff --git a/src/modules/dev/ComponentShowcase/components/ColorsSection/index.tsx b/src/modules/dev/ComponentShowcase/components/ColorsSection/index.tsx new file mode 100644 index 0000000000..717c539b77 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/ColorsSection/index.tsx @@ -0,0 +1,29 @@ +import { Box, Typography, useTheme } from '@mui/material'; + +import { SWATCH_GROUPS } from '../../utils/catalog'; +import { Section } from '../Section'; +import { Swatch } from '../Swatch'; + +export const ColorsSection = () => { + const { palette } = useTheme(); + + return ( +
+ {SWATCH_GROUPS.map((group) => ( + + + {group.title} + + + {group.names.map((name) => ( + + ))} + + + ))} +
+ ); +}; diff --git a/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx b/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx new file mode 100644 index 0000000000..27bf0c342b --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx @@ -0,0 +1,98 @@ +import { Box } from '@mui/material'; +import { useState } from 'react'; +import { FormattedNumber } from 'src/components/primitives/FormattedNumber'; +import { Link } from 'src/components/primitives/Link'; +import { Row } from 'src/components/primitives/Row'; +import { TokenIcon } from 'src/components/primitives/TokenIcon'; +import { TypographyGradient } from 'src/components/primitives/TypographyGradient'; +import { + DetailsCollateralLine, + DetailsCooldownLine, + DetailsHFLine, + DetailsNumberLine, + DetailsNumberLineWithSub, + DetailsTextLine, + DetailsUnwrapSwitch, + TxModalDetails, +} from 'src/components/transactions/FlowCommons/TxModalDetails'; +import { CollateralType } from 'src/helpers/types'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const TOKENS = ['AAVE', 'ETH', 'USDC', 'DAI', 'GHO', 'WBTC']; + +const UnwrapDemo = () => { + const [unwrapped, setUnwrapped] = useState(false); + return ( + + ); +}; + +export const DataPrimitivesSection = () => ( +
+ + + + + + + + + + + + + {TOKENS.map((symbol) => ( + + ))} + + + + + + + + + + + + + + + Gradient text + + + + Internal link + External link + + + + + + + + + + + + + + + +
+); diff --git a/src/modules/dev/ComponentShowcase/components/FeedbackSection/index.tsx b/src/modules/dev/ComponentShowcase/components/FeedbackSection/index.tsx new file mode 100644 index 0000000000..139f2090c1 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/FeedbackSection/index.tsx @@ -0,0 +1,49 @@ +import { Alert, Box, LinearProgress, Skeleton } from '@mui/material'; +import { CheckBadge } from 'src/components/primitives/CheckBadge'; +import { NoData } from 'src/components/primitives/NoData'; +import { Warning } from 'src/components/primitives/Warning'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const SEVERITIES = ['error', 'warning', 'info', 'success'] as const; + +export const FeedbackSection = () => ( +
+ + + {SEVERITIES.map((severity) => ( + + This is a {severity} alert. + + ))} + + + + + Warning wraps MUI Alert with default spacing. + + + + + + + + + + + + + + + + + + + + + + + +
+); diff --git a/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx b/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx new file mode 100644 index 0000000000..e7779320d9 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx @@ -0,0 +1,72 @@ +import { + Box, + Checkbox, + MenuItem, + Select, + SelectChangeEvent, + Slider, + Switch, + TextField, +} from '@mui/material'; +import { useState } from 'react'; +import { SearchInput } from 'src/components/SearchInput'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const SelectDemo = () => { + const [value, setValue] = useState('ethereum'); + return ( + + ); +}; + +export const FormControlsSection = () => ( +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + undefined} /> + +
+); diff --git a/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx b/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx new file mode 100644 index 0000000000..664c128b95 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx @@ -0,0 +1,52 @@ +import { Button, Typography } from '@mui/material'; +import { useState } from 'react'; +import { ContentWithTooltip } from 'src/components/ContentWithTooltip'; +import { BasicModal } from 'src/components/primitives/BasicModal'; +import { TextWithTooltip } from 'src/components/TextWithTooltip'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const ModalDemo = () => { + const [open, setOpen] = useState(false); + return ( + <> + + + + Modal title + + + BasicModal renders the Paper "modal" variant plus the themed backdrop and close + icon. + + + + ); +}; + +export const OverlaysSection = () => ( +
+ + + + + + Tooltip body content.} + > + + Click me + + + + + + + Explanation of the metric goes here. + + +
+); diff --git a/src/modules/dev/ComponentShowcase/components/Section/index.tsx b/src/modules/dev/ComponentShowcase/components/Section/index.tsx new file mode 100644 index 0000000000..e0441e573d --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/Section/index.tsx @@ -0,0 +1,34 @@ +import { Box, Typography } from '@mui/material'; +import { ReactNode } from 'react'; + +interface SectionProps { + title: string; + description?: string; + children: ReactNode; +} + +export const Section = ({ title, description, children }: SectionProps) => ( + + ({ + pb: 4, + mb: 8, + borderBottom: `1px solid ${theme.palette.divider}`, + })} + > + + {title} + + {description && ( + + {description} + + )} + + {children} + +); diff --git a/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx b/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx new file mode 100644 index 0000000000..18bfcd2240 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx @@ -0,0 +1,132 @@ +import { Box, Container, PaletteMode, Typography, useTheme } from '@mui/material'; +import { ThemeProvider } from '@mui/material/styles'; +import { ReactNode, useMemo, useState } from 'react'; +import { Link } from 'src/components/primitives/Link'; +import { createAppTheme } from 'src/utils/theme'; + +import { SHOWCASE_GROUPS } from '../../utils/registry'; +import { ThemeControl } from '../ThemeControl'; + +interface ShowcaseLayoutProps { + activeSlug: string; + children: ReactNode; +} + +export const ShowcaseLayout = ({ activeSlug, children }: ShowcaseLayoutProps) => { + const appTheme = useTheme(); + // The showcase runs on its OWN theme so switching it here doesn't flip the whole app. + // Seed from the app's current mode. + const [mode, setMode] = useState(appTheme.palette.mode); + + const theme = useMemo(() => createAppTheme(mode), [mode]); + + return ( + + ({ + display: 'flex', + minHeight: '100vh', + // The showcase uses a local theme with no CssBaseline of its own, so set the + // inherited text color here — otherwise plain inherits the app + // body color and won't follow the showcase's Light/Dark control. + color: t.palette.text.primary, + backgroundColor: t.palette.fig['bg-2'], + })} + > + {/* Sidebar */} + ({ + width: 248, + flexShrink: 0, + borderRight: `1px solid ${t.palette.divider}`, + position: 'sticky', + top: 0, + alignSelf: 'flex-start', + height: '100vh', + overflowY: 'auto', + p: 4, + })} + > + + Components + + + {SHOWCASE_GROUPS.map((group, index) => ( + + ({ + display: 'block', + px: 2, + mt: index === 0 ? 0 : 5, + mb: 1.5, + textTransform: 'uppercase', + letterSpacing: '0.06em', + color: t.palette.text.muted, + })} + > + {group.label} + + + {group.sections.map((section) => { + const active = section.slug === activeSlug; + return ( + ({ + display: 'block', + py: 1, + px: 2, + borderRadius: '8px', + color: active ? t.palette.text.primary : t.palette.text.secondary, + backgroundColor: active ? t.palette.fig.selected : 'transparent', + '&:hover': { + color: t.palette.text.primary, + backgroundColor: active + ? t.palette.fig.selected + : t.palette.fig['button-hover'], + }, + })} + > + {section.label} + + ); + })} + + ))} + + + {/* Content */} + + ({ + position: 'sticky', + top: 0, + zIndex: 5, + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + gap: 4, + px: 8, + py: 3, + borderBottom: `1px solid ${t.palette.divider}`, + backgroundColor: t.palette.fig['bg-2'], + })} + > + + Component showcase + + + + + + {children} + + + + + ); +}; diff --git a/src/modules/dev/ComponentShowcase/components/Specimen/index.tsx b/src/modules/dev/ComponentShowcase/components/Specimen/index.tsx new file mode 100644 index 0000000000..4b1b184852 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/Specimen/index.tsx @@ -0,0 +1,50 @@ +import { Box, Typography } from '@mui/material'; +import { ReactNode } from 'react'; + +interface SpecimenProps { + label?: string; + fullWidth?: boolean; + children: ReactNode; +} + +// A single example: a small uppercase caption above the component, which sits on a +// plain bordered "stage" (no fill) — matching the reference showcase. +export const Specimen = ({ label, fullWidth, children }: SpecimenProps) => ( + + {label && ( + ({ + color: theme.palette.text.muted, + textTransform: 'uppercase', + letterSpacing: '0.05em', + fontWeight: 500, + })} + > + {label} + + )} + ({ + display: 'flex', + alignItems: 'center', + flexWrap: 'wrap', + gap: 3, + p: 6, + minHeight: 56, + border: `1px solid ${theme.palette.divider}`, + borderRadius: '12px', + })} + > + {children} + + +); diff --git a/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx b/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx new file mode 100644 index 0000000000..e6410b7aa5 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx @@ -0,0 +1,102 @@ +import { Box, Button, Paper, Typography } from '@mui/material'; +import { ListWrapper } from 'src/components/lists/ListWrapper'; +import { FormattedNumber } from 'src/components/primitives/FormattedNumber'; +import { Row } from 'src/components/primitives/Row'; +import { ReserveOverviewBox } from 'src/components/ReserveOverviewBox'; +import { TopInfoPanel } from 'src/components/TopInfoPanel/TopInfoPanel'; +import { TopInfoPanelItem } from 'src/components/TopInfoPanel/TopInfoPanelItem'; +import { StakeActionBox } from 'src/modules/staking/StakeActionBox'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const PAPER_VARIANTS = ['elevation', 'outlined', 'modal'] as const; + +export const SurfacesSection = () => ( +
+ {PAPER_VARIANTS.map((variant) => ( + + + Paper {variant} + + + ))} + + + + Card title}> + + + + + + + + + + + + + + + + Showcase panel + + } + > + + + + + + + + + + + + + + + + + + + + + + + + + + + —} + dataCy="showcaseStake" + > + + + + +
+); diff --git a/src/modules/dev/ComponentShowcase/components/Swatch/index.tsx b/src/modules/dev/ComponentShowcase/components/Swatch/index.tsx new file mode 100644 index 0000000000..0854bc250a --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/Swatch/index.tsx @@ -0,0 +1,37 @@ +import { Box, Typography } from '@mui/material'; + +interface SwatchProps { + name: string; + value: string; +} + +// A checkerboard backing so alpha tokens (borders/shadows/scrim) stay visible. +const CHECKERBOARD = { + backgroundImage: + 'linear-gradient(45deg, #c4c4c4 25%, transparent 25%), linear-gradient(-45deg, #c4c4c4 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #c4c4c4 75%), linear-gradient(-45deg, transparent 75%, #c4c4c4 75%)', + backgroundSize: '12px 12px', + backgroundPosition: '0 0, 0 6px, 6px -6px, -6px 0px', +}; + +export const Swatch = ({ name, value }: SwatchProps) => ( + + ({ + height: 56, + borderRadius: '8px', + border: `1px solid ${theme.palette.divider}`, + position: 'relative', + overflow: 'hidden', + ...CHECKERBOARD, + })} + > + + + + {name} + + + {value} + + +); diff --git a/src/modules/dev/ComponentShowcase/components/ThemeControl/index.tsx b/src/modules/dev/ComponentShowcase/components/ThemeControl/index.tsx new file mode 100644 index 0000000000..98b87289da --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/ThemeControl/index.tsx @@ -0,0 +1,30 @@ +import { Box, Button, PaletteMode, Typography } from '@mui/material'; + +interface ThemeControlProps { + mode: PaletteMode; + onChange: (mode: PaletteMode) => void; +} + +// Segmented Light/Dark control for the showcase's local theme. Uses the themed +// Button variants so it reads natively in whichever mode is active. +export const ThemeControl = ({ mode, onChange }: ThemeControlProps) => ( + + + Theme + + + {(['light', 'dark'] as const).map((value) => ( + + ))} + + +); diff --git a/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx b/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx new file mode 100644 index 0000000000..2778ab761b --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx @@ -0,0 +1,59 @@ +import { Box, Typography } from '@mui/material'; +import { useState } from 'react'; +import { BadgeSize, ExclamationBadge } from 'src/components/badges/ExclamationBadge'; +import StyledToggleButton, { StyledTxModalToggleButton } from 'src/components/StyledToggleButton'; +import StyledToggleGroup, { + StyledTxModalToggleGroup, +} from 'src/components/StyledToggleButtonGroup'; + +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +const ToggleDemo = () => { + const [value, setValue] = useState('supply'); + return ( + v && setValue(v)}> + + Supply + + + Borrow + + + ); +}; + +const TxToggleDemo = () => { + const [value, setValue] = useState('market'); + return ( + v && setValue(v)}> + + Market + + + Limit + + + ); +}; + +export const TogglesBadgesSection = () => ( +
+ + + + + + + + + + + + + + + + +
+); diff --git a/src/modules/dev/ComponentShowcase/components/TypographySection/index.tsx b/src/modules/dev/ComponentShowcase/components/TypographySection/index.tsx new file mode 100644 index 0000000000..cdba8388b2 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/components/TypographySection/index.tsx @@ -0,0 +1,17 @@ +import { Typography } from '@mui/material'; + +import { TYPOGRAPHY_VARIANTS } from '../../utils/catalog'; +import { Section } from '../Section'; +import { Specimen } from '../Specimen'; + +export const TypographySection = () => ( +
+ {TYPOGRAPHY_VARIANTS.map((variant) => ( + + + The quick brown fox jumps over the lazy dog — 1234567890 + + + ))} +
+); diff --git a/src/modules/dev/ComponentShowcase/utils/catalog.ts b/src/modules/dev/ComponentShowcase/utils/catalog.ts new file mode 100644 index 0000000000..ee66486403 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/utils/catalog.ts @@ -0,0 +1,113 @@ +import { TypographyProps } from '@mui/material'; +import { FigmaColorName } from 'src/utils/figmaColors'; + +type TypographyVariant = TypographyProps['variant']; + +// The typography variants enabled in the theme. The default MUI variants +// (body1/body2/button/subtitle*/h5/h6/overline) are disabled in theme.tsx, so +// they are intentionally omitted here. +export const TYPOGRAPHY_VARIANTS: TypographyVariant[] = [ + 'display1', + 'h1', + 'h2', + 'h3', + 'h4', + 'subheader1', + 'subheader2', + 'description', + 'caption', + 'main21', + 'secondary21', + 'main16', + 'secondary16', + 'main14', + 'secondary14', + 'main12', + 'secondary12', + 'buttonL', + 'buttonM', + 'buttonS', + 'helperText', + 'tooltip', +]; + +// Figma color tokens grouped for the swatch grid. Names are keys of `figmaLight` +// (the shared subset), so each resolves in both light and dark via theme.palette.fig. +export const SWATCH_GROUPS: { title: string; names: FigmaColorName[] }[] = [ + { title: 'Backgrounds', names: ['bg-max', 'bg-1', 'bg-2', 'bg-3', 'bg-4', 'bg-5', 'bg-6'] }, + { title: 'Foreground / Text', names: ['fg-max', 'fg-1', 'fg-2', 'fg-3', 'fg-4', 'fg-5'] }, + { title: 'Borders', names: ['border-0', 'border-1', 'border-2'] }, + { + title: 'Semantic', + names: [ + 'blue-1', + 'blue-2', + 'blue-3', + 'yellow-1', + 'yellow-2', + 'yellow-3', + 'red-1', + 'red-2', + 'red-3', + 'green-1', + 'green-2', + 'green-3', + 'purple-1', + 'purple-2', + 'purple-3', + 'cyan-1', + 'cyan-2', + 'cyan-3', + 'navy-1', + 'navy-2', + 'navy-3', + ], + }, + { + title: 'Data viz', + names: [ + 'data-red', + 'data-orange', + 'data-yellow', + 'data-lime', + 'data-green', + 'data-teal', + 'data-blue', + 'data-purple', + 'data-pink', + 'data-green-gho', + ], + }, + { + title: 'Shadows / effects', + names: [ + 'shadow-low', + 'shadow-medium', + 'shadow-high', + 'shadow-strong', + 'shadow-stroke-1', + 'shadow-stroke-2', + 'focus', + 'scrim', + 'selected', + 'button-hover', + ], + }, + { + title: 'Chains', + names: [ + 'ethereum', + 'chain-testnet', + 'chain-ethereum', + 'chain-polygon', + 'chain-base', + 'chain-optimism', + 'chain-lens', + 'chain-arbitrum', + 'chain-blast', + 'chain-scroll', + 'chain-worldchain', + 'chain-zksync', + ], + }, +]; diff --git a/src/modules/dev/ComponentShowcase/utils/registry.tsx b/src/modules/dev/ComponentShowcase/utils/registry.tsx new file mode 100644 index 0000000000..22b2ea78a8 --- /dev/null +++ b/src/modules/dev/ComponentShowcase/utils/registry.tsx @@ -0,0 +1,95 @@ +import dynamic from 'next/dynamic'; +import { ComponentType } from 'react'; + +export interface ShowcaseSection { + slug: string; + label: string; + group: string; + Component: ComponentType; +} + +// One entry per route (`/dev/components/`). Each section is lazily loaded so a +// given page only ships its own section's code — keeping every page light. +export const SHOWCASE_SECTIONS: ShowcaseSection[] = [ + { + slug: 'colors', + label: 'Colors', + group: 'Foundations', + Component: dynamic(() => import('../components/ColorsSection').then((m) => m.ColorsSection)), + }, + { + slug: 'typography', + label: 'Typography', + group: 'Foundations', + Component: dynamic(() => + import('../components/TypographySection').then((m) => m.TypographySection) + ), + }, + { + slug: 'buttons', + label: 'Buttons', + group: 'Inputs & actions', + Component: dynamic(() => import('../components/ButtonsSection').then((m) => m.ButtonsSection)), + }, + { + slug: 'form-controls', + label: 'Form controls', + group: 'Inputs & actions', + Component: dynamic(() => + import('../components/FormControlsSection').then((m) => m.FormControlsSection) + ), + }, + { + slug: 'toggles-badges', + label: 'Toggles & badges', + group: 'Inputs & actions', + Component: dynamic(() => + import('../components/TogglesBadgesSection').then((m) => m.TogglesBadgesSection) + ), + }, + { + slug: 'feedback', + label: 'Feedback', + group: 'Feedback & overlays', + Component: dynamic(() => + import('../components/FeedbackSection').then((m) => m.FeedbackSection) + ), + }, + { + slug: 'overlays', + label: 'Overlays & modal', + group: 'Feedback & overlays', + Component: dynamic(() => + import('../components/OverlaysSection').then((m) => m.OverlaysSection) + ), + }, + { + slug: 'surfaces', + label: 'Surfaces & cards', + group: 'Data & surfaces', + Component: dynamic(() => + import('../components/SurfacesSection').then((m) => m.SurfacesSection) + ), + }, + { + slug: 'data-primitives', + label: 'Data primitives', + group: 'Data & surfaces', + Component: dynamic(() => + import('../components/DataPrimitivesSection').then((m) => m.DataPrimitivesSection) + ), + }, +]; + +// Sections grouped for the sidebar, preserving declaration order. +export const SHOWCASE_GROUPS = SHOWCASE_SECTIONS.reduce< + { label: string; sections: ShowcaseSection[] }[] +>((groups, section) => { + const group = groups.find((g) => g.label === section.group); + if (group) { + group.sections.push(section); + } else { + groups.push({ label: section.group, sections: [section] }); + } + return groups; +}, []); From 0c4b533624191acfcec8e19dfc6170fa01f88435 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Fri, 17 Jul 2026 19:35:04 +0900 Subject: [PATCH 21/39] feat(theme): animate dropdowns, menus & popovers with shared ScaleFade transition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 1 of a unified overlay motion system. A shared ScaleFade transition (opacity 0→1 + scale 0.96→1, modeled on MUI's Grow) is wired as the default TransitionComponent for MuiMenu and MuiPopover at 100ms, so all menus, selects and popovers pop consistently instead of using MUI's default Grow. Timing lives in a single motion-tokens module. - src/utils/motion.ts: central duration/easing tokens (single source of truth) - ScaleFade: MUI-compatible transition primitive (scale 0.96, not Grow's 0.75) - theme: MuiMenu/MuiPopover transition defaults + global prefers-reduced-motion - showcase: Select/Menu specimens in the Overlays section Modals and drawers are intentionally untouched (deferred to later phases). --- .../transitions/ScaleFade/index.tsx | 114 ++++++++++++++++++ .../components/OverlaysSection/index.tsx | 43 ++++++- src/utils/motion.ts | 24 ++++ src/utils/theme.tsx | 25 ++++ 4 files changed, 205 insertions(+), 1 deletion(-) create mode 100644 src/components/primitives/transitions/ScaleFade/index.tsx create mode 100644 src/utils/motion.ts diff --git a/src/components/primitives/transitions/ScaleFade/index.tsx b/src/components/primitives/transitions/ScaleFade/index.tsx new file mode 100644 index 0000000000..d1f40ee3de --- /dev/null +++ b/src/components/primitives/transitions/ScaleFade/index.tsx @@ -0,0 +1,114 @@ +import { useTheme } from '@mui/material/styles'; +import { TransitionProps } from '@mui/material/transitions'; +import { unstable_useForkRef as useForkRef } from '@mui/utils'; +import * as React from 'react'; +import { Transition, TransitionStatus } from 'react-transition-group'; +import { motion } from 'src/utils/motion'; + +// Force a reflow so the browser paints the "from" state before the transition runs. +const reflow = (node: HTMLElement) => node.scrollTop; + +const resolveDuration = (timeout: TransitionProps['timeout'], mode: 'enter' | 'exit'): number => + typeof timeout === 'number' ? timeout : timeout?.[mode] ?? motion.duration.overlay; + +// Base ("from") state is opacity 0 / scale 0.96; only the open state is declared here. +// `transition` is set imperatively in the callbacks so React re-renders never clear it. +const openStyles: Partial> = { + entering: { opacity: 1, transform: 'scale(1)' }, + entered: { opacity: 1, transform: 'scale(1)' }, +}; + +export interface ScaleFadeProps extends Omit { + children: React.ReactElement; +} + +/** + * Shared overlay transition: opacity 0→1 + scale(0.96→1). Modeled on MUI's `Grow` + * (which pops from a punchier 0.75). Wired as the default `TransitionComponent` for + * popovers/menus/selects in the theme, and reusable by other overlays. It clones its + * single child (no wrapper node) so it drops into MUI's Modal/Popover plumbing and + * preserves the anchor-driven `transform-origin` that Popover sets on the node. + */ +export const ScaleFade = React.forwardRef(function ScaleFade(props, ref) { + const { + children, + in: inProp, + appear = true, + timeout = motion.duration.overlay, + style, + easing, + onEnter, + onEntering, + onEntered, + onExit, + onExiting, + onExited, + } = props; + + const theme = useTheme(); + const nodeRef = React.useRef(null); + const childRef = (children as React.ReactElement & { ref?: React.Ref }).ref; + const handleRef = useForkRef(nodeRef, childRef, ref); + + const resolveEasing = (mode: 'enter' | 'exit'): string => { + if (typeof easing === 'string') return easing; + if (easing && easing[mode]) return easing[mode] as string; + return motion.easing.standard; + }; + + // With `nodeRef`, react-transition-group hands enter callbacks `isAppearing` and exit + // callbacks nothing — but MUI's own callbacks expect the DOM node, so inject it. + const normalize = + (callback?: (node: HTMLElement, isAppearing: boolean) => void) => + (isAppearing?: boolean): void => { + if (callback && nodeRef.current) { + callback(nodeRef.current, isAppearing ?? false); + } + }; + + const handleEnter = normalize((node, isAppearing) => { + reflow(node); + node.style.transition = theme.transitions.create(['opacity', 'transform'], { + duration: resolveDuration(timeout, 'enter'), + easing: resolveEasing('enter'), + }); + onEnter?.(node, isAppearing); + }); + + const handleExit = normalize((node) => { + node.style.transition = theme.transitions.create(['opacity', 'transform'], { + duration: resolveDuration(timeout, 'exit'), + easing: resolveEasing('exit'), + }); + onExit?.(node); + }); + + return ( + + appear={appear} + in={inProp} + nodeRef={nodeRef} + timeout={timeout} + onEnter={handleEnter} + onEntering={normalize(onEntering)} + onEntered={normalize(onEntered)} + onExit={handleExit} + onExiting={normalize(onExiting)} + onExited={normalize(onExited)} + > + {(state) => + React.cloneElement(children, { + style: { + opacity: 0, + transform: 'scale(0.96)', + visibility: state === 'exited' && !inProp ? 'hidden' : undefined, + ...openStyles[state], + ...style, + ...children.props.style, + }, + ref: handleRef, + }) + } + + ); +}); diff --git a/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx b/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx index 664c128b95..4df95716b6 100644 --- a/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx @@ -1,4 +1,4 @@ -import { Button, Typography } from '@mui/material'; +import { Button, Menu, MenuItem, Select, Typography } from '@mui/material'; import { useState } from 'react'; import { ContentWithTooltip } from 'src/components/ContentWithTooltip'; import { BasicModal } from 'src/components/primitives/BasicModal'; @@ -27,12 +27,53 @@ const ModalDemo = () => { ); }; +const SelectDemo = () => { + const [value, setValue] = useState('ethereum'); + return ( + + ); +}; + +const MenuDemo = () => { + const [anchorEl, setAnchorEl] = useState(null); + const close = () => setAnchorEl(null); + return ( + <> + + + First option + Second option + Third option + + + ); +}; + export const OverlaysSection = () => (
+ + + + + + + + Tooltip body content.} diff --git a/src/utils/motion.ts b/src/utils/motion.ts new file mode 100644 index 0000000000..02162c51c7 --- /dev/null +++ b/src/utils/motion.ts @@ -0,0 +1,24 @@ +/** + * Central motion tokens — the single source of truth for overlay/dialog animation + * timing across the app. Consumed by the theme's transition defaults and by the + * shared transition components (e.g. `ScaleFade`). Values mirror the reference + * project's overlay "feel": a fast, subtle pop. + * + * Kept in its own module (rather than in `theme.tsx`) so shared transitions can read + * these tokens without importing `theme.tsx`, which would create an import cycle + * (`theme` → `ScaleFade` → `theme`). + */ +export const motion = { + duration: { + /** dropdowns, menus, selects, popovers */ + overlay: 100, + /** modal enter/exit — reserved for Phase 2 (modals are not animated yet) */ + modal: 200, + /** mobile modal slide-up — reserved for Phase 2/3 */ + modalMobile: 300, + }, + easing: { + standard: 'ease', + smooth: 'cubic-bezier(0.19, 1, 0.22, 1)', + }, +} as const; diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 333fba8e63..774b55917c 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -12,8 +12,10 @@ import { ColorPartial } from '@mui/material/styles/createPalette'; import { deepmerge } from '@mui/utils'; import React from 'react'; import { ChevronUpDownIcon } from 'src/components/icons/ChevronUpDownIcon'; +import { ScaleFade } from 'src/components/primitives/transitions/ScaleFade'; import { type FigmaColorName, figmaDark, figSurfaceShadow, pickFigma } from './figmaColors'; +import { motion } from './motion'; /** * Secondary "white pill" style for the `outlined` button variant: a hairline ring instead @@ -577,6 +579,12 @@ export function getThemedComponents(theme: Theme) { }, MuiMenu: { defaultProps: { + // Menu hard-defaults transitionDuration='auto' and forwards it explicitly, + // shadowing the MuiPopover default below — so menus/selects need the duration + // set here too. TransitionComponent is set explicitly as well (rather than + // relying on the inner Popover's own default) to keep the theme authoritative. + TransitionComponent: ScaleFade, + transitionDuration: motion.duration.overlay, PaperProps: { elevation: 0, variant: 'outlined', @@ -587,6 +595,13 @@ export function getThemedComponents(theme: Theme) { }, }, }, + MuiPopover: { + // Covers raw Popover usages (MarketSwitcher desktop, multiselects, swap inputs). + defaultProps: { + TransitionComponent: ScaleFade, + transitionDuration: motion.duration.overlay, + }, + }, MuiList: { styleOverrides: { root: { @@ -898,6 +913,16 @@ export function getThemedComponents(theme: Theme) { flexDirection: 'column', }, }, + // Respect the OS "reduce motion" preference app-wide (incl. the dev showcase, + // since CssBaseline is injected once at the app root). + '@media (prefers-reduced-motion: reduce)': { + '*, *::before, *::after': { + animationDuration: '0.01ms !important', + animationIterationCount: '1 !important', + transitionDuration: '0.01ms !important', + scrollBehavior: 'auto !important', + }, + }, }, }, MuiSvgIcon: { From 31e73604f054e3297ad95bf811517f2c359ff184 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Fri, 17 Jul 2026 19:43:02 +0900 Subject: [PATCH 22/39] fix(theme): remove hover border on outlined buttons The outlined variant sets border:none at rest, but its :hover block only changed background + re-asserted the box-shadow ring, so MUI's built-in .MuiButton-outlinedPrimary:hover border leaked through on hover only. Force border:none in the hover/focus block so the borderless pill stays borderless. --- src/utils/theme.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 774b55917c..4964351572 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -19,9 +19,9 @@ import { motion } from './motion'; /** * Secondary "white pill" style for the `outlined` button variant: a hairline ring instead - * of a border (bg-1 in light, bg-4 in dark) with a subtle fill shift on hover. The ring is - * re-asserted on hover because the global `disableElevation` default otherwise strips - * box-shadow in those states. + * of a border (bg-1 in light, bg-4 in dark) with a subtle fill shift on hover. On hover the + * ring is re-asserted (the global `disableElevation` default otherwise strips box-shadow), + * and `border` is forced to none to suppress MUI's default outlined hover border. */ const secondaryPillStyle = (theme: Theme) => { const fig = theme.palette.fig; @@ -37,6 +37,9 @@ const secondaryPillStyle = (theme: Theme) => { }, '&:hover, &.Mui-focusVisible': { backgroundColor: isDark ? fig['bg-5'] : fig['bg-4'], + // Suppress MUI's default outlined hover border (its `:hover` rule would otherwise + // re-introduce a 1px border on top of the borderless pill). + border: 'none', boxShadow: figSurfaceShadow(fig), }, }; From 9514eec438127848fe6816c5fb11badd6dfe241f Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Tue, 21 Jul 2026 17:51:24 +0900 Subject: [PATCH 23/39] refactor(theme): move colors to a P3 CssVars palette and drop brand gradients - figmaColors.ts: single source of truth for color tokens + the figVars var() accessor. - theme.tsx: flatten tokens onto the MUI CssVars palette (P3 + sRGB fallback); emit P3 vars. - colorToP3.ts: Display-P3 conversion for the @supports P3 override layer. - gradients slot/type removed; the new branding uses the solid purple-1 token. --- src/utils/colorToP3.ts | 18 ++ src/utils/figmaColors.ts | 117 +++++++++++-- src/utils/theme.tsx | 344 ++++++++++++++++++++++++--------------- 3 files changed, 331 insertions(+), 148 deletions(-) create mode 100644 src/utils/colorToP3.ts diff --git a/src/utils/colorToP3.ts b/src/utils/colorToP3.ts new file mode 100644 index 0000000000..f53dbe8aef --- /dev/null +++ b/src/utils/colorToP3.ts @@ -0,0 +1,18 @@ +import { decomposeColor } from '@mui/material/styles'; + +/** + * Convert an sRGB color string (hex, `rgb()`, or `rgba()`) to its Display-P3 equivalent + * using the same naive channel mapping the Figma export uses (channels / 255, relabeled as + * `color(display-p3 …)`). This matches the design source's P3 values and, on wide-gamut + * displays, renders saturated colors richer while leaving near-grays visually unchanged. + * + * Used to generate the `@supports (color-gamut: p3)` override layer for the theme's CSS + * variables. Non-color / already-`color()` inputs are returned unchanged. + */ +export const colorToP3 = (color: string): string => { + if (!color.startsWith('#') && !color.startsWith('rgb')) return color; + // decomposeColor parses #nnn / #nnnnnn / rgb() / rgba() → { values: [r, g, b, a?] } (r,g,b 0-255). + const [r, g, b, a] = decomposeColor(color).values; + const channels = `${r / 255} ${g / 255} ${b / 255}`; + return a === undefined ? `color(display-p3 ${channels})` : `color(display-p3 ${channels} / ${a})`; +}; diff --git a/src/utils/figmaColors.ts b/src/utils/figmaColors.ts index 032c49b847..53188b8407 100644 --- a/src/utils/figmaColors.ts +++ b/src/utils/figmaColors.ts @@ -1,14 +1,8 @@ /** - * Figma color tokens — same names as the old figma.scss `$colors-light` / `$colors-dark` maps. - * - * Import into src/utils/theme.tsx and reference when building the palette, e.g.: - * import { figmaColor } from './figmaColors'; - * // ...inside getDesignTokens(mode): - * text: { primary: figmaColor(mode, 'fg-1') } - * - * Or use the maps directly with the theme's getColor helper: - * import { figmaLight, figmaDark } from './figmaColors'; - * primary: { main: getColor(figmaLight['fg-1'], figmaDark['fg-1']) } + * Figma color tokens — the SINGLE SOURCE OF TRUTH for every color value in the app (light + + * dark). The theme flattens these onto the MUI palette root, so each becomes a `--mui-palette-*` + * CSS var (Display-P3 + sRGB fallback). Consume them as bare token strings in `sx` + * (`sx={{ bgcolor: 'bg-1' }}`) or via `figVars` outside `sx` — never hand-write hex in components. */ export const figmaLight = { 'bg-max': '#ffffff', @@ -80,6 +74,37 @@ export const figmaLight = { 'chain-scroll': '#f8cf6e', 'chain-worldchain': '#ff9d00', 'chain-zksync': '#8c8dfe', + 'info-panel-color-one': '#fafafa', + 'info-panel-color-two': '#fafafa', + 'info-panel-color-three': '#fafafa', + // --- semantic tokens promoted from theme-file literals (SoT) --- + 'secondary-main': '#FF607B', + 'secondary-light': '#FF607B', + 'secondary-dark': '#B34356', + 'error-light': '#D26666', + 'error-dark': '#BC0000', + 'error-text': '#4F1919', + 'error-bg': '#F9EBEB', + 'warning-light': '#FFCE00', + 'warning-dark': '#C67F15', + 'warning-text': '#63400A', + 'warning-bg': '#FEF5E8', + 'info-light': '#0062D2', + 'info-dark': '#002754', + 'info-text': '#002754', + 'info-bg': '#E5EFFB', + 'success-light': '#90FF95', + 'success-dark': '#318435', + 'success-text': '#1C4B1E', + 'success-bg': '#ECF8ED', + highlight: '#383D51', + 'disabled-fg': '#BBBECA', + 'disabled-bg': '#EAEBEF', + 'input-line': '#383D511F', + 'input-border-hover': '#CBCDD8', + 'slider-thumb': '#62677B', + 'slider-track': '#383D51', + 'surface-elevated': '#ffffff', } as const; export const figmaDark = { @@ -87,8 +112,8 @@ export const figmaDark = { 'bg-1': '#100f0f', 'bg-2': '#18181B', 'bg-3': '#1f1e1e', - 'bg-4': '#1E1E20', - 'bg-5': '#393737', + 'bg-4': '#1F1E1E', + 'bg-5': '#2A2828', 'bg-6': '#494646', 'border-0': 'rgba(255, 255, 255, 0.06)', 'border-1': 'rgba(255, 255, 255, 0.08)', @@ -155,6 +180,37 @@ export const figmaDark = { 'chain-scroll': '#f8cf6e', 'chain-worldchain': '#ff9d00', 'chain-zksync': '#8c8dfe', + 'info-panel-color-one': 'rgba(29, 29, 33, 0.20)', + 'info-panel-color-two': 'rgba(41, 41, 46, 0.20)', + 'info-panel-color-three': 'rgba(255, 255, 255, 0.01)', + // --- semantic tokens promoted from theme-file literals (SoT) --- + 'secondary-main': '#F48FB1', + 'secondary-light': '#F6A5C0', + 'secondary-dark': '#AA647B', + 'error-light': '#E57373', + 'error-dark': '#D32F2F', + 'error-text': '#FBB4AF', + 'error-bg': '#2E0C0A', + 'warning-light': '#FFB74D', + 'warning-dark': '#F57C00', + 'warning-text': '#FFDCA8', + 'warning-bg': '#301E04', + 'info-light': '#4FC3F7', + 'info-dark': '#0288D1', + 'info-text': '#A9E2FB', + 'info-bg': '#071F2E', + 'success-light': '#90FF95', + 'success-dark': '#388E3C', + 'success-text': '#C2E4C3', + 'success-bg': '#0A130B', + highlight: '#C9B3F9', + 'disabled-fg': '#EBEBEF4D', + 'disabled-bg': '#EBEBEF1F', + 'input-line': '#EBEBEF6B', + 'input-border-hover': '#CBCDD8', + 'slider-thumb': '#C9B3F9', + 'slider-track': '#9C93B3', + 'surface-elevated': '#1E1E20', } as const; // Token names shared by both modes (light is the common subset; dark adds a few extras). @@ -169,14 +225,41 @@ export const figmaColor = (mode: 'light' | 'dark', name: FigmaColorName) => * const t = pickFigma(mode); * text: { primary: t['fg-1'], secondary: t['fg-2'] } */ -export const pickFigma = (mode: 'light' | 'dark') => (mode === 'dark' ? figmaDark : figmaLight); +export const pickFigma = (mode: 'light' | 'dark'): Record => + mode === 'dark' ? figmaDark : figmaLight; + +/** + * Terse, P3-safe accessor for the design tokens as CSS variables. + * + * The tokens are flattened onto the MUI palette root (see `theme.tsx`), so MUI generates a + * `--mui-palette-` custom property per token and the Display-P3 layer overrides those on + * wide-gamut displays. `figVars['bg-1']` therefore emits `var(--mui-palette-bg-1)`, which gets + * P3 + the structural sRGB fallback — unlike a raw `theme.palette['bg-1']` hex read, which does + * not. Use it in `styled()`, plain JS, and interpolated strings; inside `sx` the bare string + * form (`sx={{ bgcolor: 'bg-1' }}`) already resolves to the same var with no import. + * + * Gotcha: never pass a var-based color (this, a bare `sx` token, or `theme.vars.palette.*`) to a + * raw SVG/icon presentation attribute (``) — `var()` doesn't + * resolve there. Use a concrete hex, or apply the color via `sx`/`style` (CSS) instead. + * + * The `--mui-palette-` naming is coupled to MUI's var generation and to the tokens living + * at the palette root — the same coupling `collectP3Vars` (theme.tsx) relies on. + */ +export const figVars = Object.fromEntries( + Object.keys(figmaLight).map((name) => [name, `var(--mui-palette-${name})`]) +) as Record; + +/** + * Always-white, mode-independent. For text/icons that sit on a fixed colored surface (brand + * gradients, always-dark chips). A concrete hex — NOT a CSS var — so it also resolves in raw + * SVG/icon presentation attributes (`color=`/`fill=`), where `var()` does not. + */ +export const onAccent = '#ffffff'; /** * The shared "surface" box-shadow: a soft drop shadow plus a 1px ring that stands in * for a border. Used by the secondary buttons, menus/paper, and the dashboard cards. * `stroke` selects the ring token (cards use `shadow-stroke-1` for a slightly stronger hairline). */ -export const figSurfaceShadow = ( - fig: Record, - stroke: FigmaColorName = 'shadow-stroke-2' -): string => `0px 2px 4px 0px ${fig['shadow-low']}, 0px 0px 0px 1px ${fig[stroke]}`; +export const figSurfaceShadow = (stroke: FigmaColorName = 'shadow-stroke-2'): string => + `0px 2px 4px 0px ${figVars['shadow-low']}, 0px 0px 0px 1px ${figVars[stroke]}`; diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 4964351572..7de7a3dbfd 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -4,45 +4,65 @@ import { ExclamationIcon, InformationCircleIcon, } from '@heroicons/react/outline'; -import { Box, SvgIcon, Theme, ThemeOptions } from '@mui/material'; -import { createTheme } from '@mui/material/styles'; +import { Box, SvgIcon, ThemeOptions } from '@mui/material'; +import { createTheme, experimental_extendTheme } from '@mui/material/styles'; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore import { ColorPartial } from '@mui/material/styles/createPalette'; -import { deepmerge } from '@mui/utils'; +// Augments MUI's base `Theme` (the one component `sx`/`styled` callbacks receive) with `.vars`, +// so `theme.vars.palette.*` typechecks app-wide, not only against this file's `AppTheme` param. +import type {} from '@mui/material/themeCssVarsAugmentation'; import React from 'react'; import { ChevronUpDownIcon } from 'src/components/icons/ChevronUpDownIcon'; import { ScaleFade } from 'src/components/primitives/transitions/ScaleFade'; -import { type FigmaColorName, figmaDark, figSurfaceShadow, pickFigma } from './figmaColors'; +import { colorToP3 } from './colorToP3'; +import { type FigmaColorName, figSurfaceShadow, figVars, onAccent, pickFigma } from './figmaColors'; import { motion } from './motion'; +// The app theme is built with MUI's CSS-variables engine (`experimental_extendTheme`), so it +// carries `.vars` (CSS custom-property refs like `figVars['bg-1']`) and +// `.applyStyles(scheme, …)` for per-color-scheme overrides. +type AppTheme = ReturnType; + +// MUI's `theme.applyStyles('dark', …)` needs the provider theme's `getColorSchemeSelector`, +// which the raw `extendTheme` result (used to build the component overrides statically) +// doesn't carry — so calling it there hits the classic `palette.mode` branch and throws (the +// raw theme has no top-level `palette`). This helper inlines the exact CSS-vars selector +// `applyStyles` emits, matching any ancestor with `data-mui-color-scheme="dark"` — the +// element (app-wide) or a local wrapper (the dev showcase) — so both switch correctly. +const darkScheme = (styles: object) => ({ + '*:where([data-mui-color-scheme="dark"]) &': styles, +}); + /** * Secondary "white pill" style for the `outlined` button variant: a hairline ring instead * of a border (bg-1 in light, bg-4 in dark) with a subtle fill shift on hover. On hover the * ring is re-asserted (the global `disableElevation` default otherwise strips box-shadow), * and `border` is forced to none to suppress MUI's default outlined hover border. */ -const secondaryPillStyle = (theme: Theme) => { - const fig = theme.palette.fig; - const isDark = theme.palette.mode === 'dark'; - return { - color: fig['fg-1'], - // Different token per mode: white pill in light, a bg-4 fill in dark. - backgroundColor: isDark ? fig['bg-4'] : fig['bg-1'], +const secondaryPillStyle = { + color: figVars['fg-1'], + // Different token per mode: white pill (bg-1) in light, a bg-4 fill in dark. + backgroundColor: figVars['bg-1'], + border: 'none', + boxShadow: figSurfaceShadow(), + '& .MuiButton-startIcon': { + color: figVars['fg-3'], + }, + ...darkScheme({ + backgroundColor: figVars['bg-4'], + }), + '&:hover, &.Mui-focusVisible': { + backgroundColor: figVars['bg-4'], + // Suppress MUI's default outlined hover border (its `:hover` rule would otherwise + // re-introduce a 1px border on top of the borderless pill). border: 'none', - boxShadow: figSurfaceShadow(fig), - '& .MuiButton-startIcon': { - color: fig['fg-3'], - }, - '&:hover, &.Mui-focusVisible': { - backgroundColor: isDark ? fig['bg-5'] : fig['bg-4'], - // Suppress MUI's default outlined hover border (its `:hover` rule would otherwise - // re-introduce a 1px border on top of the borderless pill). - border: 'none', - boxShadow: figSurfaceShadow(fig), - }, - }; + boxShadow: figSurfaceShadow(), + ...darkScheme({ + backgroundColor: figVars['bg-5'], + }), + }, }; // Shared box geometry for the custom checkbox icon (unchecked + checked). @@ -71,23 +91,19 @@ declare module '@mui/material/styles/createPalette' { disabled: string; } - interface Palette { - gradients: { - aaveGradient: string; - newGradient: string; - }; + // Design tokens are flattened onto the palette root (see `getDesignTokens`), so each token is + // a first-class palette member. This also turns a token name that collides with a built-in + // palette key (e.g. `error`, `background`) into a compile error rather than a silent overwrite. + interface Palette extends Record { other: { standardInputLine: string; }; - fig: Record; } - interface PaletteOptions { - gradients: { - aaveGradient: string; - newGradient: string; + interface PaletteOptions extends Partial> { + other?: { + standardInputLine: string; }; - fig?: Record; } } @@ -162,9 +178,6 @@ declare module '@mui/material/Paper' { } export const getDesignTokens = (mode: 'light' | 'dark') => { - const getColor = (lightColor: string, darkColor: string) => - mode === 'dark' ? darkColor : lightColor; - const t = pickFigma(mode); // ← the one line of setup return { @@ -174,7 +187,9 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { }, palette: { mode, - fig: t, + // Design tokens flattened onto the palette root → MUI generates a `--mui-palette-` + // var per token, so `sx={{ bgcolor: 'bg-1' }}` and `figVars['bg-1']` both resolve to it. + ...t, primary: { main: t['fg-1'], light: t['fg-2'], @@ -182,48 +197,48 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { contrastText: t['bg-1'], }, secondary: { - main: getColor('#FF607B', '#F48FB1'), - light: getColor('#FF607B', '#F6A5C0'), - dark: getColor('#B34356', '#AA647B'), + main: t['secondary-main'], + light: t['secondary-light'], + dark: t['secondary-dark'], }, error: { main: t['red-1'], - light: getColor('#D26666', '#E57373'), - dark: getColor('#BC0000', '#D32F2F'), - '100': getColor('#4F1919', '#FBB4AF'), // for alert text - '200': getColor('#F9EBEB', '#2E0C0A'), // for alert background + light: t['error-light'], + dark: t['error-dark'], + '100': t['error-text'], // alert text + '200': t['error-bg'], // alert background }, warning: { main: t['yellow-1'], - light: getColor('#FFCE00', '#FFB74D'), - dark: getColor('#C67F15', '#F57C00'), - '100': getColor('#63400A', '#FFDCA8'), // for alert text - '200': getColor('#FEF5E8', '#301E04'), // for alert background + light: t['warning-light'], + dark: t['warning-dark'], + '100': t['warning-text'], + '200': t['warning-bg'], }, info: { main: t['blue-1'], - light: getColor('#0062D2', '#4FC3F7'), - dark: getColor('#002754', '#0288D1'), - '100': getColor('#002754', '#A9E2FB'), // for alert text - '200': getColor('#E5EFFB', '#071F2E'), // for alert background + light: t['info-light'], + dark: t['info-dark'], + '100': t['info-text'], + '200': t['info-bg'], }, success: { main: t['green-1'], - light: getColor('#90FF95', '#90FF95'), - dark: getColor('#318435', '#388E3C'), - '100': getColor('#1C4B1E', '#C2E4C3'), // for alert text - '200': getColor('#ECF8ED', '#0A130B'), // for alert background + light: t['success-light'], + dark: t['success-dark'], + '100': t['success-text'], + '200': t['success-bg'], }, text: { primary: t['fg-1'], secondary: t['fg-2'], disabled: t['fg-4'], muted: t['fg-3'], - highlight: getColor('#383D51', '#C9B3F9'), + highlight: t['highlight'], }, background: { default: t['bg-5'], - paper: t['bg-1'], + paper: t['surface-elevated'], surface: t['bg-2'], surface2: t['bg-3'], header: t['bg-1'], @@ -234,16 +249,12 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { active: t['fg-3'], hover: t['button-hover'], selected: t['selected'], - disabled: getColor('#BBBECA', '#EBEBEF4D'), - disabledBackground: getColor('#EAEBEF', '#EBEBEF1F'), + disabled: t['disabled-fg'], + disabledBackground: t['disabled-bg'], focus: t['focus'], }, other: { - standardInputLine: getColor('#383D511F', '#EBEBEF6B'), - }, - gradients: { - aaveGradient: 'linear-gradient(248.86deg, #B6509E 10.51%, #2EBAC6 93.41%)', - newGradient: 'linear-gradient(79.67deg, #8C3EBC 0%, #007782 95.82%)', + standardInputLine: t['input-line'], }, }, spacing: 4, @@ -414,7 +425,7 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { } as ThemeOptions; }; -export function getThemedComponents(theme: Theme) { +export function getThemedComponents(theme: AppTheme) { return { components: { MuiSkeleton: { @@ -428,12 +439,12 @@ export function getThemedComponents(theme: Theme) { styleOverrides: { root: { borderRadius: '8px', - borderColor: theme.palette.divider, + borderColor: figVars['border-2'], '&:hover .MuiOutlinedInput-notchedOutline': { - borderColor: '#CBCDD8', + borderColor: figVars['input-border-hover'], }, '&.Mui-focused .MuiOutlinedInput-notchedOutline': { - borderColor: '#CBCDD8', + borderColor: figVars['input-border-hover'], }, }, }, @@ -442,10 +453,10 @@ export function getThemedComponents(theme: Theme) { styleOverrides: { root: { '& .MuiSlider-thumb': { - color: theme.palette.mode === 'light' ? '#62677B' : '#C9B3F9', + color: figVars['slider-thumb'], }, '& .MuiSlider-track': { - color: theme.palette.mode === 'light' ? '#383D51' : '#9C93B3', + color: figVars['slider-track'], }, }, }, @@ -453,20 +464,36 @@ export function getThemedComponents(theme: Theme) { MuiButton: { defaultProps: { disableElevation: true, + // No ripple / pressed splash on mouse-down (hover + keyboard focus are the + // only interaction states). + disableRipple: true, }, styleOverrides: { root: { borderRadius: '8px', + // Hover/focus state transition at 100ms (overrides MUI's 250ms default). + transition: theme.transitions.create( + ['background-color', 'box-shadow', 'border-color', 'color'], + { duration: motion.duration.hover } + ), + // Keyboard-focus ring in the variant's own text color; ButtonBase zeroes the + // native outline, so we set our own (2px, offset 3px out). + '&.Mui-focusVisible': { + outline: '2px solid currentColor', + outlineOffset: '3px', + }, }, sizeLarge: { ...theme.typography.buttonL, - height: '44px', + height: '48px', padding: '0 24px', }, sizeMedium: { ...theme.typography.buttonM, height: '36px', - padding: '0 12px', + // Text-side padding; a start/end icon's -4px slot margin (MUI default) tightens + // the icon side to ~10px automatically. + padding: '0 0.88rem', }, sizeSmall: { ...theme.typography.buttonS, @@ -480,20 +507,20 @@ export function getThemedComponents(theme: Theme) { { props: { color: 'primary', variant: 'outlined' }, style: { - ...secondaryPillStyle(theme), + ...secondaryPillStyle, '&.Mui-disabled': { - color: theme.palette.fig['fg-3'], + color: figVars['fg-3'], border: 'none', - boxShadow: figSurfaceShadow(theme.palette.fig), + boxShadow: figSurfaceShadow(), }, }, }, { props: { variant: 'contained', color: 'primary' }, style: { - backgroundColor: theme.palette.fig['fg-max'], + backgroundColor: figVars['fg-max'], '&:hover, &.Mui-focusVisible': { - backgroundColor: theme.palette.fig['fg-1'], + backgroundColor: figVars['fg-1'], }, }, }, @@ -506,11 +533,11 @@ export function getThemedComponents(theme: Theme) { @@ -519,13 +546,13 @@ export function getThemedComponents(theme: Theme) { - + div:first-of-type': { minHeight: '100vh', display: 'flex', @@ -931,34 +959,31 @@ export function getThemedComponents(theme: Theme) { MuiSvgIcon: { styleOverrides: { colorPrimary: { - color: theme.palette.primary.light, + color: theme.vars.palette.primary.light, }, }, }, MuiSelect: { defaultProps: { IconComponent: (props) => ( - + ), }, styleOverrides: { outlined: { - backgroundColor: theme.palette.fig['bg-1'], + backgroundColor: figVars['bg-1'], ...theme.typography.buttonM, - color: theme.palette.fig['fg-1'], + color: figVars['fg-1'], }, }, }, MuiLinearProgress: { styleOverrides: { bar1Indeterminate: { - background: theme.palette.gradients.aaveGradient, + background: figVars['purple-1'], }, bar2Indeterminate: { - background: theme.palette.gradients.aaveGradient, + background: figVars['purple-1'], }, }, }, @@ -967,11 +992,68 @@ export function getThemedComponents(theme: Theme) { } /** - * Assemble the full app MUI theme for a mode: base design tokens merged with the - * component overrides. Single source of truth shared by the app root - * (`AppGlobalStyles`) and the dev component showcase, so they can't drift apart. + * Assemble the full app MUI theme (CSS-variables mode): both color schemes' design tokens + * plus the component overrides. Single source of truth shared by the app root + * (`AppGlobalStyles`) and the dev component showcase, so they can't drift apart. Color + * scheme is switched via the `data-mui-color-scheme` attribute, not by rebuilding the theme. */ -export const createAppTheme = (mode: 'light' | 'dark') => { - const base = createTheme(getDesignTokens(mode)); - return deepmerge(base, getThemedComponents(base)); +export const createAppTheme = () => { + const light = getDesignTokens('light'); + const dark = getDesignTokens('dark'); + const shared = { + breakpoints: light.breakpoints, + spacing: light.spacing, + typography: light.typography, + colorSchemes: { + light: { palette: light.palette }, + dark: { palette: dark.palette }, + }, + }; + // Build a base theme first so `getThemedComponents` can read its `.vars` (CSS-var refs), + // then rebuild with those overrides attached. (A build-once `theme.components = …` mutation + // trips MUI's `Components` typing, so the two-pass is the type-clean form.) + const base = experimental_extendTheme(shared); + return experimental_extendTheme({ + ...shared, + components: getThemedComponents(base).components, + }); +}; + +// --- Display-P3 override layer ------------------------------------------------------------- + +const isColorValue = (v: string) => v.startsWith('#') || v.startsWith('rgb'); + +// Walk a color scheme's palette and, for every solid color leaf, emit a P3 override keyed to +// the CSS variable MUI generates for it (`--mui-palette-`). Non-color +// leaves (numbers, `mode`, channel strings like "32 29 29", gradients) are skipped. +const collectP3Vars = ( + node: Record, + path: string[], + out: Record +) => { + Object.entries(node).forEach(([key, value]) => { + if (typeof value === 'string' && isColorValue(value)) { + out[`--mui-palette-${[...path, key].join('-')}`] = colorToP3(value); + } else if (value && typeof value === 'object') { + collectP3Vars(value as Record, [...path, key], out); + } + }); +}; + +/** + * Build Display-P3 overrides for the generated `--mui-palette-*` CSS variables — one entry + * per solid color token, per color scheme. Injected under `@supports (color-gamut: p3)` so + * wide-gamut displays get the richer color while everything else keeps the sRGB base var. + * (Alpha-composited tints via MUI's `rgba( / a)` stay sRGB — see migration notes.) + */ +export const buildP3Overrides = (theme: AppTheme) => { + const forScheme = (scheme?: { palette?: unknown }) => { + const out: Record = {}; + collectP3Vars((scheme?.palette ?? {}) as Record, [], out); + return out; + }; + return { + light: forScheme(theme.colorSchemes.light), + dark: forScheme(theme.colorSchemes.dark), + }; }; From e6681e2798fe16be9c7c4947d022b707624fd5e7 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Tue, 21 Jul 2026 17:53:18 +0900 Subject: [PATCH 24/39] feat(motion): add hover-transition duration token --- src/utils/motion.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/motion.ts b/src/utils/motion.ts index 02162c51c7..e23d0dea0e 100644 --- a/src/utils/motion.ts +++ b/src/utils/motion.ts @@ -12,6 +12,8 @@ export const motion = { duration: { /** dropdowns, menus, selects, popovers */ overlay: 100, + /** interactive control feedback — button hover/focus state transitions */ + hover: 100, /** modal enter/exit — reserved for Phase 2 (modals are not animated yet) */ modal: 200, /** mobile modal slide-up — reserved for Phase 2/3 */ From af67d741280e2a2218d73be65824b62e5c4a4e99 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Tue, 21 Jul 2026 17:53:59 +0900 Subject: [PATCH 25/39] refactor(components): adopt P3 color tokens across shared components Sweep explicit color reads onto flattened figma tokens (bare sx strings / figVars) for P3. Also swaps the brand gradient for the solid purple-1 token in the affected components. --- src/components/Analytics/AnalyticsConsent.tsx | 7 +- src/components/AssetCategoryMultiselect.tsx | 14 ++-- src/components/ConnectWalletPaper.tsx | 2 +- src/components/ConnectWalletPaperStaking.tsx | 2 +- src/components/ContentContainer.tsx | 1 + src/components/ContentWithTooltip.tsx | 6 +- src/components/HealthFactorNumber.tsx | 10 +-- src/components/MarketAssetCategoryFilter.tsx | 11 +-- src/components/MarketSwitcher.tsx | 54 ++++++------- src/components/NoSearchResults.tsx | 6 +- src/components/ReserveOverviewBox.tsx | 9 ++- src/components/ReserveSubheader.tsx | 6 +- src/components/SavingsCardSkeleton.tsx | 9 ++- src/components/SearchInput.tsx | 7 +- src/components/StyledToggleButton.tsx | 29 +++---- src/components/StyledToggleButtonGroup.tsx | 7 +- src/components/TextWithTooltip.tsx | 2 +- src/components/TopInfoPanel/PageTitle.tsx | 8 +- src/components/TopInfoPanel/TopInfoPanel.tsx | 8 +- .../WalletConnection/ReadOnlyModal.tsx | 9 ++- src/components/caps/CapsCircularStatus.tsx | 2 +- src/components/caps/CapsHint.tsx | 2 +- src/components/caps/DebtCeilingStatus.tsx | 12 +-- .../EthenaIncentivesTooltipContent.tsx | 2 +- .../EtherfiIncentivesTooltipContent.tsx | 2 +- .../incentives/IncentivesButton.tsx | 36 ++++----- src/components/incentives/IncentivesCard.tsx | 4 +- .../incentives/IncentivesTooltipContent.tsx | 8 +- .../MeritIncentivesTooltipContent.tsx | 24 +++--- .../MerklIncentivesTooltipContent.tsx | 14 ++-- .../SonicIncentivesTooltipContent.tsx | 2 +- src/components/infoTooltips/DarkTooltip.tsx | 4 +- src/components/infoTooltips/EModeTooltip.tsx | 4 +- .../infoTooltips/KernelAirdropTooltip.tsx | 2 +- .../infoTooltips/MigrationDisabledTooltip.tsx | 2 +- .../PointsBasedCampaignTooltip.tsx | 37 ++++----- .../infoTooltips/PriceImpactTooltip.tsx | 4 +- .../infoTooltips/SpkAirdropTooltip.tsx | 4 +- .../infoTooltips/SuperFestTooltip.tsx | 4 +- .../WrappedTokenToolTipContent.tsx | 9 +-- .../isolationMode/IsolatedBadge.tsx | 12 +-- src/components/lists/ListHeaderTitle.tsx | 19 ++--- src/components/lists/ListHeaderWrapper.tsx | 4 +- src/components/lists/ListItem.tsx | 4 +- src/components/lists/ListMobileItem.tsx | 2 +- src/components/lists/ListWrapper.tsx | 14 ++-- src/components/primitives/BasicModal.tsx | 5 +- src/components/primitives/FormattedNumber.tsx | 8 +- .../primitives/TypographyGradient.tsx | 10 +-- src/components/transactions/AssetInput.tsx | 33 ++++---- .../transactions/Bridge/BridgeAmount.tsx | 6 +- .../Bridge/BridgeDestinationInput.tsx | 11 +-- .../Bridge/BridgeFeeTokenSelector.tsx | 6 +- .../Bridge/BridgeModalContent.tsx | 10 +-- .../CancelCowOrderModalContent.tsx | 2 +- .../ClaimRewards/ClaimRewardsModalContent.tsx | 10 +-- .../ClaimRewards/RewardsSelect.tsx | 40 ++++----- .../transactions/Emode/EmodeModalContent.tsx | 18 ++--- .../FlowCommons/BaseCancelled.tsx | 4 +- .../transactions/FlowCommons/BaseSuccess.tsx | 4 +- .../transactions/FlowCommons/BaseWaiting.tsx | 4 +- .../FlowCommons/PermitNonceInfo.tsx | 2 +- .../FlowCommons/RightHelperText.tsx | 2 +- .../transactions/FlowCommons/Success.tsx | 5 +- .../FlowCommons/TxModalDetails.tsx | 11 +-- .../transactions/FlowCommons/TxModalTitle.tsx | 6 +- .../FunCheckout/FunkitCheckout.tsx | 6 +- .../transactions/GasStation/GasStation.tsx | 2 +- .../GovDelegation/DelegationTokenSelector.tsx | 2 +- .../GovDelegationModalContent.tsx | 8 +- .../GovRepresentativesModalContent.tsx | 13 ++- .../MigrateV3/MigrateV3ModalAssetsList.tsx | 2 +- src/components/transactions/NetworkSelect.tsx | 9 ++- .../transactions/Repay/RepayTypeSelector.tsx | 2 +- .../StakeCooldownModalContent.tsx | 6 +- .../StakingMigrateModalContent.tsx | 4 +- .../Supply/CollateralOptionsSelector.tsx | 27 ++++--- .../Supply/SupplyModalContent.tsx | 4 +- .../Swap/details/CollateralSwapDetails.tsx | 8 +- .../Swap/details/CowCostsDetails.tsx | 12 +-- .../Swap/details/DebtSwapDetails.tsx | 8 +- .../Swap/details/ParaswapCostsDetails.tsx | 4 +- .../transactions/Swap/details/SwapDetails.tsx | 10 +-- .../Swap/inputs/LimitOrderInputs.tsx | 20 ++--- .../Swap/inputs/MarketOrderInputs.tsx | 20 ++--- .../Swap/inputs/primitives/SwapAssetInput.tsx | 81 ++++++++++--------- .../Swap/inputs/shared/ExpirySelector.tsx | 4 +- .../Swap/inputs/shared/NetworkSelector.tsx | 2 +- .../Swap/inputs/shared/PriceInput.tsx | 27 ++++--- .../Swap/inputs/shared/QuoteProgressRing.tsx | 6 +- .../Swap/inputs/shared/SwitchRates.tsx | 4 +- .../inputs/shared/SwitchSlippageSelector.tsx | 18 ++--- .../Swap/modals/CollateralSwapModal.tsx | 2 +- .../Swap/modals/DebtSwapModal.tsx | 2 +- .../transactions/Swap/modals/SwapModal.tsx | 2 +- .../modals/request/NoEligibleAssetsToSwap.tsx | 2 +- .../Swap/modals/result/CowOrderToast.tsx | 10 +-- .../Swap/modals/result/SwapResultView.tsx | 24 +++--- 98 files changed, 482 insertions(+), 506 deletions(-) diff --git a/src/components/Analytics/AnalyticsConsent.tsx b/src/components/Analytics/AnalyticsConsent.tsx index e5036c286e..d5f70d709c 100644 --- a/src/components/Analytics/AnalyticsConsent.tsx +++ b/src/components/Analytics/AnalyticsConsent.tsx @@ -5,6 +5,7 @@ import { CookieConsent as AnalyticsConsentBanner } from 'react-cookie-consent'; import { Link } from 'src/components/primitives/Link'; import { CONSENT_KEY } from 'src/store/analyticsSlice'; import { useRootStore } from 'src/store/root'; +import { figVars } from 'src/utils/figmaColors'; import { useAccount } from 'wagmi'; import { useShallow } from 'zustand/shallow'; @@ -63,7 +64,7 @@ export default function AnalyticsBanner() { visible={analyticsConfigOpen ? 'show' : 'hidden'} flipButtons style={{ - background: theme.palette.background.paper, + background: figVars['surface-elevated'], bottom: isMobile ? '24px' : '24px', right: isMobile ? '50%' : '24px', left: isMobile ? '50%' : 'auto', @@ -76,7 +77,7 @@ export default function AnalyticsBanner() { flexFlow: 'column', justifyContent: 'space-between', alignItems: 'center', - color: theme.palette.text.primary, + color: figVars['fg-1'], marginBottom: '16px', fontSize: '14px', lineHeight: '20.02px', @@ -137,7 +138,7 @@ export default function AnalyticsBanner() { We may employ on-the-spot tracking techniques during your browsing session to collect data on your interactions, preferences, and behaviour. This data helps us personalise your experience and improve our services. See our - + {' '} Privacy Policy. diff --git a/src/components/AssetCategoryMultiselect.tsx b/src/components/AssetCategoryMultiselect.tsx index 60b14df857..a8017f9cd9 100644 --- a/src/components/AssetCategoryMultiselect.tsx +++ b/src/components/AssetCategoryMultiselect.tsx @@ -110,7 +110,7 @@ export const AssetCategoryMultiSelect = ({ sx={{ width: '14px', height: '14px', - color: 'text.primary', + color: 'fg-1', flexShrink: 0, }} /> @@ -131,7 +131,7 @@ export const AssetCategoryMultiSelect = ({ PaperProps={{ sx: { width: '240px', - backgroundColor: 'background.paper', + backgroundColor: 'surface-elevated', boxShadow: '0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1)', borderRadius: '4px', mt: 2, @@ -161,7 +161,7 @@ export const AssetCategoryMultiSelect = ({ variant="subheader2" sx={{ flexGrow: 1, - color: 'text.secondary', + color: 'fg-2', fontWeight: 500, fontSize: '12px', lineHeight: '16px', @@ -176,14 +176,14 @@ export const AssetCategoryMultiSelect = ({ sx={{ minWidth: 'auto', padding: 0, - color: selectedCount > 0 ? 'text.primary' : 'text.disabled', + color: selectedCount > 0 ? 'fg-1' : 'fg-4', textDecoration: selectedCount > 0 ? 'underline' : 'none', textUnderlineOffset: '3px', textTransform: 'none', '&:hover': { backgroundColor: 'transparent', - color: selectedCount > 0 ? 'text.primary' : 'text.disabled', + color: selectedCount > 0 ? 'fg-1' : 'fg-4', textDecoration: selectedCount > 0 ? 'underline' : 'none', }, }} @@ -220,7 +220,7 @@ export const AssetCategoryMultiSelect = ({ Please, connect your wallet - + {description || ( Please connect your wallet to see your supplies, borrowings, and open positions. diff --git a/src/components/ConnectWalletPaperStaking.tsx b/src/components/ConnectWalletPaperStaking.tsx index ca5f484c60..80de975bc4 100644 --- a/src/components/ConnectWalletPaperStaking.tsx +++ b/src/components/ConnectWalletPaperStaking.tsx @@ -38,7 +38,7 @@ export const ConnectWalletPaperStaking = ({ Please, connect your wallet - + {description || ( Please connect your wallet to see your supplies, borrowings, and open positions. diff --git a/src/components/ContentContainer.tsx b/src/components/ContentContainer.tsx index 9fdc984604..72f484855a 100644 --- a/src/components/ContentContainer.tsx +++ b/src/components/ContentContainer.tsx @@ -12,6 +12,7 @@ export const ContentContainer = ({ children }: ContentContainerProps) => { display: 'flex', flexDirection: 'column', flex: 1, + pt: '2.5rem', }} > {children} diff --git a/src/components/ContentWithTooltip.tsx b/src/components/ContentWithTooltip.tsx index f6cc53e8d4..3a26dd512b 100644 --- a/src/components/ContentWithTooltip.tsx +++ b/src/components/ContentWithTooltip.tsx @@ -15,15 +15,15 @@ interface ContentWithTooltipProps { export const PopperComponent = styled(Popper)(({ theme }) => theme.unstable_sx({ '.MuiTooltip-tooltip': { - color: 'text.primary', - backgroundColor: 'background.paper', + color: 'fg-1', + backgroundColor: 'surface-elevated', p: 0, borderRadius: '6px', boxShadow: '0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1)', maxWidth: '280px', }, '.MuiTooltip-arrow': { - color: 'background.paper', + color: 'surface-elevated', '&:before': { boxShadow: '0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1)', }, diff --git a/src/components/HealthFactorNumber.tsx b/src/components/HealthFactorNumber.tsx index 2f9dad566f..57cfdbade2 100644 --- a/src/components/HealthFactorNumber.tsx +++ b/src/components/HealthFactorNumber.tsx @@ -12,16 +12,16 @@ interface HealthFactorNumberProps extends TypographyProps { } export const HealthFactorNumber = ({ value, onInfoClick, ...rest }: HealthFactorNumberProps) => { - const { palette } = useTheme(); + const theme = useTheme(); const formattedHealthFactor = Number(valueToBigNumber(value).toFixed(2, BigNumber.ROUND_DOWN)); let healthFactorColor = ''; if (formattedHealthFactor >= 3) { - healthFactorColor = palette.success.main; + healthFactorColor = theme.vars.palette.success.main; } else if (formattedHealthFactor < 1.1) { - healthFactorColor = palette.error.main; + healthFactorColor = theme.vars.palette.error.main; } else { - healthFactorColor = palette.warning.main; + healthFactorColor = theme.vars.palette.warning.main; } return ( @@ -34,7 +34,7 @@ export const HealthFactorNumber = ({ value, onInfoClick, ...rest }: HealthFactor data-cy={'HealthFactorTopPannel'} > {value === '-1' ? ( - + ) : ( diff --git a/src/components/MarketAssetCategoryFilter.tsx b/src/components/MarketAssetCategoryFilter.tsx index 3661dde058..2d481141c2 100644 --- a/src/components/MarketAssetCategoryFilter.tsx +++ b/src/components/MarketAssetCategoryFilter.tsx @@ -1,6 +1,7 @@ import { Trans } from '@lingui/macro'; import { SxProps, Theme, ToggleButton, ToggleButtonGroup, Typography } from '@mui/material'; import { AssetCategory } from 'src/modules/markets/utils/assetCategories'; +import { figVars } from 'src/utils/figmaColors'; interface MarketAssetCategoryFiltersProps { selectedCategory: AssetCategory; @@ -59,19 +60,19 @@ export const MarketAssetCategoryFilter = ({ disableRipple // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore - sx={(theme): SxProps | undefined => ({ + sx={(): SxProps | undefined => ({ flex: { xs: 1, xsm: 1, sm: 'auto' }, '&.MuiToggleButtonGroup-grouped:not(.Mui-selected), &.MuiToggleButtonGroup-grouped&.Mui-disabled': { border: '1px solid transparent', - backgroundColor: 'background.surface', - color: 'action.disabled', + backgroundColor: 'bg-2', + color: 'disabled-fg', }, '&.MuiToggleButtonGroup-grouped&.Mui-selected': { borderRadius: '4px', - border: `1px solid ${theme.palette.divider}`, + border: `1px solid ${figVars['border-2']}`, boxShadow: '0px 2px 1px rgba(0, 0, 0, 0.05), 0px 0px 1px rgba(0, 0, 0, 0.25)', - backgroundColor: 'background.paper', + backgroundColor: 'surface-elevated', }, ...props.sx?.button, })} diff --git a/src/components/MarketSwitcher.tsx b/src/components/MarketSwitcher.tsx index 6357467ec7..6b7140ec4b 100644 --- a/src/components/MarketSwitcher.tsx +++ b/src/components/MarketSwitcher.tsx @@ -23,7 +23,7 @@ import { FAVOURITE_STAR_COLOR, StarIcon } from 'src/components/icons/StarIcon'; import { useRootStore } from 'src/store/root'; import { BaseNetworkConfig } from 'src/ui-config/networksConfig'; import { DASHBOARD } from 'src/utils/events'; -import { figmaDark } from 'src/utils/figmaColors'; +import { onAccent } from 'src/utils/figmaColors'; import { useShallow } from 'zustand/shallow'; import { @@ -96,7 +96,7 @@ export const MarketLogo = ({ size, logo, testChainName, sx }: MarketLogoProps) = width: '16px', height: '16px', borderRadius: '50%', - color: figmaDark['fg-1'], + color: onAccent, fontSize: '12px', lineHeight: '16px', display: 'flex', @@ -302,9 +302,9 @@ export const MarketSwitcher = () => { borderRadius: '48px', border: '1px solid', borderColor: isSelected ? 'primary.main' : 'rgba(0,0,0,0.1)', - bgcolor: isSelected ? 'action.selected' : 'transparent', + bgcolor: isSelected ? 'selected' : 'transparent', cursor: 'pointer', - '&:hover': { bgcolor: 'action.hover' }, + '&:hover': { bgcolor: 'button-hover' }, flexShrink: 0, }} > @@ -333,7 +333,7 @@ export const MarketSwitcher = () => { flexShrink: 0, }} > - + @@ -369,8 +369,8 @@ export const MarketSwitcher = () => { borderRadius: '8px', cursor: 'pointer', position: 'relative', - bgcolor: isSelected ? 'action.selected' : 'transparent', - '&:hover': { bgcolor: isSelected ? 'action.selected' : 'action.hover' }, + bgcolor: isSelected ? 'selected' : 'transparent', + '&:hover': { bgcolor: isSelected ? 'selected' : 'button-hover' }, // Star: always visible on mobile, hover-reveal on desktop '& .grid-fav-btn': { opacity: isMobile || isFavorite ? 1 : 0, @@ -404,7 +404,7 @@ export const MarketSwitcher = () => { {marketNaming.name} {market.isFork ? 'Fork' : ''} {market.externalUrl && ( - + )} @@ -417,7 +417,7 @@ export const MarketSwitcher = () => { @@ -445,7 +445,7 @@ export const MarketSwitcher = () => { boxSizing: 'border-box', borderRadius: '8px', cursor: 'pointer', - '&:hover': { bgcolor: 'action.hover' }, + '&:hover': { bgcolor: 'button-hover' }, }} > @@ -499,7 +499,7 @@ export const MarketSwitcher = () => { V4 - + @@ -508,7 +508,7 @@ export const MarketSwitcher = () => { const sectionHeader = (label: React.ReactNode) => ( { {/* Fixed header with search */} - {/* + {/* {ENABLE_TESTNET || STAGING_ENV ? 'Select Aave Testnet Market' : 'Select Aave Market'} @@ -554,7 +554,7 @@ export const MarketSwitcher = () => { InputProps={{ startAdornment: ( - + @@ -565,14 +565,14 @@ export const MarketSwitcher = () => { borderRadius: '6px', height: '36px', '& fieldset': { - borderColor: 'divider', + borderColor: 'border-2', }, }, '& .MuiOutlinedInput-input': { fontSize: '14px', letterSpacing: '0.15px', '&::placeholder': { - color: 'text.secondary', + color: 'fg-2', opacity: 1, }, }, @@ -592,7 +592,7 @@ export const MarketSwitcher = () => { { boxSizing: 'border-box', borderRadius: '8px', cursor: 'pointer', - '&:hover': { bgcolor: 'action.hover' }, + '&:hover': { bgcolor: 'button-hover' }, }} > @@ -696,7 +696,7 @@ export const MarketSwitcher = () => { > V2 Markets - + @@ -707,7 +707,7 @@ export const MarketSwitcher = () => { {/* No results */} {noResults && ( - + No markets found @@ -718,7 +718,7 @@ export const MarketSwitcher = () => { { fontSize: '14px', fontWeight: 500, letterSpacing: '0.15px', - color: 'text.secondary', + color: 'fg-2', }} > Show legacy markets @@ -785,7 +785,7 @@ export const MarketSwitcher = () => { variant={upToLG ? 'display1' : 'h1'} sx={{ fontSize: downToXSM ? '1.55rem' : undefined, - color: 'text.primary', + color: 'fg-1', mr: 1, }} > @@ -801,7 +801,7 @@ export const MarketSwitcher = () => { color: '#fff', px: 2, borderRadius: '12px', - background: (theme) => theme.palette.gradients.aaveGradient, + bgcolor: 'purple-1', display: 'flex', alignItems: 'center', }} @@ -822,7 +822,7 @@ export const MarketSwitcher = () => { V2 )} - ({ ml: 1, color: theme.palette.fig['fg-3'] })} /> + @@ -830,7 +830,7 @@ export const MarketSwitcher = () => { {marketBlurbs[currentMarket] && ( { width: 36, height: 4, borderRadius: '2px', - bgcolor: 'divider', + bgcolor: 'border-2', }} /> diff --git a/src/components/NoSearchResults.tsx b/src/components/NoSearchResults.tsx index 6896e0a048..9044c1b784 100644 --- a/src/components/NoSearchResults.tsx +++ b/src/components/NoSearchResults.tsx @@ -41,11 +41,7 @@ export const NoSearchResults: React.FC = ({ searchTerm, su )} {subtitle && ( - + {subtitle} )} diff --git a/src/components/ReserveOverviewBox.tsx b/src/components/ReserveOverviewBox.tsx index de20c5d6f0..6faceebdb8 100644 --- a/src/components/ReserveOverviewBox.tsx +++ b/src/components/ReserveOverviewBox.tsx @@ -1,5 +1,6 @@ import { Box, Typography } from '@mui/material'; import React, { ReactNode } from 'react'; +import { figVars } from 'src/utils/figmaColors'; type ReserveOverviewBoxProps = { children: ReactNode; @@ -14,13 +15,13 @@ export function ReserveOverviewBox({ }: ReserveOverviewBoxProps) { return ( ({ + sx={{ borderRadius: '6px', - border: `1px solid ${theme.palette.divider}`, + border: `1px solid ${figVars['border-2']}`, flex: fullWidth ? '0 100%' : '0 32%', marginBottom: '2%', maxWidth: fullWidth ? '100%' : '32%', - })} + }} > {title && ( - + {title} )} diff --git a/src/components/ReserveSubheader.tsx b/src/components/ReserveSubheader.tsx index 55119de461..23116e862d 100644 --- a/src/components/ReserveSubheader.tsx +++ b/src/components/ReserveSubheader.tsx @@ -21,7 +21,7 @@ export function ReserveSubheader({ value, rightAlign }: ReserveSubheaderProps) { }} > {value === 'Disabled' ? ( - + (Disabled) ) : ( @@ -29,9 +29,9 @@ export function ReserveSubheader({ value, rightAlign }: ReserveSubheaderProps) { compact value={value} variant="secondary12" - color="text.secondary" + color="fg-2" symbolsVariant="secondary12" - symbolsColor="text.secondary" + symbolsColor="fg-2" symbol="USD" /> )} diff --git a/src/components/SavingsCardSkeleton.tsx b/src/components/SavingsCardSkeleton.tsx index 6286a76e03..d6f4534739 100644 --- a/src/components/SavingsCardSkeleton.tsx +++ b/src/components/SavingsCardSkeleton.tsx @@ -1,4 +1,5 @@ import { Box, Grid, Skeleton, Stack } from '@mui/material'; +import { figVars } from 'src/utils/figmaColors'; interface SavingsCardSkeletonProps { hasAccount?: boolean; @@ -10,13 +11,13 @@ export const SavingsCardSkeleton = ({ hasAccount }: SavingsCardSkeletonProps) => {hasAccount && ( ({ + sx={{ borderRadius: { xs: '8px', xsm: '6px' }, - border: `1px solid ${theme.palette.divider}`, + border: `1px solid ${figVars['border-2']}`, p: 4, mb: 4, - background: theme.palette.background.paper, - })} + background: figVars['surface-elevated'], + }} > diff --git a/src/components/SearchInput.tsx b/src/components/SearchInput.tsx index b1b2f8192f..ef24c7e3c1 100644 --- a/src/components/SearchInput.tsx +++ b/src/components/SearchInput.tsx @@ -3,6 +3,7 @@ import { XCircleIcon } from '@heroicons/react/solid'; import { Box, BoxProps, IconButton, InputBase, useMediaQuery, useTheme } from '@mui/material'; import debounce from 'lodash/debounce'; import { useMemo, useRef, useState } from 'react'; +import { figVars } from 'src/utils/figmaColors'; interface SearchInputProps { onSearchTermChange: (value: string) => void; @@ -36,15 +37,15 @@ export const SearchInput = ({ }, [onSearchTermChange]); return ( ({ + sx={{ display: 'flex', alignItems: 'center', gap: 2, - border: `1px solid ${theme.palette.divider}`, + border: `1px solid ${figVars['border-2']}`, borderRadius: '6px', height: '36px', ...wrapperSx, - })} + }} > diff --git a/src/components/StyledToggleButton.tsx b/src/components/StyledToggleButton.tsx index ec0128d8b6..abe4be82a5 100644 --- a/src/components/StyledToggleButton.tsx +++ b/src/components/StyledToggleButton.tsx @@ -1,7 +1,8 @@ import { styled, ToggleButton, ToggleButtonProps } from '@mui/material'; import React from 'react'; +import { figVars } from 'src/utils/figmaColors'; -const CustomToggleButton = styled(ToggleButton)(({ theme }) => ({ +const CustomToggleButton = styled(ToggleButton)({ border: '0px', flex: 1, backgroundColor: '#383D51', @@ -19,30 +20,26 @@ const CustomToggleButton = styled(ToggleButton)(({ theme }) = justifyContent: 'center', '.MuiTypography-subheader1': { - background: theme.palette.gradients.aaveGradient, - backgroundClip: 'text', - textFillColor: 'transparent', + color: figVars['purple-1'], }, '.MuiTypography-secondary14': { - background: theme.palette.gradients.aaveGradient, - backgroundClip: 'text', - textFillColor: 'transparent', + color: figVars['purple-1'], }, }, -})) as typeof ToggleButton; +}) as typeof ToggleButton; -const CustomTxModalToggleButton = styled(ToggleButton)(({ theme }) => ({ +const CustomTxModalToggleButton = styled(ToggleButton)({ border: '0px', flex: 1, - color: theme.palette.text.muted, + color: figVars['fg-3'], borderRadius: '4px', // Selected (active) state '&.Mui-selected, &.Mui-selected:hover': { - border: `1px solid ${theme.palette.other.standardInputLine}`, + border: `1px solid ${figVars['input-line']}`, backgroundColor: '#FFFFFF', borderRadius: '4px !important', - color: theme.palette.background.header, + color: figVars['bg-1'], zIndex: 100, height: '100%', display: 'flex', @@ -51,19 +48,19 @@ const CustomTxModalToggleButton = styled(ToggleButton)(({ the // Disabled but NOT selected: keep readable text with slight fade '&.Mui-disabled:not(.Mui-selected)': { - color: theme.palette.text.secondary, + color: figVars['fg-2'], opacity: 0.55, }, // Disabled + selected: preserve the selected look '&.Mui-disabled.Mui-selected': { - border: `1px solid ${theme.palette.other.standardInputLine}`, + border: `1px solid ${figVars['input-line']}`, backgroundColor: '#FFFFFF', borderRadius: '4px !important', - color: theme.palette.background.header, + color: figVars['bg-1'], opacity: 1, }, -})) as typeof ToggleButton; +}) as typeof ToggleButton; export function StyledTxModalToggleButton(props: ToggleButtonProps) { return ; diff --git a/src/components/StyledToggleButtonGroup.tsx b/src/components/StyledToggleButtonGroup.tsx index d3531fdafd..8fe6ac7e73 100644 --- a/src/components/StyledToggleButtonGroup.tsx +++ b/src/components/StyledToggleButtonGroup.tsx @@ -1,4 +1,5 @@ import { styled, ToggleButtonGroup, ToggleButtonGroupProps } from '@mui/material'; +import { figVars } from 'src/utils/figmaColors'; const CustomToggleGroup = styled(ToggleButtonGroup)({ backgroundColor: '#383D51', @@ -6,12 +7,12 @@ const CustomToggleGroup = styled(ToggleButtonGroup)({ padding: '4px', }) as typeof ToggleButtonGroup; -const CustomTxModalToggleGroup = styled(ToggleButtonGroup)(({ theme }) => ({ - backgroundColor: theme.palette.background.header, +const CustomTxModalToggleGroup = styled(ToggleButtonGroup)({ + backgroundColor: figVars['bg-1'], padding: '2px', height: '36px', width: '100%', -})) as typeof ToggleButtonGroup; +}) as typeof ToggleButtonGroup; export function StyledTxModalToggleGroup(props: ToggleButtonGroupProps) { return ; diff --git a/src/components/TextWithTooltip.tsx b/src/components/TextWithTooltip.tsx index 406692221e..8aa3d93241 100644 --- a/src/components/TextWithTooltip.tsx +++ b/src/components/TextWithTooltip.tsx @@ -74,7 +74,7 @@ export const TextWithTooltip = ({ {pageTitle && (downToXSM || !withMarketSwitcher) && ( @@ -56,7 +57,7 @@ export const PageTitle = ({ diff --git a/src/components/TopInfoPanel/TopInfoPanel.tsx b/src/components/TopInfoPanel/TopInfoPanel.tsx index 3e3bf45fbd..a25aabfe23 100644 --- a/src/components/TopInfoPanel/TopInfoPanel.tsx +++ b/src/components/TopInfoPanel/TopInfoPanel.tsx @@ -1,5 +1,6 @@ import { Box, Container, ContainerProps } from '@mui/material'; import { ReactNode } from 'react'; +import { figVars } from 'src/utils/figmaColors'; import { PageTitle, PageTitleProps } from './PageTitle'; @@ -22,10 +23,11 @@ export const TopInfoPanel = ({ return ( diff --git a/src/components/WalletConnection/ReadOnlyModal.tsx b/src/components/WalletConnection/ReadOnlyModal.tsx index 7bc6731e8e..d17a08f0b4 100644 --- a/src/components/WalletConnection/ReadOnlyModal.tsx +++ b/src/components/WalletConnection/ReadOnlyModal.tsx @@ -15,6 +15,7 @@ import { useWeb3Context } from 'src/libs/hooks/useWeb3Context'; import { useRootStore } from 'src/store/root'; import { resolveEnsAddress } from 'src/utils/ensClient'; import { AUTH } from 'src/utils/events'; +import { figVars } from 'src/utils/figmaColors'; import { isAddress } from 'viem'; import { useAccount, useDisconnect } from 'wagmi'; @@ -78,22 +79,22 @@ export const ReadOnlyModal = () => { - + Watch a wallet balance in read-only mode
({ + sx={{ py: 1, px: 3, - border: `1px solid ${theme.palette.divider}`, + border: `1px solid ${figVars['border-2']}`, borderRadius: '6px', mb: 1, overflow: 'show', fontSize: sm ? '16px' : '14px', - })} + }} placeholder="Enter ethereum address or ENS name" fullWidth value={inputMockWalletAddress} diff --git a/src/components/caps/CapsCircularStatus.tsx b/src/components/caps/CapsCircularStatus.tsx index 383993195f..b1015dbc63 100644 --- a/src/components/caps/CapsCircularStatus.tsx +++ b/src/components/caps/CapsCircularStatus.tsx @@ -52,7 +52,7 @@ export const CapsCircularStatus = ({ value, tooltipContent, onClick }: CapsCircu theme.palette.grey[theme.palette.mode === 'light' ? 200 : 800], + color: (theme) => theme.vars.palette.grey[theme.palette.mode === 'light' ? 200 : 800], position: 'absolute', left: 1.25, top: 1.25, diff --git a/src/components/caps/CapsHint.tsx b/src/components/caps/CapsHint.tsx index 33632eb3ec..d442281e9f 100644 --- a/src/components/caps/CapsHint.tsx +++ b/src/components/caps/CapsHint.tsx @@ -42,7 +42,7 @@ export const CapsHint = ({ {!withoutText && ( <> - + {title} { const determineColor = (theme: Theme): string => { if (usageData.isMaxed || usageData.percentUsed >= 99.99) { - return theme.palette.error.main; + return theme.vars.palette.error.main; } else if (usageData.percentUsed >= 98) { - return theme.palette.warning.main; + return theme.vars.palette.warning.main; } else { - return theme.palette.success.main; + return theme.vars.palette.success.main; } }; @@ -38,7 +38,7 @@ export const DebtCeilingStatus = ({ height: 5, [`&.${linearProgressClasses.colorPrimary}`]: { backgroundColor: (theme: Theme) => - theme.palette.grey[theme.palette.mode === 'light' ? 200 : 800], + theme.vars.palette.grey[theme.palette.mode === 'light' ? 200 : 800], }, [`& .${linearProgressClasses.bar}`]: { borderRadius: 5, @@ -50,7 +50,7 @@ export const DebtCeilingStatus = ({ <> - + Isolated Debt Ceiling @@ -78,7 +78,7 @@ export const DebtCeilingStatus = ({ /> diff --git a/src/components/incentives/EthenaIncentivesTooltipContent.tsx b/src/components/incentives/EthenaIncentivesTooltipContent.tsx index ea9aa346c6..34325379fa 100644 --- a/src/components/incentives/EthenaIncentivesTooltipContent.tsx +++ b/src/components/incentives/EthenaIncentivesTooltipContent.tsx @@ -13,7 +13,7 @@ export const EthenaAirdropTooltipContent = ({ points }: { points: number }) => { href="https://app.ethena.fi/join" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > {'here'} diff --git a/src/components/incentives/EtherfiIncentivesTooltipContent.tsx b/src/components/incentives/EtherfiIncentivesTooltipContent.tsx index ddd0de7ea4..433776deef 100644 --- a/src/components/incentives/EtherfiIncentivesTooltipContent.tsx +++ b/src/components/incentives/EtherfiIncentivesTooltipContent.tsx @@ -17,7 +17,7 @@ export const EtherFiAirdropTooltipContent = ({ multiplier }: { multiplier: numbe href="https://etherfi.gitbook.io/etherfi/getting-started/loyalty-points" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > here diff --git a/src/components/incentives/IncentivesButton.tsx b/src/components/incentives/IncentivesButton.tsx index 5a8fdb2ba4..c42622893c 100644 --- a/src/components/incentives/IncentivesButton.tsx +++ b/src/components/incentives/IncentivesButton.tsx @@ -11,6 +11,7 @@ import { useMerklPointsIncentives } from 'src/hooks/useMerklPointsIncentives'; import { useSonicIncentives } from 'src/hooks/useSonicIncentives'; import { useRootStore } from 'src/store/root'; import { DASHBOARD } from 'src/utils/events'; +import { figVars } from 'src/utils/figmaColors'; import { convertAprToApy } from 'src/utils/utils'; import { ContentWithTooltip } from '../ContentWithTooltip'; @@ -121,7 +122,7 @@ const BlankIncentives = () => { justifyContent: 'center', }} > - +   @@ -380,12 +381,7 @@ const Content = ({ if (incentivesNetAPR !== INFINITY && incentivesNetAPR < 10000) { return ( - + ); @@ -397,7 +393,7 @@ const Content = ({ percent compact variant="secondary12" - color="text.secondary" + color="fg-2" /> @@ -405,7 +401,7 @@ const Content = ({ } else if (incentivesNetAPR === INFINITY) { return ( - + @@ -426,7 +422,7 @@ const Content = ({ return ( ({ + sx={{ borderRadius: '4px', cursor: 'pointer', display: 'flex', @@ -434,10 +430,10 @@ const Content = ({ justifyContent: 'center', transition: 'opacity 0.2s ease', '&:hover': { - bgcolor: 'action.hover', - borderColor: 'action.disabled', + bgcolor: 'button-hover', + borderColor: 'disabled-fg', }, - })} + }} onClick={() => { // TODO: How to handle this for event props? trackEvent(DASHBOARD.VIEW_LM_DETAILS_DASHBOARD, {}); @@ -500,28 +496,28 @@ const ContentButton = ({ value, iconSrc }: { value: number; iconSrc: string }) = return ( ({ + sx={{ p: { xs: '0 4px', xsm: '2px 4px' }, - border: `1px solid ${open ? theme.palette.action.disabled : theme.palette.divider}`, + border: `1px solid ${open ? figVars['disabled-fg'] : figVars['border-2']}`, borderRadius: '4px', cursor: 'pointer', display: 'flex', alignItems: 'center', justifyContent: 'center', transition: 'opacity 0.2s ease', - bgcolor: open ? 'action.hover' : 'transparent', + bgcolor: open ? 'button-hover' : 'transparent', '&:hover': { - bgcolor: 'action.hover', - borderColor: 'action.disabled', + bgcolor: 'button-hover', + borderColor: 'disabled-fg', }, - })} + }} onClick={() => { trackEvent(DASHBOARD.VIEW_LM_DETAILS_DASHBOARD, {}); setOpen(!open); }} > - + {`${value}x`} diff --git a/src/components/incentives/IncentivesCard.tsx b/src/components/incentives/IncentivesCard.tsx index 4d914c3641..6c25c0028f 100644 --- a/src/components/incentives/IncentivesCard.tsx +++ b/src/components/incentives/IncentivesCard.tsx @@ -166,7 +166,7 @@ export const IncentivesCard = ({ {value.toString() !== '-1' ? ( {displayAPY === 'Infinity' ? ( - + ∞ % ) : ( @@ -195,7 +195,7 @@ export const IncentivesCard = ({ )} ) : ( - + )} {!inlineIncentives && ( - + Participating in this {symbol} reserve gives annualized rewards. @@ -484,7 +484,7 @@ export const IncentivesTooltipContent = ({ {/* Show Net APR (protocol incentives only) if multiple incentives */} {incentives.length > 1 && ( - ({ pt: 1, mt: 1 })}> + @@ -509,14 +509,14 @@ export const IncentivesTooltipContent = ({ {/* Show Total APY if we have Merit incentives or protocol APY */} {(meritIncentives?.breakdown || protocolAPY > 0) && ( - ({ pt: 1, mt: 1, borderTop: '1px solid rgba(255, 255, 255, 0.1)' })}> + Total APY - + ({isBorrow ? 'Borrow Rate' : 'Supply Rate'}) diff --git a/src/components/incentives/MeritIncentivesTooltipContent.tsx b/src/components/incentives/MeritIncentivesTooltipContent.tsx index cf0c44724e..ffcae77052 100644 --- a/src/components/incentives/MeritIncentivesTooltipContent.tsx +++ b/src/components/incentives/MeritIncentivesTooltipContent.tsx @@ -153,11 +153,11 @@ export const MeritIncentivesTooltipContent = ({ alt="" /> - + {campaignConfig.title} - + This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability. @@ -166,7 +166,7 @@ export const MeritIncentivesTooltipContent = ({ href={'https://apps.aavechan.com/merit'} sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > Learn more @@ -174,7 +174,7 @@ export const MeritIncentivesTooltipContent = ({ {campaignConfig.type === CampaignType.SELF_VERIFICATION && selfConfig && ( <> - + Supply {selfConfig.token} and double your yield by{' '} @@ -182,7 +182,7 @@ export const MeritIncentivesTooltipContent = ({ href="https://aave.self.xyz/" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > verifying your humanity through Self @@ -190,7 +190,7 @@ export const MeritIncentivesTooltipContent = ({ for {selfConfig.limit} per user. {' '} - + Visit{' '} @@ -198,7 +198,7 @@ export const MeritIncentivesTooltipContent = ({ href="https://aave.self.xyz/" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > https://aave.self.xyz/ @@ -209,19 +209,19 @@ export const MeritIncentivesTooltipContent = ({ )} {isMultipleCampaigns(meritIncentives.activeActions) && remainingCustomMessage && ( - + {remainingCustomMessage} )} {meritIncentives.customMessage ? ( - + {meritIncentives.customMessage} ) : null} Total APY - + ({meritIncentives.breakdown.isBorrow ? 'Borrow Rate' : 'Supply Rate'}) diff --git a/src/components/incentives/MerklIncentivesTooltipContent.tsx b/src/components/incentives/MerklIncentivesTooltipContent.tsx index 81eb161146..f5d40b548b 100644 --- a/src/components/incentives/MerklIncentivesTooltipContent.tsx +++ b/src/components/incentives/MerklIncentivesTooltipContent.tsx @@ -41,7 +41,7 @@ export const MerklIncentivesTooltipContent = ({ alt="" /> - + {merklIncentives.isSelf ? ( Eligible for incentives through Merkl and Boosted Yield via Self. ) : ( @@ -49,7 +49,7 @@ export const MerklIncentivesTooltipContent = ({ )} - + This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability. @@ -80,7 +80,7 @@ export const MerklIncentivesTooltipContent = ({ href="https://aave.self.xyz/" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > verifying your humanity through Self @@ -96,7 +96,7 @@ export const MerklIncentivesTooltipContent = ({ href="https://aave.self.xyz/" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > https://aave.self.xyz/ @@ -316,7 +316,7 @@ export const MerklIncentivesTooltipContent = ({ )} {/* Total APY */} - + - + APY diff --git a/src/components/incentives/SonicIncentivesTooltipContent.tsx b/src/components/incentives/SonicIncentivesTooltipContent.tsx index 5f784605b2..d6d6cf733f 100644 --- a/src/components/incentives/SonicIncentivesTooltipContent.tsx +++ b/src/components/incentives/SonicIncentivesTooltipContent.tsx @@ -13,7 +13,7 @@ export const SonicAirdropTooltipContent = ({ points }: { points: number }) => { href="https://blog.soniclabs.com/sonic-points-simplified-how-to-qualify-for-200-million-s-airdrop/" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > {'here'} diff --git a/src/components/infoTooltips/DarkTooltip.tsx b/src/components/infoTooltips/DarkTooltip.tsx index 788370fd30..e4e867b3b0 100644 --- a/src/components/infoTooltips/DarkTooltip.tsx +++ b/src/components/infoTooltips/DarkTooltip.tsx @@ -1,5 +1,5 @@ import { Box, Tooltip, TooltipProps } from '@mui/material'; -import { figmaDark } from 'src/utils/figmaColors'; +import { onAccent } from 'src/utils/figmaColors'; export const DarkTooltip = ({ title, @@ -37,7 +37,7 @@ export const DarkTooltip = ({ title={ .{' '} Learn more diff --git a/src/components/infoTooltips/KernelAirdropTooltip.tsx b/src/components/infoTooltips/KernelAirdropTooltip.tsx index 4c263436fa..10f111631b 100644 --- a/src/components/infoTooltips/KernelAirdropTooltip.tsx +++ b/src/components/infoTooltips/KernelAirdropTooltip.tsx @@ -23,7 +23,7 @@ export const KernelAirdropTooltip = () => { href="https://kerneldao.gitbook.io/kernel/getting-started/editor/kernel-points-guide " sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > {'here'} diff --git a/src/components/infoTooltips/MigrationDisabledTooltip.tsx b/src/components/infoTooltips/MigrationDisabledTooltip.tsx index db3915d015..66ebdaa124 100644 --- a/src/components/infoTooltips/MigrationDisabledTooltip.tsx +++ b/src/components/infoTooltips/MigrationDisabledTooltip.tsx @@ -73,7 +73,7 @@ export const MigrationDisabledTooltip = ({ return ( }> - + {warningText[warningType]} diff --git a/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx b/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx index 1ccc9f406b..6340d70d65 100644 --- a/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx +++ b/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx @@ -1,5 +1,6 @@ import { Box, Input, InputAdornment, Typography, useTheme } from '@mui/material'; import { ChangeEvent, useEffect, useState } from 'react'; +import { figVars } from 'src/utils/figmaColors'; import { convertAprToApy } from 'src/utils/utils'; import { FormattedNumber } from '../primitives/FormattedNumber'; @@ -89,7 +90,7 @@ export const PointsBasedCampaignTooltip = ({ gap: 1.5, pb: 1, borderBottom: 1, - borderColor: theme.palette.divider, + borderColor: 'border-2', }} > @@ -107,11 +108,7 @@ export const PointsBasedCampaignTooltip = ({ pb: 1, }} > - + The estimated amount of TydroInkPoints that you get per $1,000 net{' '} {isBorrow ? 'borrowed' : 'supplied'} per day. @@ -124,11 +121,11 @@ export const PointsBasedCampaignTooltip = ({ alignItems: 'center', justifyContent: 'space-between', p: 1.5, - backgroundColor: theme.palette.action.hover, + backgroundColor: 'button-hover', borderRadius: 1, }} > - + Points per $1,000/day @@ -148,18 +145,18 @@ export const PointsBasedCampaignTooltip = ({ gap: 1.25, p: 1.5, borderRadius: 1, - border: `1px solid ${theme.palette.divider}`, - backgroundColor: theme.palette.background.paper, + border: `1px solid ${figVars['border-2']}`, + backgroundColor: 'surface-elevated', }} > {!hasInkPriceInput ? ( - + Calculate APY from the assumed INK price.
(INK price not public yet)
) : ( - + The results are based on your estimated INK price. )} @@ -175,7 +172,7 @@ export const PointsBasedCampaignTooltip = ({ {estimatedPointsValue !== null && ( @@ -205,10 +202,10 @@ export const PointsBasedCampaignTooltip = ({ px: 1, py: 1, borderRadius: 1, - backgroundColor: theme.palette.action.hover, + backgroundColor: 'button-hover', }} > - + APY @@ -228,10 +225,10 @@ export const PointsBasedCampaignTooltip = ({ px: 1, py: 1, borderRadius: 1, - backgroundColor: theme.palette.action.hover, + backgroundColor: 'button-hover', }} > - + FDV diff --git a/src/components/infoTooltips/PriceImpactTooltip.tsx b/src/components/infoTooltips/PriceImpactTooltip.tsx index 1c3c399504..fe8bc23bcc 100644 --- a/src/components/infoTooltips/PriceImpactTooltip.tsx +++ b/src/components/infoTooltips/PriceImpactTooltip.tsx @@ -32,7 +32,7 @@ export const PriceImpactTooltip = ({ return ( )} diff --git a/src/components/infoTooltips/SpkAirdropTooltip.tsx b/src/components/infoTooltips/SpkAirdropTooltip.tsx index a5dc193330..b10eb8a4c0 100644 --- a/src/components/infoTooltips/SpkAirdropTooltip.tsx +++ b/src/components/infoTooltips/SpkAirdropTooltip.tsx @@ -23,7 +23,7 @@ export const SpkAirdropTooltip = () => { href="https://forum.sky.money/t/spark-proposal-for-integrations-into-aave/25005" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > {'here'} {' '} @@ -32,7 +32,7 @@ export const SpkAirdropTooltip = () => { href="https://docs.spark.fi/rewards/spk-token#what-is-the-spk-pre-farming-airdrop" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > {'here'} diff --git a/src/components/infoTooltips/SuperFestTooltip.tsx b/src/components/infoTooltips/SuperFestTooltip.tsx index e964668ba5..e3a20b1407 100644 --- a/src/components/infoTooltips/SuperFestTooltip.tsx +++ b/src/components/infoTooltips/SuperFestTooltip.tsx @@ -20,7 +20,7 @@ export const SuperFestTooltip = () => { href="https://superfest.optimism.io" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > Learn more {' '} @@ -32,7 +32,7 @@ export const SuperFestTooltip = () => { href="https://jumper.exchange/superfest" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > jumper.exchange diff --git a/src/components/infoTooltips/WrappedTokenToolTipContent.tsx b/src/components/infoTooltips/WrappedTokenToolTipContent.tsx index 03a90aac71..1274c6fc23 100644 --- a/src/components/infoTooltips/WrappedTokenToolTipContent.tsx +++ b/src/components/infoTooltips/WrappedTokenToolTipContent.tsx @@ -40,12 +40,7 @@ export const WrappedTokenTooltipContent = ({ ) : ( - + {tokenInSymbol} @@ -54,7 +49,7 @@ export const WrappedTokenTooltipContent = ({ value={exchangeRate || '0'} visibleDecimals={4} variant="secondary12" - color="text.primary" + color="fg-1" /> {tokenOutSymbol} diff --git a/src/components/isolationMode/IsolatedBadge.tsx b/src/components/isolationMode/IsolatedBadge.tsx index a75b2234a1..501d4fdddd 100644 --- a/src/components/isolationMode/IsolatedBadge.tsx +++ b/src/components/isolationMode/IsolatedBadge.tsx @@ -22,7 +22,7 @@ const InfoIcon = ({ color }: InfoIconProps) => ( @@ -37,8 +37,8 @@ export const IsolatedEnabledBadge = ({ const theme = useTheme(); const sx = { - border: `1px solid ${theme.palette.warning.main}`, - color: theme.palette.warning.main, + border: `1px solid ${theme.vars.palette.warning.main}`, + color: theme.vars.palette.warning.main, ...contentSx, }; return ( @@ -61,12 +61,12 @@ export const IsolatedEnabledBadge = ({ sx={{ lineHeight: '0.75rem', }} - color={theme.palette.warning.main} + color="warning.main" {...typographyProps} > Isolated - +
); @@ -119,7 +119,7 @@ const IsolationModeTooltipTemplate = ({ content }: { content: ReactNode }) => { return ( {content} - + Learn more in our{' '} diff --git a/src/components/lists/ListHeaderTitle.tsx b/src/components/lists/ListHeaderTitle.tsx index d553eaf82a..cde3ddeca6 100644 --- a/src/components/lists/ListHeaderTitle.tsx +++ b/src/components/lists/ListHeaderTitle.tsx @@ -1,6 +1,7 @@ import { Box, Typography } from '@mui/material'; import { ReactNode } from 'react'; import { useRootStore } from 'src/store/root'; +import { figVars } from 'src/utils/figmaColors'; import { MARKETS } from '../../utils/events'; @@ -40,7 +41,7 @@ export const ListHeaderTitle = ({ (!!onClick ? onClick() : !!sortKey && handleSorting(sortKey))} sx={{ @@ -55,32 +56,28 @@ export const ListHeaderTitle = ({ ({ + sx={{ width: 0, height: 0, borderStyle: 'solid', borderWidth: '0 4px 4px 4px', borderColor: `transparent transparent ${ - sortName === sortKey && sortDesc - ? theme.palette.text.secondary - : theme.palette.divider + sortName === sortKey && sortDesc ? figVars['fg-2'] : figVars['border-2'] } transparent`, mb: 0.5, - })} + }} /> ({ + sx={{ width: 0, height: 0, borderStyle: 'solid', borderWidth: '4px 4px 0 4px', borderColor: `${ - sortName === sortKey && !sortDesc - ? theme.palette.text.secondary - : theme.palette.divider + sortName === sortKey && !sortDesc ? figVars['fg-2'] : figVars['border-2'] } transparent transparent transparent`, - })} + }} /> )} diff --git a/src/components/lists/ListHeaderWrapper.tsx b/src/components/lists/ListHeaderWrapper.tsx index 3ee6be2472..d864fca819 100644 --- a/src/components/lists/ListHeaderWrapper.tsx +++ b/src/components/lists/ListHeaderWrapper.tsx @@ -19,9 +19,9 @@ export const ListHeaderWrapper = ({ px = 4, children, ...rest }: ListHeaderWrapp position: 'sticky', top: 0, zIndex: 100, - bgcolor: 'background.paper', + bgcolor: 'surface-elevated', borderBottom: '1px solid', - borderColor: 'divider', + borderColor: 'border-0', ...rest.sx, }} > diff --git a/src/components/lists/ListItem.tsx b/src/components/lists/ListItem.tsx index 91505532d3..75ee399022 100644 --- a/src/components/lists/ListItem.tsx +++ b/src/components/lists/ListItem.tsx @@ -19,9 +19,9 @@ export const ListItem = ({ children, minHeight = 71, px = 4, button, ...rest }: px, '&:not(:last-child)': { borderBottom: '1px solid', - borderColor: 'divider', + borderColor: 'border-0', }, - ...(button ? { '&:hover': { bgcolor: 'action.hover' } } : {}), + ...(button ? { '&:hover': { bgcolor: 'button-hover' } } : {}), ...rest.sx, }} > diff --git a/src/components/lists/ListMobileItem.tsx b/src/components/lists/ListMobileItem.tsx index c16f6102b8..6ae64bbc30 100644 --- a/src/components/lists/ListMobileItem.tsx +++ b/src/components/lists/ListMobileItem.tsx @@ -65,7 +65,7 @@ export const ListMobileItem = ({ {name} - + {symbol} {isIsolated && ( diff --git a/src/components/lists/ListWrapper.tsx b/src/components/lists/ListWrapper.tsx index 29f5bce23f..6f595188c4 100644 --- a/src/components/lists/ListWrapper.tsx +++ b/src/components/lists/ListWrapper.tsx @@ -96,12 +96,12 @@ export const ListWrapper = ({ return ( ({ + { mt: withTopMargin ? 4 : 0, borderRadius: '10px', - backgroundColor: theme.palette.fig['bg-max'], - boxShadow: figSurfaceShadow(theme.palette.fig, 'shadow-stroke-1'), - }), + backgroundColor: 'surface-elevated', + boxShadow: figSurfaceShadow('shadow-stroke-1'), + }, ...(paperSx ? (Array.isArray(paperSx) ? paperSx : [paperSx]) : []), ]} > @@ -139,7 +139,7 @@ export const ListWrapper = ({ span: { width: '14px', height: '2px', - bgcolor: 'text.secondary', + bgcolor: 'fg-2', position: 'relative', ml: 1, '&:after': { @@ -147,7 +147,7 @@ export const ListWrapper = ({ position: 'absolute', width: '14px', height: '2px', - bgcolor: 'text.secondary', + bgcolor: 'fg-2', transition: 'all 0.2s ease', transform: collapsed ? 'rotate(90deg)' : 'rotate(0)', opacity: collapsed ? 1 : 0, @@ -164,7 +164,7 @@ export const ListWrapper = ({ } }} > - + {collapsed ? Show : Hide} diff --git a/src/components/primitives/BasicModal.tsx b/src/components/primitives/BasicModal.tsx index 8bd2567ab1..ee010a03b8 100644 --- a/src/components/primitives/BasicModal.tsx +++ b/src/components/primitives/BasicModal.tsx @@ -86,10 +86,7 @@ export const BasicModal = ({ onClick={handleClose} data-cy={'close-button'} > - ({ fontSize: '24px', color: theme.palette.fig['fg-3'] })} - /> + )} diff --git a/src/components/primitives/FormattedNumber.tsx b/src/components/primitives/FormattedNumber.tsx index d5651b0b74..28937ddd96 100644 --- a/src/components/primitives/FormattedNumber.tsx +++ b/src/components/primitives/FormattedNumber.tsx @@ -123,7 +123,7 @@ export function FormattedNumber({ component="span" sx={{ mr: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'text.secondary'} + color={symbolsColor || 'fg-2'} > {'<'} @@ -133,7 +133,7 @@ export function FormattedNumber({ component="span" sx={{ mr: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'text.secondary'} + color={symbolsColor || 'fg-2'} > $ @@ -158,7 +158,7 @@ export function FormattedNumber({ component="span" sx={{ ml: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'text.secondary'} + color={symbolsColor || 'fg-2'} > % @@ -168,7 +168,7 @@ export function FormattedNumber({ component="span" sx={{ ml: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'text.secondary'} + color={symbolsColor || 'fg-2'} > {symbol}
diff --git a/src/components/primitives/TypographyGradient.tsx b/src/components/primitives/TypographyGradient.tsx index 48c033ef91..00290e22b2 100644 --- a/src/components/primitives/TypographyGradient.tsx +++ b/src/components/primitives/TypographyGradient.tsx @@ -2,15 +2,7 @@ import { Typography, TypographyProps } from '@mui/material'; export const TypographyGradient = ({ ...rest }: TypographyProps) => { return ( - ({ - color: 'transparent', - backgroundClip: 'text !important', - webkitTextFillColor: 'transparent', - background: theme.palette.gradients.aaveGradient, - })} - {...rest} - > + {rest.children} ); diff --git a/src/components/transactions/AssetInput.tsx b/src/components/transactions/AssetInput.tsx index 18635ee701..bcd6cbc3e7 100644 --- a/src/components/transactions/AssetInput.tsx +++ b/src/components/transactions/AssetInput.tsx @@ -19,6 +19,7 @@ import React, { ReactNode } from 'react'; import NumberFormat, { NumberFormatProps } from 'react-number-format'; import { TrackEventProps } from 'src/store/analyticsSlice'; import { useRootStore } from 'src/store/root'; +import { figVars } from 'src/utils/figmaColors'; import { CapType } from '../caps/helper'; import { AvailableTooltip } from '../infoTooltips/AvailableTooltip'; @@ -125,18 +126,16 @@ export const AssetInput = ({ return ( - - {inputTitle ? inputTitle : Amount} - + {inputTitle ? inputTitle : Amount} {capType && } ({ - border: `1px solid ${theme.palette.divider}`, + sx={{ + border: `1px solid ${figVars['border-2']}`, borderRadius: '6px', overflow: 'hidden', - })} + }} > {loading ? ( @@ -181,9 +180,9 @@ export const AssetInput = ({ p: 0, left: 8, zIndex: 1, - color: 'text.muted', + color: 'fg-3', '&:hover': { - color: 'text.secondary', + color: 'fg-2', }, }} onClick={() => { @@ -243,7 +242,7 @@ export const AssetInput = ({ }, '&.AssetInput__select .MuiOutlinedInput-notchedOutline': { display: 'none' }, '&.AssetInput__select .MuiSelect-icon': { - color: 'text.primary', + color: 'fg-1', right: '0%', }, }} @@ -262,7 +261,7 @@ export const AssetInput = ({ aToken={asset.aToken} sx={{ mr: 2, ml: 4 }} /> - + {symbol} @@ -305,22 +304,22 @@ export const AssetInput = ({ compact symbol="USD" variant="secondary12" - color="text.muted" - symbolsColor="text.muted" + color="fg-3" + symbolsColor="fg-3" flexGrow={1} /> )} {asset.balance && onChange && ( <> - + {balanceText && balanceText !== '' ? balanceText : Balance}{' '} {!disableInput && ( @@ -345,8 +344,8 @@ export const AssetInput = ({ {exchangeRateComponent && ( { - const { palette } = useTheme(); - const bridgeLimitTooltip = ( Due to bridging limits, the maximum amount currently available to bridge is{' '} @@ -52,7 +50,7 @@ export const BridgeAmount = ({ amount !== '' && (maxAmountReducedDueToBridgeLimit || maxAmountReducedDueToRateLimit) ? ( + Amount } diff --git a/src/components/transactions/Bridge/BridgeDestinationInput.tsx b/src/components/transactions/Bridge/BridgeDestinationInput.tsx index b87fd36ecb..14df128283 100644 --- a/src/components/transactions/Bridge/BridgeDestinationInput.tsx +++ b/src/components/transactions/Bridge/BridgeDestinationInput.tsx @@ -10,6 +10,7 @@ import { import { useEffect, useState } from 'react'; import { useIsContractAddress } from 'src/hooks/useIsContractAddress'; import { resolveEnsAddress } from 'src/utils/ensClient'; +import { figVars } from 'src/utils/figmaColors'; import { isAddress } from 'viem'; export const BridgeDestinationInput = ({ @@ -75,7 +76,7 @@ export const BridgeDestinationInput = ({ return ( - + To @@ -100,7 +101,7 @@ export const BridgeDestinationInput = ({ } labelPlacement="start" label={ - + Use connected account } @@ -113,13 +114,13 @@ export const BridgeDestinationInput = ({ disabled={useConnectedAccount || fetchingIsContractAddress} onChange={(e) => setDestinationAccount(e.target.value)} placeholder={t`Enter ETH address or ENS`} - sx={(theme) => ({ + sx={{ height: '44px', px: 2, - border: `1px solid ${theme.palette.divider}`, + border: `1px solid ${figVars['border-2']}`, borderRadius: '6px', overflow: 'hidden', - })} + }} endAdornment={ validatingENS || fetchingIsContractAddress ? ( diff --git a/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx b/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx index 5744d104f1..80e41a94d0 100644 --- a/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx +++ b/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx @@ -48,7 +48,7 @@ export const BridgeFeeTokenSelector = ({ href="https://docs.chain.link/ccip/billing" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > Learn more @@ -119,7 +119,7 @@ export const BridgeFeeTokenSelector = ({ {!bridgeFeeFormatted && !loading ? ( - + ) : loading ? ( ) : ( @@ -137,7 +137,7 @@ export const BridgeFeeTokenSelector = ({ variant="helperText" compact symbol="USD" - color="text.secondary" + color="fg-2" sx={{ position: 'absolute', top: '20px' }} /> diff --git a/src/components/transactions/Bridge/BridgeModalContent.tsx b/src/components/transactions/Bridge/BridgeModalContent.tsx index 7fa1f5263d..6582782081 100644 --- a/src/components/transactions/Bridge/BridgeModalContent.tsx +++ b/src/components/transactions/Bridge/BridgeModalContent.tsx @@ -314,7 +314,7 @@ export const BridgeModalContent = () => { href="https://docs.chain.link/ccip/concepts#finality" sx={{ textDecoration: 'underline' }} variant="caption" - color="text.secondary" + color="fg-2" > Learn more @@ -377,7 +377,7 @@ export const BridgeModalContent = () => { /> {!user ? ( - + Please connect your wallet to be able to bridge your tokens. @@ -402,11 +402,11 @@ export const BridgeModalContent = () => { onClick={handleSwapNetworks} sx={{ border: '1px solid', - borderColor: 'divider', + borderColor: 'border-2', position: 'absolute', - backgroundColor: 'background.paper', + backgroundColor: 'surface-elevated', mt: -1, - '&:hover': { backgroundColor: 'background.surface' }, + '&:hover': { backgroundColor: 'bg-2' }, }} > diff --git a/src/components/transactions/CancelCowOrder/CancelCowOrderModalContent.tsx b/src/components/transactions/CancelCowOrder/CancelCowOrderModalContent.tsx index f4447b068e..67f558c619 100644 --- a/src/components/transactions/CancelCowOrder/CancelCowOrderModalContent.tsx +++ b/src/components/transactions/CancelCowOrder/CancelCowOrderModalContent.tsx @@ -57,7 +57,7 @@ export const CancelCowOrderModalContent = ({ cowOrder }: CancelCowOrderModalCont Cancel order - + {isCowSwapSubset(cowOrder) && cowOrder.usedAdapter ? ( This will cancel the order via an on-chain transaction. Note that the order will not diff --git a/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx b/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx index ec09aa1a01..277e03d718 100644 --- a/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx +++ b/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx @@ -357,7 +357,7 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo )} {meritClaimRewards?.claimable && meritClaimRewards.claimable.length > 0 && ( - + {selectedRewardSymbol === RewardSymbol.ALL ? ( Claiming all protocol rewards and merit rewards together ) : selectedRewardSymbol === RewardSymbol.MERIT_ALL || @@ -425,7 +425,7 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo variant="helperText" compact symbol="USD" - color="text.secondary" + color="fg-2" /> ))} @@ -477,7 +477,7 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo variant="helperText" compact symbol="USD" - color="text.secondary" + color="fg-2" /> ))} @@ -531,7 +531,7 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo variant="helperText" compact symbol="USD" - color="text.secondary" + color="fg-2" /> ))} @@ -575,7 +575,7 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo variant="helperText" compact symbol="USD" - color="text.secondary" + color="fg-2" /> ))} diff --git a/src/components/transactions/ClaimRewards/RewardsSelect.tsx b/src/components/transactions/ClaimRewards/RewardsSelect.tsx index aaed65f232..b895816bfe 100644 --- a/src/components/transactions/ClaimRewards/RewardsSelect.tsx +++ b/src/components/transactions/ClaimRewards/RewardsSelect.tsx @@ -29,7 +29,7 @@ export const RewardsSelect = ({ }: RewardsSelectProps) => { return ( - + Rewards to claim @@ -40,42 +40,42 @@ export const RewardsSelect = ({ width: '100%', height: '44px', borderRadius: '6px', - borderColor: 'divider', + borderColor: 'border-2', outline: 'none !important', - color: 'text.primary', + color: 'fg-1', '.MuiOutlinedInput-input': { backgroundColor: 'transparent', }, '&:hover .MuiOutlinedInput-notchedOutline, .MuiOutlinedInput-notchedOutline': { - borderColor: 'divider', + borderColor: 'border-2', outline: 'none !important', borderWidth: '1px', }, '&.Mui-focused .MuiOutlinedInput-notchedOutline': { - borderColor: 'divider', + borderColor: 'border-2', borderWidth: '1px', }, - '.MuiSelect-icon': { color: 'text.primary' }, + '.MuiSelect-icon': { color: 'fg-1' }, }} native={false} renderValue={(reward) => { if (reward === RewardSymbol.ALL) { return ( - + Claim all rewards ); } if (reward === RewardSymbol.MERIT_ALL) { return ( - + Claim all merit rewards ); } if (reward === RewardSymbol.PROTOCOL_ALL) { return ( - + Claim all protocol rewards ); @@ -94,7 +94,7 @@ export const RewardsSelect = ({ return ( - {selected.symbol} + {selected.symbol} ); }} @@ -102,7 +102,7 @@ export const RewardsSelect = ({ All Rewards @@ -120,7 +120,7 @@ export const RewardsSelect = ({ Merit Rewards @@ -159,7 +159,7 @@ export const RewardsSelect = ({ component="span" sx={{ display: 'inline-flex', alignItems: 'center' }} variant="caption" - color="text.muted" + color="fg-3" > ~ @@ -168,8 +168,8 @@ export const RewardsSelect = ({ variant="caption" compact symbol="USD" - symbolsColor="text.muted" - color="text.muted" + symbolsColor="fg-3" + color="fg-3" />
@@ -182,7 +182,7 @@ export const RewardsSelect = ({ Protocol Rewards @@ -191,7 +191,7 @@ export const RewardsSelect = ({ ...(rewards.length > 1 ? [ - + Claim all protocol rewards , @@ -208,7 +208,7 @@ export const RewardsSelect = ({ component="span" sx={{ display: 'inline-flex', alignItems: 'center' }} variant="caption" - color="text.muted" + color="fg-3" > ~ @@ -217,8 +217,8 @@ export const RewardsSelect = ({ variant="caption" compact symbol="USD" - symbolsColor="text.muted" - color="text.muted" + symbolsColor="fg-3" + color="fg-3" />
diff --git a/src/components/transactions/Emode/EmodeModalContent.tsx b/src/components/transactions/Emode/EmodeModalContent.tsx index 9133e59a8f..b548725c91 100644 --- a/src/components/transactions/Emode/EmodeModalContent.tsx +++ b/src/components/transactions/Emode/EmodeModalContent.tsx @@ -400,12 +400,12 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) => - + Asset category {selectedEmode.isolated && ( <> - + - width: '100%', height: '44px', borderRadius: '6px', - borderColor: 'divider', + borderColor: 'border-2', outline: 'none !important', - color: 'text.primary', + color: 'fg-1', '.MuiOutlinedInput-input': { backgroundColor: 'transparent', }, '&:hover .MuiOutlinedInput-notchedOutline, .MuiOutlinedInput-notchedOutline': { - borderColor: 'divider', + borderColor: 'border-2', outline: 'none !important', borderWidth: '1px', }, '&.Mui-focused .MuiOutlinedInput-notchedOutline': { - borderColor: 'divider', + borderColor: 'border-2', borderWidth: '1px', }, - '.MuiSelect-icon': { color: 'text.primary' }, + '.MuiSelect-icon': { color: 'fg-1' }, }} value={selectedEmode.id} onChange={(e) => selectEMode(Number(e.target.value))} @@ -476,7 +476,7 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) => )} {!emode.available && ( - + Unavailable )} @@ -528,7 +528,7 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) =>
)} {!emode.available && ( - + Unavailable )} diff --git a/src/components/transactions/FlowCommons/BaseCancelled.tsx b/src/components/transactions/FlowCommons/BaseCancelled.tsx index c0d0a568ff..5cb4cec877 100644 --- a/src/components/transactions/FlowCommons/BaseCancelled.tsx +++ b/src/components/transactions/FlowCommons/BaseCancelled.tsx @@ -14,7 +14,7 @@ export type BaseWaitingTxViewProps = { }; const ExtLinkIcon = () => ( - + ); @@ -71,7 +71,7 @@ export const BaseCancelledView = ({ @@ -295,35 +311,20 @@ export function AppHeader() { diff --git a/src/layouts/SettingsMenu.tsx b/src/layouts/SettingsMenu.tsx index c323431b32..8296864dd9 100644 --- a/src/layouts/SettingsMenu.tsx +++ b/src/layouts/SettingsMenu.tsx @@ -73,7 +73,7 @@ export function SettingsMenu() { onClick={handleSettingsClick} sx={{ p: '0 0.5rem', minWidth: 'unset', ml: 2 }} > - ({ fontSize: '20px', color: theme.palette.fig['fg-2'] })} /> + - + Global settings diff --git a/src/layouts/SupportModal.tsx b/src/layouts/SupportModal.tsx index 21a8dfbdcf..92ac117735 100644 --- a/src/layouts/SupportModal.tsx +++ b/src/layouts/SupportModal.tsx @@ -203,20 +203,11 @@ export const SupportModal = () => { ) : ( - + Support - + Let us know how we can help you. You may also consider joining our community @@ -224,7 +215,7 @@ export const SupportModal = () => { - + Email @@ -246,7 +237,7 @@ export const SupportModal = () => { }} /> - + Country (optional) @@ -274,7 +265,7 @@ export const SupportModal = () => { )} /> - + Inquiry @@ -297,7 +288,7 @@ export const SupportModal = () => { /> {account && !hasOptedIn && ( - + { } label={ - + Share my wallet address to help the support team resolve my issue diff --git a/src/layouts/TopBarNotify.tsx b/src/layouts/TopBarNotify.tsx index 2a208531b1..33c3f63c74 100644 --- a/src/layouts/TopBarNotify.tsx +++ b/src/layouts/TopBarNotify.tsx @@ -125,7 +125,7 @@ export default function TopBarNotify({ campaigns, routeCampaigns }: TopBarNotify component="header" sx={{ padding: `8px, 12px, 8px, 12px`, - background: (theme) => theme.palette.gradients.newGradient, + bgcolor: 'purple-1', display: 'flex', alignItems: 'center', justifyContent: 'space-between', diff --git a/src/layouts/components/DarkModeSwitcher.tsx b/src/layouts/components/DarkModeSwitcher.tsx index 2604525a18..3e3085a850 100644 --- a/src/layouts/components/DarkModeSwitcher.tsx +++ b/src/layouts/components/DarkModeSwitcher.tsx @@ -1,10 +1,9 @@ import { Trans } from '@lingui/macro'; -import { ListItem, MenuItem, useTheme } from '@mui/material'; -import { useContext } from 'react'; +import { ListItem, MenuItem } from '@mui/material'; +import { useColorScheme } from '@mui/material/styles'; import { useRootStore } from 'src/store/root'; import { SETTINGS } from 'src/utils/events'; -import { ColorModeContext } from '../AppGlobalStyles'; import { SettingSwitchRow } from './SettingSwitchRow'; interface DarkModeSwitcherProps { @@ -12,17 +11,20 @@ interface DarkModeSwitcherProps { } export const DarkModeSwitcher = ({ component = ListItem }: DarkModeSwitcherProps) => { - const theme = useTheme(); - const colorMode = useContext(ColorModeContext); + const { mode, systemMode, setMode } = useColorScheme(); const trackEvent = useRootStore((store) => store.trackEvent); + // `mode` can be 'system'; resolve it to the concrete scheme for the toggle state. + const resolvedMode = (mode === 'system' ? systemMode : mode) ?? 'light'; + const isDark = resolvedMode === 'dark'; + return ( Dark mode} - checked={theme.palette.mode === 'dark'} - onClick={colorMode.toggleColorMode} - onSwitchClick={() => trackEvent(SETTINGS.DARK_MODE, { mode: theme.palette.mode })} + checked={isDark} + onClick={() => setMode(isDark ? 'light' : 'dark')} + onSwitchClick={() => trackEvent(SETTINGS.DARK_MODE, { mode: resolvedMode })} /> ); }; diff --git a/src/layouts/components/LanguageSwitcher.tsx b/src/layouts/components/LanguageSwitcher.tsx index 5edb8ca82d..03a61fb70d 100644 --- a/src/layouts/components/LanguageSwitcher.tsx +++ b/src/layouts/components/LanguageSwitcher.tsx @@ -30,17 +30,13 @@ export const LanguageListItem = ({ component = ListItem, onClick }: LanguageList const { i18n } = useLingui(); return ( - + Language {i18n._(langMap[i18n.locale as keyof typeof langMap])}{' '} - + @@ -55,7 +51,7 @@ export const LanguagesList = ({ component = ListItem, onClick }: LanguageListIte <> dynamicActivateLanguage(lang)} sx={{ - color: { xs: '#F1F1F3', md: 'text.primary' }, + color: { xs: '#F1F1F3', md: 'fg-1' }, '.MuiListItemIcon-root': { minWidth: 'unset' }, '.MuiMenuItemIcon-root': { minWidth: 'unset' }, }} @@ -95,7 +91,7 @@ export const LanguagesList = ({ component = ListItem, onClick }: LanguageListIte {i18n._(langMap[lang as keyof typeof langMap])} {lang === i18n.locale && ( - + diff --git a/src/layouts/components/NavItems.tsx b/src/layouts/components/NavItems.tsx index f3578a9949..fefebe4153 100644 --- a/src/layouts/components/NavItems.tsx +++ b/src/layouts/components/NavItems.tsx @@ -4,7 +4,7 @@ import { Button, List, ListItem, Typography, useMediaQuery, useTheme } from '@mu import * as React from 'react'; import { useRootStore } from 'src/store/root'; import { NAV_BAR } from 'src/utils/events'; -import { figmaDark } from 'src/utils/figmaColors'; +import { onAccent } from 'src/utils/figmaColors'; import { useShallow } from 'zustand/shallow'; import { Link, ROUTES } from '../../components/primitives/Link'; @@ -57,7 +57,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={item.link} variant="h2" - color={figmaDark['fg-1']} + color={onAccent} sx={{ width: '100%', p: 4 }} onClick={() => handleClick(item.title, true)} > @@ -68,7 +68,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} onClick={() => handleClick(item.title, false)} href={item.link} - sx={(theme) => navLinkSx(theme, '2.25rem 0.88rem')} + sx={navLinkSx('2.25rem 0.88rem')} > {i18n._(item.title)} @@ -88,7 +88,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={ROUTES.sGHO} variant="h2" - color={figmaDark['fg-1']} + color={onAccent} sx={{ width: '100%', p: 4 }} onClick={() => handleClick('sGHO', true)} > @@ -99,7 +99,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} onClick={() => handleClick('sGHO', false)} href={ROUTES.sGHO} - sx={(theme) => navLinkSx(theme, '2.25rem 0.88rem')} + sx={navLinkSx('2.25rem 0.88rem')} > Savings @@ -119,7 +119,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={ROUTES.staking} variant="h2" - color={figmaDark['fg-1']} + color={onAccent} sx={{ width: '100%', p: 4 }} onClick={() => handleClick('Staking', true)} > @@ -143,7 +143,7 @@ export const NavItems = ({ setOpen }: NavItemsProps) => { component={Link} href={ROUTES.safetyModule} variant="h2" - color={figmaDark['fg-1']} + color={onAccent} sx={{ width: '100%', p: 4 }} onClick={() => handleClick('Safety Module', true)} > diff --git a/src/layouts/components/SettingSwitchRow.tsx b/src/layouts/components/SettingSwitchRow.tsx index 0e4ad96bbb..3173669bc3 100644 --- a/src/layouts/components/SettingSwitchRow.tsx +++ b/src/layouts/components/SettingSwitchRow.tsx @@ -26,7 +26,7 @@ export const SettingSwitchRow = ({ onClick={onClick} sx={{ cursor: 'pointer', - color: { xs: '#F1F1F3', md: 'text.primary' }, + color: { xs: '#F1F1F3', md: 'fg-1' }, py: { xs: 1.5, md: 2 }, }} > diff --git a/src/layouts/components/StakingMenu.tsx b/src/layouts/components/StakingMenu.tsx index 3c6715dad1..aa962c704f 100644 --- a/src/layouts/components/StakingMenu.tsx +++ b/src/layouts/components/StakingMenu.tsx @@ -6,7 +6,7 @@ import MenuItem from '@mui/material/MenuItem'; import React from 'react'; import { useRootStore } from 'src/store/root'; import { NAV_BAR } from 'src/utils/events'; -import { figmaDark } from 'src/utils/figmaColors'; +import { onAccent } from 'src/utils/figmaColors'; import { Link, ROUTES } from '../../components/primitives/Link'; import { navLinkSx } from './navLinkSx'; @@ -44,7 +44,7 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { component={Link} href={ROUTES.staking} variant="h2" - color={figmaDark['fg-1']} + color={onAccent} sx={{ width: '100%', p: 4 }} onClick={() => handleMenuItemClick('Staking')} > @@ -54,7 +54,7 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { component={Link} href={ROUTES.safetyModule} variant="h2" - color={figmaDark['fg-1']} + color={onAccent} sx={{ width: '100%', p: 4, pl: 6 }} onClick={() => handleMenuItemClick('Safety Module')} > @@ -73,7 +73,7 @@ export function StakingMenu({ isMobile = false, onClose }: StakingMenuProps) { aria-expanded={open ? 'true' : undefined} aria-haspopup="true" onClick={handleClick} - sx={(theme) => navLinkSx(theme, '2.25rem 0.88rem')} + sx={navLinkSx('2.25rem 0.88rem')} > Staking diff --git a/src/layouts/components/navLinkSx.ts b/src/layouts/components/navLinkSx.ts index 3617d2521b..cab18b410c 100644 --- a/src/layouts/components/navLinkSx.ts +++ b/src/layouts/components/navLinkSx.ts @@ -1,22 +1,23 @@ import { Theme } from '@mui/material'; import { SystemStyleObject } from '@mui/system'; +import { figVars } from 'src/utils/figmaColors'; /** * Shared style for the top-nav links — the NavItems entries and the Staking menu trigger. - * `fig-3` by default, `fig-1` when active or hovered (no background change), plus an + * `fg-3` by default, `fg-1` when active or hovered (no background change), plus an * animated underline. Only the padding differs between call sites. */ -export const navLinkSx = (theme: Theme, padding: string): SystemStyleObject => ({ - color: theme.palette.fig['fg-3'], +export const navLinkSx = (padding: string): SystemStyleObject => ({ + color: figVars['fg-3'], letterSpacing: '-0.00563rem', p: padding, position: 'relative', '.active&': { - color: theme.palette.fig['fg-1'], + color: figVars['fg-1'], }, '&:hover': { backgroundColor: 'transparent', - color: theme.palette.fig['fg-1'], + color: figVars['fg-1'], }, '.active&:after, &:hover&:after': { transform: 'scaleX(1)', @@ -30,7 +31,7 @@ export const navLinkSx = (theme: Theme, padding: string): SystemStyleObject Date: Tue, 21 Jul 2026 19:06:03 +0900 Subject: [PATCH 28/39] feat(theme): scale buttons and dropdown triggers on press Buttons, icon and toggle buttons scale to 0.99 on :active (not disabled) via a shared fragment. MarketSwitcher's custom Box trigger gets the same press feedback inline. --- src/components/MarketSwitcher.tsx | 7 ++++++ src/locales/el/messages.js | 2 +- src/locales/en/messages.js | 2 +- src/locales/en/messages.po | 4 ---- src/locales/es/messages.js | 2 +- src/locales/fr/messages.js | 2 +- src/utils/theme.tsx | 39 ++++++++++++++++++++++++++++++- 7 files changed, 49 insertions(+), 9 deletions(-) diff --git a/src/components/MarketSwitcher.tsx b/src/components/MarketSwitcher.tsx index 6b7140ec4b..f6b1361d07 100644 --- a/src/components/MarketSwitcher.tsx +++ b/src/components/MarketSwitcher.tsx @@ -24,6 +24,7 @@ import { useRootStore } from 'src/store/root'; import { BaseNetworkConfig } from 'src/ui-config/networksConfig'; import { DASHBOARD } from 'src/utils/events'; import { onAccent } from 'src/utils/figmaColors'; +import { motion } from 'src/utils/motion'; import { useShallow } from 'zustand/shallow'; import { @@ -772,6 +773,12 @@ export const MarketSwitcher = () => { cursor: 'pointer', display: 'flex', flexDirection: 'column', + // Press feedback to match buttons/dropdown triggers (this trigger is a custom Box, + // not a MUI Button, so it isn't covered by the theme-level rule). + transition: `transform ${motion.duration.hover}ms`, + '&:active': { + transform: 'scale(0.99)', + }, }} > diff --git a/src/locales/el/messages.js b/src/locales/el/messages.js index b28dd87dd2..290a5eeb2f 100644 --- a/src/locales/el/messages.js +++ b/src/locales/el/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Εάν ΔΕΝ ξεκλειδώσετε εντός \",[\"0\"],\" του παραθύρου ξεκλειδώματος, θα πρέπει να ενεργοποιήσετε ξανά τη διαδικασία ψύξης.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Η συμμετοχή σε αυτό το αποθεματικό \",[\"symbol\"],\" δίνει ετήσιες ανταμοιβές.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Ανώτατο όριο δανεισμού\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"ΣΥΧΝΕΣ ΕΡΩΤΗΣΕΙΣ\",\"/yNlZf\":\"Ο σταθερός δανεισμός δεν είναι ενεργοποιημένος\",\"/yQcJM\":\"Συνολική αξία\",\"00AB2i\":\"Ο χρήστης δεν δανείστηκε το καθορισμένο νόμισμα\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να προμηθεύσετε σε αυτό το αποθεματικό. Μπορείτε να προμηθεύσετε το υπόλοιπο του πορτοφολιού σας μέχρι να επιτευχθεί το ανώτατο όριο προμηθειών.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Παρακαλούμε συνδέστε ένα πορτοφόλι για να δείτε τις προσωπικές σας πληροφορίες εδώ.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Ρευστοποίηση <0/> κατώτατο όριο\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Προβολή λεπτομερειών\",\"2FYpfJ\":\"Περισσότερα\",\"2O3qp5\":\"Διαθέσιμη ρευστότητα\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Ο σταθερός δανεισμός είναι ενεργοποιημένος\",\"34Qfwy\":\"Υπέρβαση του ανώτατου ορίου δανεισμού\",\"39eQRj\":[\"Δανεισμός \",[\"symbol\"]],\"3BL1xB\":\"Σύνολο παρεχόμενων\",\"3K0oMo\":\"Υπολειπόμενη προσφορά\",\"3MoZhl\":\"Δεν υπάρχουν επαρκείς εξασφαλίσεις για την κάλυψη ενός νέου δανείου\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Προσφορά \",[\"symbol\"]],\"3mXg0z\":\"Μέγιστο LTV\",\"3q3mFy\":\"Αποπληρωμή\",\"3qsjtp\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα παρεχόμενα περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"3rL+os\":\"Μπορείτε να αποσύρετε τα περιουσιακά σας στοιχεία από τη Μονάδα Ασφαλείας μόνο αφού λήξει η περίοδος αναμονής και το παράθυρο ξεκλειδώματος είναι ενεργό.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Αποτελέσματα ψηφοφορίας\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"ΜΕΓΙΣΤΟ\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"τεκμηρίωση\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο της προσφοράς του. Μόνο \",[\"messageValue\"],\" μπορεί να παρασχεθεί σε αυτή την αγορά.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Η προσφορά μεταβλητού χρέους δεν είναι μηδενική\",\"5che++\":\"Για να ζητήσετε πρόσβαση σε αυτή την αδειοδοτημένη αγορά, επισκεφθείτε την ιστοσελίδα: <0>Όνομα Παρόχου Πρόσβασης\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Απαιτούμενη δράση επιδότησης\",\"5rsnKT\":\"Διαθέσιμες ανταμοιβές\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Επισκόπηση\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Εγγύηση\",\"65A04M\":\"Ισπανικά\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Αποπληρωμή \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Ψύξη...\",\"6bxci/\":\"Δύναμη ψήφου\",\"6f8S68\":\"Αγορές\",\"6g1gi0\":\"Προτάσεις\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Αλλαγή Δικτύου\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Συντελεστής υγείας\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Επιτεύχθηκε\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Διεκδικήστε τα όλα\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Ταμπλό\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Προσοχή - Είστε πολύ κοντά στην ρευστοποίηση. Εξετάστε το ενδεχόμενο να καταθέσετε περισσότερες εγγυήσεις ή να εξοφλήσετε κάποιες από τις δανειακές σας θέσεις\",\"87pUEW\":[\"Το πορτοφόλι σας \",[\"name\"],\" είναι άδειο. Αγοράστε ή μεταφέρετε περιουσιακά στοιχεία.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"Όλες οι προτάσεις\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Μη έγκυρο ποσό για νομισματοκοπία\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Αποσυνδέστε το πορτοφόλι\",\"8Zz7s5\":\"περιουσιακά στοιχεία\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Ποσοστό χρησιμοποίησης\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Εμφάνιση\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Εισέρχεστε σε λειτουργία απομόνωσης\",\"9CDK3/\":[\"Ο δανεισμός δεν είναι επί του παρόντος διαθέσιμος για \",[\"0\"],\".\"],\"9GIj3z\":\"Μέγεθος Αποθεματικού\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Απαρτία\",\"9QHoGr\":\"Τρέχουσες ψήφοι\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο δανεισμού του. Υπάρχει μόνο \",[\"messageValue\"],\" διαθέσιμο για δανεισμό από αυτή την αγορά.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Αυτό το περιουσιακό στοιχείο έχει φτάσει στο όριο της προσφοράς του. Τίποτα δεν είναι διαθέσιμο για προμήθεια από αυτή την αγορά.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Δεδομένου ότι πρόκειται για ένα δοκιμαστικό δίκτυο, μπορείτε να αποκτήσετε οποιοδήποτε από τα περιουσιακά στοιχεία αν έχετε ETH στο πορτοφόλι σας\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Τα δάνεια σας\",\"AV7cGz\":\"Αναθεώρηση λεπτομερειών έγκρισης συναλλαγής\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Η δύναμη δανεισμού και τα περιουσιακά στοιχεία είναι περιορισμένα λόγω της λειτουργίας απομόνωσης.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Η χρήση εγγύησης είναι περιορισμένη λόγω της λειτουργίας απομόνωσης. <0>Μάθετε περισσότερα\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Κατηγορία περιουσιακών στοιχείων\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Βρύση\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Μεγιστο\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Διεκδίκηση \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Βρύση\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Η εγγύηση είναι (ως επί το πλείστον) το ίδιο νόμισμα που δανείζεται\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"Το υποκείμενο περιουσιακό στοιχείο δεν μπορεί να διασωθεί\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave ανά μήνα\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Εξασφάλιση\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Απενεργοποιημένο\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Ανάληψη \",[\"symbol\"]],\"EdQY6l\":\"Κανένα\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Μάθετε περισσότερα.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Δανεισμός χρησιμοποιημένης ισχύος\",\"FPKEug\":\"Η λειτουργία δεν υποστηρίζεται\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"ενεργοποίηση\",\"Fjw9N+\":\"Περιουσιακά στοιχεία προς προμήθεια\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Περιουσιακά Στοιχεία\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"τελειώνει\",\"GtP2hp\":[\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη λειτουργία Αποδοτικότητας (E-Mode) για την κατηγορία \",[\"0\"],\". Για να διαχειριστείτε τις κατηγορίες E-Mode επισκεφθείτε τον <0>Πίνακα ελέγχου.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"η\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Παράθυρο ξεκλειδώματος\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Το συνολικό ποσό των περιουσιακών σας στοιχείων σε δολάρια ΗΠΑ που μπορούν να χρησιμοποιηθούν ως εγγύηση για δανεισμό περιουσιακών στοιχείων.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Περίοδος ψύξης\",\"IaA40H\":\"Ρευστοποίηση στο\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Δεν μπορείτε να χρησιμοποιήσετε αυτό το νόμισμα ως εγγύηση\",\"JYKRJS\":\"Κλειδώστε\",\"JZMxX0\":\"Δεν υπάρχει αρκετό υπόλοιπο στο πορτοφόλι σας\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Υπόλοιπο πορτοφολιού\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"Αυτό αντιπροσωπεύει το κατώτατο όριο στο οποίο μια θέση δανεισμού θα θεωρηθεί υποεγγυημένη και θα υπόκειται σε ρευστοποίηση για κάθε εγγύηση. Για παράδειγμα, εάν μια εγγύηση έχει κατώτατο όριο ρευστοποίησης 80%, αυτό σημαίνει ότι η θέση θα ρευστοποιηθεί όταν η αξία του χρέους ανέρχεται στο 80% της αξίας της εγγύησης.\",\"KYAjf3\":\"Απομονωμένο\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Λήγει\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Λάθος δίκτυο\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Κλείδωμα\",\"KuBTQq\":\"Εισάγετε διεύθυνση ETH\",\"KvG1xW\":\"Διεκδίκηση\",\"L+8Lzs\":\"Τρέχον LTV\",\"L+qiq+\":\"Αγορά\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Δεν υπάρχει δικαίωμα ψήφου\",\"LL0zks\":\"Μπορεί να αποτελέσει εγγύηση\",\"LLdJWu\":\"Διεκδικήσιμο AAVE\",\"LSIpNK\":\"Δεν επιτρέπεται ο δανεισμός και η αποπληρωμή στο ίδιο block\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Διεύθυνση παραλήπτη\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"προβολή κλειδώματος\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, μεταβλητό\",\"MghdTe\":\"Εάν ο συντελεστής υγείας πέσει κάτω από το 1, ενδέχεται να ενεργοποιηθεί η ρευστοποίηση των εγγυήσεών σας.\",\"Mm/DVQ\":\"Ακυρώσατε τη συναλλαγή.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Μη έγκυρη τιμή επιστροφής της συνάρτησης εκτελεστή flashloan\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Εκκρεμεί...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Τίποτα κλειδωμένο\",\"Nh9DAo\":[[\"m\"],\"λ\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Υπέρβαση του ανώτατου ορίου νομισματοκοπείου χωρίς αντίκρισμα\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Επισκόπηση πρότασης\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"απενεργοποιημένο\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Ανάληψη\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"Όταν πραγματοποιείται ρευστοποίηση, οι ρευστοποιητές επιστρέφουν έως και το 50% του ανεξόφλητου δανεισμένου ποσού για λογαριασμό του δανειολήπτη. Σε αντάλλαγμα, μπορούν να αγοράσουν τις εξασφαλίσεις με έκπτωση και να κρατήσουν τη διαφορά (ποινή ρευστοποίησης) ως μπόνους.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα δανειακά περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Κατώτατο όριο ρευστοποίησης\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Η ενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση αυξάνει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας. Ωστόσο, μπορεί να ρευστοποιηθεί εάν ο συντελεστής υγείας σας πέσει κάτω από το 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Δεν έχει επιτευχθεί\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Απενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"RMtxNk\":\"Διαφορικό\",\"RNK49r\":\"Μη έγκυρη υπογραφή\",\"RS0o7b\":\"Κατάσταση\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Λεπτομέρειες πρότασης\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Το περιουσιακό στοιχείο δεν περιλαμβάνεται στον κατάλογο\",\"Rj01Fz\":\"Σύνδεσμοι\",\"RmWFEe\":\"Κλείδωμα APR\",\"RtBLm7\":\"Ο συντελεστής υγείας είναι μικρότερος από το όριο ρευστοποίησης\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Ενεργοποιημένο\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Κεφάλαια στην Μονάδα Ασφάλειας\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Σύνολο διαθέσιμων\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Απενεργοποίηση E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Ο πάροχος διευθύνσεων κοινόχρηστων ταμείων δεν είναι εγγεγραμμένος\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Δανεισμός\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Ποινή ρευστοποίησης\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"To περιουσιακό στοιχείο μπορεί να χρησιμοποιηθεί ως εγγύηση μόνο σε λειτουργία απομόνωσης.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος σταθερού επιτοκίου σε αυτό το αποθεματικό\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Το περιουσιακό στοιχείο δεν είναι δανείσιμο σε λειτουργία απομόνωσης\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Λεπτομέρειες\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"Τα κεφάλαια αυτά έχουν δανειστεί και δεν είναι διαθέσιμα για ανάληψη αυτή τη στιγμή.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"Ο δείκτης μέγιστου LTV αντιπροσωπεύει τη μέγιστη δανειοληπτική ικανότητα μιας συγκεκριμένης εγγύησης. Για παράδειγμα, εάν μια εγγύηση έχει LTV 75%, ο χρήστης μπορεί να δανειστεί έως και 0,75 ETH στο κύριο νόμισμα για κάθε 1 ETH αξίας εγγύησης.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Δεν υπάρχουν ανταμοιβές για διεκδίκηση\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Συνδέστε το πορτοφόλι\",\"VMfYUK\":\"Ασφάλεια των κατατεθειμένων εξασφαλίσεών σας έναντι των δανειζόμενων περιουσιακών στοιχείων και της υποκείμενης αξίας τους.\",\"VOAZJh\":\"Σύνολο δανείων\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"ΥΠΕΡ\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Αναθεώρηση λεπτομερειών συναλλαγής\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Τίποτα δεν έχει παρασχεθεί ακόμη\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"Το E-Mode αυξάνει το LTV σας για μια επιλεγμένη κατηγορία περιουσιακών στοιχείων έως και <0/>. <1>Μάθετε περισσότερα\",\"WPWG/y\":\"Κατάσταση & διαμόρφωση αποθεματικού\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"Ο χρήστης δεν μπορεί να κάνει ανάληψη μεγαλύτερη από το διαθέσιμο υπόλοιπο\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Για να δανειστείτε πρέπει να προσκομίσετε οποιοδήποτε περιουσιακό στοιχείο που θα χρησιμοποιηθεί ως εγγύηση.\",\"X/ITG9\":\"Κείμενο σφάλματος αντιγραφής\",\"X3Pp6x\":\"Χρησιμοποιείται ως εγγύηση\",\"X4Zt7j\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή η εφεδρεία βρίσκεται σε παύση\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Θα βγείτε από τη λειτουργία απομόνωσης και άλλα tokens μπορούν πλέον να χρησιμοποιηθούν ως εγγύηση\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"ΨΗΦΙΣΤΕ ΚΑΤΑ\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Ενεργοποίηση E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"Εάν το δάνειο προς αξία υπερβεί το όριο ρευστοποίησης, η παρεχόμενη εγγύηση σας μπορεί να ρευστοποιηθεί.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Δεν τηρήθηκαν οι όροι επανεξισορρόπησης των επιτοκίων\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Διακυβέρνηση Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Λειτουργία αποδοτικότητας (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Μέγιστη περικοπή\",\"ZfUGFb\":\"Πριν από την προμήθεια\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Αξία ρευστοποίησης\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"ενεργοποιημένο\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Χρόνος που απομένει για το ξεκλείδωμα\",\"a5RYZd\":\"Η απενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση επηρεάζει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Ψηφίστε ΚΑΤΑ\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Οι παράμετροι της συστοιχίας που θα έπρεπε να είναι ίσου μήκους δεν είναι\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Δανεισμός APY, μεταβλητό\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Προειδοποίηση περιόδου ψύξης\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Περιουσιακό στοιχείο\",\"bXQ/Og\":\"Μοιραστείτε το στο twitter\",\"bXr0ee\":\"Τα απομονωμένα περιουσιακά στοιχεία έχουν περιορισμένη δανειοληπτική ικανότητα και άλλα περιουσιακά στοιχεία δεν μπορούν να χρησιμοποιηθούν ως εγγύηση.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Το αιτούμενο ποσό είναι μεγαλύτερο από το μέγιστο μέγεθος δανείου στη λειτουργία σταθερού επιτοκίου\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Προσφορά\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Η διεύθυνση δεν είναι συμβόλαιο\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Δεν μπορείτε να αποσύρετε αυτό το ποσό, διότι θα προκληθεί κλήση εγγύησης\",\"cBc+4A\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να δανειστείτε. Μπορείτε να δανειστείτε με βάση την εξασφάλισή σας και μέχρι να επιτευχθεί το ανώτατο όριο δανεισμού.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Λεπτομέρειες κινδύνου\",\"cNT+ij\":\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη Λειτουργία Αποδοτικότητας (E-Mode) και τη λειτουργία Απομόνωσης. Για να διαχειριστείτε τη λειτουργία E-Mode και τη λειτουργία Απομόνωσης, επισκεφθείτε τον <0>Πίνακα ελέγχου.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Ψηφίστε ΥΠΕΡ\",\"ckf7gX\":[\"Αποπληρώνοντας \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Συζήτηση φόρουμ\",\"csDS2L\":\"Διαθέσιμο\",\"cu7Stb\":\"Δεν συμμετείχατε στην παρούσα πρόταση\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Διακυβέρνηση\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Η επικύρωση του Ltv απέτυχε\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"Δεν έχετε αρκετά χρήματα στο πορτοφόλι σας για να αποπληρώσετε ολόκληρο το ποσό. Εάν προχωρήσετε στην αποπληρωμή με το τρέχον ποσό των χρημάτων σας, θα εξακολουθείτε να έχετε μια μικρή θέση δανεισμού στο ταμπλό σας.\",\"dXUQFX\":\"Περιουσιακά στοιχεία προς δανεισμό\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Χρησιμοποίηση εγγυήσεων\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Η δράση απαιτεί ενεργό απόθεμα\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Σύνολο δανεικών\",\"ecqEvn\":\"Το υπόλοιπο των εγγυήσεων είναι 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Ξεκλειδώστε τώρα\",\"evw5ha\":\"Καθαρή αξία\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"Αλλάξατε σε ποσοστό \",[\"0\"]],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Το τρέχον δάνειο προς αξία με βάση τις παρεχόμενες εξασφαλίσεις σας.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Υπόλοιπο\",\"fu1Dbh\":[\"Ανάληψη \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Λειτουργία Testnet\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"Ο χρήστης προσπαθεί να δανειστεί πολλαπλά περιουσιακά στοιχεία, συμπεριλαμβανομένου ενός απομονωμένου περιουσιακού στοιχείου\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Η μηδενική διεύθυνση δεν είναι έγκυρη\",\"gvTM4B\":\"Το καθαρό ΑΡΥ είναι η συνδυασμένη επίδραση όλων των θέσεων προσφοράς και δανεισμού στην καθαρή αξία, συμπεριλαμβανομένων των κινήτρων. Είναι δυνατόν να υπάρχει αρνητικό καθαρό APY εάν το χρεωστικό APY είναι υψηλότερο από το προσφερόμενο APY.\",\"gzcch9\":\"Μη έγκυρη αμοιβή πρωτοκόλλου γέφυρας\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Καθαρό APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"Το % της συνολικής δανειοληπτικής σας δύναμης που χρησιμοποιείται. Αυτό βασίζεται στο ποσό της παρεχόμενης εξασφάλισής σας και στο συνολικό ποσό που μπορείτε να δανειστείτε.\",\"hehnjM\":\"Ποσό\",\"hjDCQr\":\"Υπήρξε κάποιο σφάλμα. Προσπαθήστε να αλλάξετε τις παραμέτρους ή <0><1>αντιγράψτε το σφάλμα\",\"hom7qf\":\"Διεκδίκηση\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Δανεισμός \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Ασυνεπείς παράμετροι flashloan\",\"iEPVHF\":\"Δεν έχει αρκετή δύναμη ψήφου για να συμμετάσχει στην παρούσα πρόταση\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"Ψηφίσατε \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Εισάγετε ένα ποσό\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens δεν είναι το ίδιο με το να τα κλειδώνετε. Εάν επιθυμείτε να κλειδώσετε τα\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"H χρήση εγγυήσεων είναι περιορισμένη λόγω της λειτουργίας Απομόνωσης.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Προμηθεύοντας το\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Απενεργοποίηση E-Mode\",\"jKYzR1\":\"Ενεργοποίηση E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"δ\"],\"jbFMap\":\"Χρόνος ψύξης που έχει απομείνει\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"Στο E-Mode ορισμένα περιουσιακά στοιχεία δεν είναι δανείσιμα. Βγείτε από το E-Mode για να αποκτήσετε πρόσβαση σε όλα τα περιουσιακά στοιχεία\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Μη διαθέσιμο\",\"k/sb6z\":\"Επιλέξτε γλώσσα\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Διεκδίκηση \",[\"0\"]],\"kH6wUX\":\"Επίδραση στην τιμή\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"Για την εξόφληση εκ μέρους ενός χρήστη απαιτείται ένα ρητό ποσό προς εξόφληση\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Υπέρβαση του ανώτατου ορίου προσφοράς\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Το ανώτατο όριο χρέους δεν είναι μηδενικό\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Αγγλικά\",\"lfEjIE\":\"Μάθετε περισσότερα στον οδηγό <0>Συχνών Ερωτήσεων\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Συνολικές εκπομπές ανά ημέρα\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Εντάξει, Κλείσιμο\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Το περιουσιακό στοιχείο δεν μπορεί να χρησιμοποιηθεί ως εγγύηση.\",\"n+SX4g\":\"Προγραμματιστές\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Προσφορά apy\",\"nJgsQu\":\"Με δύναμη ψήφου <0/>\",\"nLC6tu\":\"Γαλλικά\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Μπορεί να εκτελεστεί\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"ω\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"Ο συντελεστής υγείας και το δάνειο προς αξία καθορίζουν τη διασφάλιση των εξασφαλίσεών σας. Για να αποφύγετε τις ρευστοποιήσεις μπορείτε να παράσχετε περισσότερες εξασφαλίσεις ή να εξοφλήσετε δανειακές θέσεις.\",\"o1xc2V\":\"Η προσφορά AToken δεν είναι μηδενική\",\"o5ooMr\":\"Χρέος\",\"o7J4JM\":\"Φίλτρο\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Ψύξτε για ξεκλείδωμα\",\"oJ5ZiG\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος μεταβλητού επιτοκίου σε αυτό το αποθεματικό\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"Το σταθερό επιτόκιο θα <0>μείνει το ίδιο για όλη τη διάρκεια του δανείου σας. Συνιστάται για μακροχρόνιες περιόδους δανεισμού και για χρήστες που προτιμούν την προβλεψιμότητα.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Διαθέσιμο για προμήθεια\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"Αυτό το περιουσιακό στοιχείο έχει φθάσει στο ανώτατο όριο δανεισμού του. Τίποτα δεν είναι διαθέσιμο για δανεισμό από αυτή την αγορά.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Το υποκείμενο υπόλοιπο πρέπει να είναι μεγαλύτερο από 0\",\"pgWG9H\":\"Δεν υπάρχει αρκετό κλειδωμένο υπόλοιπο\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"παρακαλούμε ελέγξτε ότι το ποσό που θέλετε να παρέχετε δεν χρησιμοποιείται επί του παρόντος για κλείδωμα. Εάν χρησιμοποιείται για κλείδωμα, η συναλλαγή σας ενδέχεται να αποτύχει.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Καταλαβαίνω πώς λειτουργεί η ψύξη (\",[\"0\"],\") και το ξεκλείδωμα (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"Ο καλών αυτής της συνάρτησης πρέπει να είναι ένα κοινόχρηστο ταμείο\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Κλειδωμένο\",\"qB4kPi\":\"Προσφορά APY\",\"qENI8q\":\"Γενικές ρυθμίσεις\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"αντιγράψτε το σφάλμα\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Συνδέστε το πορτοφόλι σας για να δείτε τις προμήθειες, τα δάνεια και τις ανοιχτές θέσεις σας.\",\"qY2jnw\":\"Μη έγκυρη λήξη\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Μη έγκυρη ποσότητα προς καύση\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Το ποσό πρέπει να είναι μεγαλύτερο από 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Εμφάνιση περιουσιακών στοιχείων με υπόλοιπο 0\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Διεκδικήστε όλες τις ανταμοιβές\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Αναθεώρηση συναλλαγής\",\"sP2+gB\":\"ΚΑΤΑ\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Μπορείτε να ξεκλειδώσετε εδώ\",\"smJNwH\":\"Διαθέσιμο για δανεισμό\",\"solypO\":\"Ο παράγοντας υγείας δεν είναι κάτω από το όριο\",\"sr0UJD\":\"Πηγαίνετε Πίσω\",\"ss5GCK\":\"Η διεύθυνση του παρόχου διευθύνσεων κοινόχρηστου ταμείου είναι άκυρη\",\"swEgK4\":\"Οι πληροφορίες ψήφου σας\",\"t+wtgf\":\"Τίποτα δανεισμένο ακόμα\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Τιμή Oracle\",\"tFZLf8\":\"Αυτός ο υπολογισμός gas είναι μόνο μια εκτίμηση. Το πορτοφόλι σας θα καθορίσει την τιμή της συναλλαγής. Μπορείτε να τροποποιήσετε τις ρυθμίσεις gas απευθείας από τον πάροχο του πορτοφολιού σας.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Παρακαλώ, συνδέστε το πορτοφόλι σας\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Οι προμήθειές σας\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Η συναλλαγή απέτυχε\",\"u706uF\":\"Άκυρη πριμοδότηση flashloan\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Για την αποπληρωμή ενός συγκεκριμένου τύπου χρέους, ο χρήστης πρέπει να έχει χρέος αυτού του τύπου\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Απόκρυψη\",\"vMba49\":\"Ο δανεισμός δεν είναι ενεργοποιημένος\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Γλώσσα\",\"vesuBJ\":\"Σας επιτρέπει να αποφασίσετε αν θα χρησιμοποιήσετε ένα παρεχόμενο περιουσιακό στοιχείο ως εγγύηση. Ένα περιουσιακό στοιχείο που χρησιμοποιείται ως εγγύηση θα επηρεάσει τη δανειοληπτική σας ικανότητα και τον συντελεστή υγείας.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Σταθερό νόμισμα\",\"w/JtJ3\":\"Η σταθερή προσφορά χρέους δεν είναι μηδενική\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Ανταμοιβές APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Εσείς \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"Ο καλών της συνάρτησης δεν είναι AToken\",\"wRRqvW\":\"Δεν έχετε προμήθειες σε αυτό το νόμισμα\",\"wZFvVU\":\"ΨΗΦΙΣΤΕ ΥΠΕΡ\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Βρύση \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Τρέχον διαφορικό\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, παρακαλούμε μεταβείτε στο\",\"xNy/UG\":\"Αποπληρωμή με\",\"xPm8wv\":\"Μάθετε περισσότερα για τους κινδύνους\",\"xXYpZl\":[[\"0\"],\" Βρύση\"],\"xaVBSS\":\"Οι πληροφορίες σας\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Ενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"yB1YpA\":\"Σκοτεινή λειτουργία\",\"yCrG6m\":\"Συνολικό μέγεθος της αγοράς\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Επισκόπηση συναλλαγής\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Μη έγκυρη διεύθυνση\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"Δεν μπορείτε να αλλάξετε τη χρήση ως λειτουργία εγγύησης για αυτό το νόμισμα, διότι θα προκαλέσει κλήση εγγύησης\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Δεν υπάρχουν αρκετά κεφάλαια στο\",[\"0\"],\"αποθεματικό για δανεισμό\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Κλείσιμο\",\"z4uGQg\":\"Υπέρβαση του ανώτατου ορίου χρέους\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"Η εγγύηση που έχει επιλεγεί δεν μπορεί να ρευστοποιηθεί\",\"z5Y+p6\":[\"Παροχή \",[\"symbol\"]],\"zCjNKs\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή το αποθεματικό έχει παγώσει\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Υπολειπόμενο χρέος\",\"zmTPiV\":\"Υπόλοιπο προσφοράς\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Μενού\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Μάθετε περισσότερα\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Supply balance after switch\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Show Frozen or paused assets\",\"TszKts\":\"Borrow balance after switch\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Εάν ΔΕΝ ξεκλειδώσετε εντός \",[\"0\"],\" του παραθύρου ξεκλειδώματος, θα πρέπει να ενεργοποιήσετε ξανά τη διαδικασία ψύξης.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Η συμμετοχή σε αυτό το αποθεματικό \",[\"symbol\"],\" δίνει ετήσιες ανταμοιβές.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Ανώτατο όριο δανεισμού\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"ΣΥΧΝΕΣ ΕΡΩΤΗΣΕΙΣ\",\"/yNlZf\":\"Ο σταθερός δανεισμός δεν είναι ενεργοποιημένος\",\"/yQcJM\":\"Συνολική αξία\",\"00AB2i\":\"Ο χρήστης δεν δανείστηκε το καθορισμένο νόμισμα\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να προμηθεύσετε σε αυτό το αποθεματικό. Μπορείτε να προμηθεύσετε το υπόλοιπο του πορτοφολιού σας μέχρι να επιτευχθεί το ανώτατο όριο προμηθειών.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Παρακαλούμε συνδέστε ένα πορτοφόλι για να δείτε τις προσωπικές σας πληροφορίες εδώ.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Ρευστοποίηση <0/> κατώτατο όριο\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Προβολή λεπτομερειών\",\"2FYpfJ\":\"Περισσότερα\",\"2O3qp5\":\"Διαθέσιμη ρευστότητα\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Ο σταθερός δανεισμός είναι ενεργοποιημένος\",\"34Qfwy\":\"Υπέρβαση του ανώτατου ορίου δανεισμού\",\"39eQRj\":[\"Δανεισμός \",[\"symbol\"]],\"3BL1xB\":\"Σύνολο παρεχόμενων\",\"3K0oMo\":\"Υπολειπόμενη προσφορά\",\"3MoZhl\":\"Δεν υπάρχουν επαρκείς εξασφαλίσεις για την κάλυψη ενός νέου δανείου\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Προσφορά \",[\"symbol\"]],\"3mXg0z\":\"Μέγιστο LTV\",\"3q3mFy\":\"Αποπληρωμή\",\"3qsjtp\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα παρεχόμενα περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"3rL+os\":\"Μπορείτε να αποσύρετε τα περιουσιακά σας στοιχεία από τη Μονάδα Ασφαλείας μόνο αφού λήξει η περίοδος αναμονής και το παράθυρο ξεκλειδώματος είναι ενεργό.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Αποτελέσματα ψηφοφορίας\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"ΜΕΓΙΣΤΟ\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"τεκμηρίωση\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο της προσφοράς του. Μόνο \",[\"messageValue\"],\" μπορεί να παρασχεθεί σε αυτή την αγορά.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Η προσφορά μεταβλητού χρέους δεν είναι μηδενική\",\"5che++\":\"Για να ζητήσετε πρόσβαση σε αυτή την αδειοδοτημένη αγορά, επισκεφθείτε την ιστοσελίδα: <0>Όνομα Παρόχου Πρόσβασης\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Απαιτούμενη δράση επιδότησης\",\"5rsnKT\":\"Διαθέσιμες ανταμοιβές\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Επισκόπηση\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Εγγύηση\",\"65A04M\":\"Ισπανικά\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Αποπληρωμή \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Ψύξη...\",\"6bxci/\":\"Δύναμη ψήφου\",\"6f8S68\":\"Αγορές\",\"6g1gi0\":\"Προτάσεις\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Αλλαγή Δικτύου\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Συντελεστής υγείας\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Επιτεύχθηκε\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Διεκδικήστε τα όλα\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Ταμπλό\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Προσοχή - Είστε πολύ κοντά στην ρευστοποίηση. Εξετάστε το ενδεχόμενο να καταθέσετε περισσότερες εγγυήσεις ή να εξοφλήσετε κάποιες από τις δανειακές σας θέσεις\",\"87pUEW\":[\"Το πορτοφόλι σας \",[\"name\"],\" είναι άδειο. Αγοράστε ή μεταφέρετε περιουσιακά στοιχεία.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"Όλες οι προτάσεις\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Μη έγκυρο ποσό για νομισματοκοπία\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Αποσυνδέστε το πορτοφόλι\",\"8Zz7s5\":\"περιουσιακά στοιχεία\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Ποσοστό χρησιμοποίησης\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Εμφάνιση\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Εισέρχεστε σε λειτουργία απομόνωσης\",\"9CDK3/\":[\"Ο δανεισμός δεν είναι επί του παρόντος διαθέσιμος για \",[\"0\"],\".\"],\"9GIj3z\":\"Μέγεθος Αποθεματικού\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Απαρτία\",\"9QHoGr\":\"Τρέχουσες ψήφοι\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο δανεισμού του. Υπάρχει μόνο \",[\"messageValue\"],\" διαθέσιμο για δανεισμό από αυτή την αγορά.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Αυτό το περιουσιακό στοιχείο έχει φτάσει στο όριο της προσφοράς του. Τίποτα δεν είναι διαθέσιμο για προμήθεια από αυτή την αγορά.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Δεδομένου ότι πρόκειται για ένα δοκιμαστικό δίκτυο, μπορείτε να αποκτήσετε οποιοδήποτε από τα περιουσιακά στοιχεία αν έχετε ETH στο πορτοφόλι σας\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Τα δάνεια σας\",\"AV7cGz\":\"Αναθεώρηση λεπτομερειών έγκρισης συναλλαγής\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Η δύναμη δανεισμού και τα περιουσιακά στοιχεία είναι περιορισμένα λόγω της λειτουργίας απομόνωσης.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Η χρήση εγγύησης είναι περιορισμένη λόγω της λειτουργίας απομόνωσης. <0>Μάθετε περισσότερα\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Κατηγορία περιουσιακών στοιχείων\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Βρύση\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Μεγιστο\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Διεκδίκηση \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Βρύση\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Η εγγύηση είναι (ως επί το πλείστον) το ίδιο νόμισμα που δανείζεται\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"Το υποκείμενο περιουσιακό στοιχείο δεν μπορεί να διασωθεί\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave ανά μήνα\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Εξασφάλιση\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Απενεργοποιημένο\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Ανάληψη \",[\"symbol\"]],\"EdQY6l\":\"Κανένα\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Μάθετε περισσότερα.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Δανεισμός χρησιμοποιημένης ισχύος\",\"FPKEug\":\"Η λειτουργία δεν υποστηρίζεται\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"ενεργοποίηση\",\"Fjw9N+\":\"Περιουσιακά στοιχεία προς προμήθεια\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Περιουσιακά Στοιχεία\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"τελειώνει\",\"GtP2hp\":[\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη λειτουργία Αποδοτικότητας (E-Mode) για την κατηγορία \",[\"0\"],\". Για να διαχειριστείτε τις κατηγορίες E-Mode επισκεφθείτε τον <0>Πίνακα ελέγχου.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"η\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Παράθυρο ξεκλειδώματος\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Το συνολικό ποσό των περιουσιακών σας στοιχείων σε δολάρια ΗΠΑ που μπορούν να χρησιμοποιηθούν ως εγγύηση για δανεισμό περιουσιακών στοιχείων.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Περίοδος ψύξης\",\"IaA40H\":\"Ρευστοποίηση στο\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Δεν μπορείτε να χρησιμοποιήσετε αυτό το νόμισμα ως εγγύηση\",\"JYKRJS\":\"Κλειδώστε\",\"JZMxX0\":\"Δεν υπάρχει αρκετό υπόλοιπο στο πορτοφόλι σας\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Υπόλοιπο πορτοφολιού\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"Αυτό αντιπροσωπεύει το κατώτατο όριο στο οποίο μια θέση δανεισμού θα θεωρηθεί υποεγγυημένη και θα υπόκειται σε ρευστοποίηση για κάθε εγγύηση. Για παράδειγμα, εάν μια εγγύηση έχει κατώτατο όριο ρευστοποίησης 80%, αυτό σημαίνει ότι η θέση θα ρευστοποιηθεί όταν η αξία του χρέους ανέρχεται στο 80% της αξίας της εγγύησης.\",\"KYAjf3\":\"Απομονωμένο\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Λήγει\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Λάθος δίκτυο\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Κλείδωμα\",\"KuBTQq\":\"Εισάγετε διεύθυνση ETH\",\"KvG1xW\":\"Διεκδίκηση\",\"L+8Lzs\":\"Τρέχον LTV\",\"L+qiq+\":\"Αγορά\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Δεν υπάρχει δικαίωμα ψήφου\",\"LL0zks\":\"Μπορεί να αποτελέσει εγγύηση\",\"LLdJWu\":\"Διεκδικήσιμο AAVE\",\"LSIpNK\":\"Δεν επιτρέπεται ο δανεισμός και η αποπληρωμή στο ίδιο block\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Διεύθυνση παραλήπτη\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"προβολή κλειδώματος\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, μεταβλητό\",\"MghdTe\":\"Εάν ο συντελεστής υγείας πέσει κάτω από το 1, ενδέχεται να ενεργοποιηθεί η ρευστοποίηση των εγγυήσεών σας.\",\"Mm/DVQ\":\"Ακυρώσατε τη συναλλαγή.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Μη έγκυρη τιμή επιστροφής της συνάρτησης εκτελεστή flashloan\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Εκκρεμεί...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Τίποτα κλειδωμένο\",\"Nh9DAo\":[[\"m\"],\"λ\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Υπέρβαση του ανώτατου ορίου νομισματοκοπείου χωρίς αντίκρισμα\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Επισκόπηση πρότασης\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"απενεργοποιημένο\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Ανάληψη\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"Όταν πραγματοποιείται ρευστοποίηση, οι ρευστοποιητές επιστρέφουν έως και το 50% του ανεξόφλητου δανεισμένου ποσού για λογαριασμό του δανειολήπτη. Σε αντάλλαγμα, μπορούν να αγοράσουν τις εξασφαλίσεις με έκπτωση και να κρατήσουν τη διαφορά (ποινή ρευστοποίησης) ως μπόνους.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα δανειακά περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Κατώτατο όριο ρευστοποίησης\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Η ενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση αυξάνει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας. Ωστόσο, μπορεί να ρευστοποιηθεί εάν ο συντελεστής υγείας σας πέσει κάτω από το 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Δεν έχει επιτευχθεί\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Απενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"RMtxNk\":\"Διαφορικό\",\"RNK49r\":\"Μη έγκυρη υπογραφή\",\"RS0o7b\":\"Κατάσταση\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Λεπτομέρειες πρότασης\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Το περιουσιακό στοιχείο δεν περιλαμβάνεται στον κατάλογο\",\"Rj01Fz\":\"Σύνδεσμοι\",\"RmWFEe\":\"Κλείδωμα APR\",\"RtBLm7\":\"Ο συντελεστής υγείας είναι μικρότερος από το όριο ρευστοποίησης\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Ενεργοποιημένο\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Κεφάλαια στην Μονάδα Ασφάλειας\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Σύνολο διαθέσιμων\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Απενεργοποίηση E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Ο πάροχος διευθύνσεων κοινόχρηστων ταμείων δεν είναι εγγεγραμμένος\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Δανεισμός\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Ποινή ρευστοποίησης\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"To περιουσιακό στοιχείο μπορεί να χρησιμοποιηθεί ως εγγύηση μόνο σε λειτουργία απομόνωσης.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος σταθερού επιτοκίου σε αυτό το αποθεματικό\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Το περιουσιακό στοιχείο δεν είναι δανείσιμο σε λειτουργία απομόνωσης\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Λεπτομέρειες\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"Τα κεφάλαια αυτά έχουν δανειστεί και δεν είναι διαθέσιμα για ανάληψη αυτή τη στιγμή.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"Ο δείκτης μέγιστου LTV αντιπροσωπεύει τη μέγιστη δανειοληπτική ικανότητα μιας συγκεκριμένης εγγύησης. Για παράδειγμα, εάν μια εγγύηση έχει LTV 75%, ο χρήστης μπορεί να δανειστεί έως και 0,75 ETH στο κύριο νόμισμα για κάθε 1 ETH αξίας εγγύησης.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Δεν υπάρχουν ανταμοιβές για διεκδίκηση\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Συνδέστε το πορτοφόλι\",\"VMfYUK\":\"Ασφάλεια των κατατεθειμένων εξασφαλίσεών σας έναντι των δανειζόμενων περιουσιακών στοιχείων και της υποκείμενης αξίας τους.\",\"VOAZJh\":\"Σύνολο δανείων\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"ΥΠΕΡ\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Αναθεώρηση λεπτομερειών συναλλαγής\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Τίποτα δεν έχει παρασχεθεί ακόμη\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"Το E-Mode αυξάνει το LTV σας για μια επιλεγμένη κατηγορία περιουσιακών στοιχείων έως και <0/>. <1>Μάθετε περισσότερα\",\"WPWG/y\":\"Κατάσταση & διαμόρφωση αποθεματικού\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"Ο χρήστης δεν μπορεί να κάνει ανάληψη μεγαλύτερη από το διαθέσιμο υπόλοιπο\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Για να δανειστείτε πρέπει να προσκομίσετε οποιοδήποτε περιουσιακό στοιχείο που θα χρησιμοποιηθεί ως εγγύηση.\",\"X/ITG9\":\"Κείμενο σφάλματος αντιγραφής\",\"X3Pp6x\":\"Χρησιμοποιείται ως εγγύηση\",\"X4Zt7j\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή η εφεδρεία βρίσκεται σε παύση\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Θα βγείτε από τη λειτουργία απομόνωσης και άλλα tokens μπορούν πλέον να χρησιμοποιηθούν ως εγγύηση\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"ΨΗΦΙΣΤΕ ΚΑΤΑ\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Ενεργοποίηση E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"Εάν το δάνειο προς αξία υπερβεί το όριο ρευστοποίησης, η παρεχόμενη εγγύηση σας μπορεί να ρευστοποιηθεί.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Δεν τηρήθηκαν οι όροι επανεξισορρόπησης των επιτοκίων\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Διακυβέρνηση Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Λειτουργία αποδοτικότητας (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Μέγιστη περικοπή\",\"ZfUGFb\":\"Πριν από την προμήθεια\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Αξία ρευστοποίησης\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"ενεργοποιημένο\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Χρόνος που απομένει για το ξεκλείδωμα\",\"a5RYZd\":\"Η απενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση επηρεάζει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Ψηφίστε ΚΑΤΑ\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Οι παράμετροι της συστοιχίας που θα έπρεπε να είναι ίσου μήκους δεν είναι\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Δανεισμός APY, μεταβλητό\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Προειδοποίηση περιόδου ψύξης\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Περιουσιακό στοιχείο\",\"bXQ/Og\":\"Μοιραστείτε το στο twitter\",\"bXr0ee\":\"Τα απομονωμένα περιουσιακά στοιχεία έχουν περιορισμένη δανειοληπτική ικανότητα και άλλα περιουσιακά στοιχεία δεν μπορούν να χρησιμοποιηθούν ως εγγύηση.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Το αιτούμενο ποσό είναι μεγαλύτερο από το μέγιστο μέγεθος δανείου στη λειτουργία σταθερού επιτοκίου\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Προσφορά\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Η διεύθυνση δεν είναι συμβόλαιο\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Δεν μπορείτε να αποσύρετε αυτό το ποσό, διότι θα προκληθεί κλήση εγγύησης\",\"cBc+4A\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να δανειστείτε. Μπορείτε να δανειστείτε με βάση την εξασφάλισή σας και μέχρι να επιτευχθεί το ανώτατο όριο δανεισμού.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Λεπτομέρειες κινδύνου\",\"cNT+ij\":\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη Λειτουργία Αποδοτικότητας (E-Mode) και τη λειτουργία Απομόνωσης. Για να διαχειριστείτε τη λειτουργία E-Mode και τη λειτουργία Απομόνωσης, επισκεφθείτε τον <0>Πίνακα ελέγχου.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Ψηφίστε ΥΠΕΡ\",\"ckf7gX\":[\"Αποπληρώνοντας \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Συζήτηση φόρουμ\",\"csDS2L\":\"Διαθέσιμο\",\"cu7Stb\":\"Δεν συμμετείχατε στην παρούσα πρόταση\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Διακυβέρνηση\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Η επικύρωση του Ltv απέτυχε\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"Δεν έχετε αρκετά χρήματα στο πορτοφόλι σας για να αποπληρώσετε ολόκληρο το ποσό. Εάν προχωρήσετε στην αποπληρωμή με το τρέχον ποσό των χρημάτων σας, θα εξακολουθείτε να έχετε μια μικρή θέση δανεισμού στο ταμπλό σας.\",\"dXUQFX\":\"Περιουσιακά στοιχεία προς δανεισμό\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Χρησιμοποίηση εγγυήσεων\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Η δράση απαιτεί ενεργό απόθεμα\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Σύνολο δανεικών\",\"ecqEvn\":\"Το υπόλοιπο των εγγυήσεων είναι 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Ξεκλειδώστε τώρα\",\"evw5ha\":\"Καθαρή αξία\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"Αλλάξατε σε ποσοστό \",[\"0\"]],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Το τρέχον δάνειο προς αξία με βάση τις παρεχόμενες εξασφαλίσεις σας.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Υπόλοιπο\",\"fu1Dbh\":[\"Ανάληψη \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Λειτουργία Testnet\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"Ο χρήστης προσπαθεί να δανειστεί πολλαπλά περιουσιακά στοιχεία, συμπεριλαμβανομένου ενός απομονωμένου περιουσιακού στοιχείου\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Η μηδενική διεύθυνση δεν είναι έγκυρη\",\"gvTM4B\":\"Το καθαρό ΑΡΥ είναι η συνδυασμένη επίδραση όλων των θέσεων προσφοράς και δανεισμού στην καθαρή αξία, συμπεριλαμβανομένων των κινήτρων. Είναι δυνατόν να υπάρχει αρνητικό καθαρό APY εάν το χρεωστικό APY είναι υψηλότερο από το προσφερόμενο APY.\",\"gzcch9\":\"Μη έγκυρη αμοιβή πρωτοκόλλου γέφυρας\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Καθαρό APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"Το % της συνολικής δανειοληπτικής σας δύναμης που χρησιμοποιείται. Αυτό βασίζεται στο ποσό της παρεχόμενης εξασφάλισής σας και στο συνολικό ποσό που μπορείτε να δανειστείτε.\",\"hehnjM\":\"Ποσό\",\"hjDCQr\":\"Υπήρξε κάποιο σφάλμα. Προσπαθήστε να αλλάξετε τις παραμέτρους ή <0><1>αντιγράψτε το σφάλμα\",\"hom7qf\":\"Διεκδίκηση\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Δανεισμός \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Ασυνεπείς παράμετροι flashloan\",\"iEPVHF\":\"Δεν έχει αρκετή δύναμη ψήφου για να συμμετάσχει στην παρούσα πρόταση\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"Ψηφίσατε \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Εισάγετε ένα ποσό\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens δεν είναι το ίδιο με το να τα κλειδώνετε. Εάν επιθυμείτε να κλειδώσετε τα\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"H χρήση εγγυήσεων είναι περιορισμένη λόγω της λειτουργίας Απομόνωσης.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Προμηθεύοντας το\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Απενεργοποίηση E-Mode\",\"jKYzR1\":\"Ενεργοποίηση E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"δ\"],\"jbFMap\":\"Χρόνος ψύξης που έχει απομείνει\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"Στο E-Mode ορισμένα περιουσιακά στοιχεία δεν είναι δανείσιμα. Βγείτε από το E-Mode για να αποκτήσετε πρόσβαση σε όλα τα περιουσιακά στοιχεία\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Μη διαθέσιμο\",\"k/sb6z\":\"Επιλέξτε γλώσσα\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Διεκδίκηση \",[\"0\"]],\"kH6wUX\":\"Επίδραση στην τιμή\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"Για την εξόφληση εκ μέρους ενός χρήστη απαιτείται ένα ρητό ποσό προς εξόφληση\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Υπέρβαση του ανώτατου ορίου προσφοράς\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Το ανώτατο όριο χρέους δεν είναι μηδενικό\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Αγγλικά\",\"lfEjIE\":\"Μάθετε περισσότερα στον οδηγό <0>Συχνών Ερωτήσεων\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Συνολικές εκπομπές ανά ημέρα\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Εντάξει, Κλείσιμο\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Το περιουσιακό στοιχείο δεν μπορεί να χρησιμοποιηθεί ως εγγύηση.\",\"n+SX4g\":\"Προγραμματιστές\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Προσφορά apy\",\"nJgsQu\":\"Με δύναμη ψήφου <0/>\",\"nLC6tu\":\"Γαλλικά\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Μπορεί να εκτελεστεί\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"ω\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"Ο συντελεστής υγείας και το δάνειο προς αξία καθορίζουν τη διασφάλιση των εξασφαλίσεών σας. Για να αποφύγετε τις ρευστοποιήσεις μπορείτε να παράσχετε περισσότερες εξασφαλίσεις ή να εξοφλήσετε δανειακές θέσεις.\",\"o1xc2V\":\"Η προσφορά AToken δεν είναι μηδενική\",\"o5ooMr\":\"Χρέος\",\"o7J4JM\":\"Φίλτρο\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Ψύξτε για ξεκλείδωμα\",\"oJ5ZiG\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος μεταβλητού επιτοκίου σε αυτό το αποθεματικό\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"Το σταθερό επιτόκιο θα <0>μείνει το ίδιο για όλη τη διάρκεια του δανείου σας. Συνιστάται για μακροχρόνιες περιόδους δανεισμού και για χρήστες που προτιμούν την προβλεψιμότητα.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Διαθέσιμο για προμήθεια\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"Αυτό το περιουσιακό στοιχείο έχει φθάσει στο ανώτατο όριο δανεισμού του. Τίποτα δεν είναι διαθέσιμο για δανεισμό από αυτή την αγορά.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Το υποκείμενο υπόλοιπο πρέπει να είναι μεγαλύτερο από 0\",\"pgWG9H\":\"Δεν υπάρχει αρκετό κλειδωμένο υπόλοιπο\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"παρακαλούμε ελέγξτε ότι το ποσό που θέλετε να παρέχετε δεν χρησιμοποιείται επί του παρόντος για κλείδωμα. Εάν χρησιμοποιείται για κλείδωμα, η συναλλαγή σας ενδέχεται να αποτύχει.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Καταλαβαίνω πώς λειτουργεί η ψύξη (\",[\"0\"],\") και το ξεκλείδωμα (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"Ο καλών αυτής της συνάρτησης πρέπει να είναι ένα κοινόχρηστο ταμείο\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Κλειδωμένο\",\"qB4kPi\":\"Προσφορά APY\",\"qENI8q\":\"Γενικές ρυθμίσεις\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"αντιγράψτε το σφάλμα\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Συνδέστε το πορτοφόλι σας για να δείτε τις προμήθειες, τα δάνεια και τις ανοιχτές θέσεις σας.\",\"qY2jnw\":\"Μη έγκυρη λήξη\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Μη έγκυρη ποσότητα προς καύση\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Το ποσό πρέπει να είναι μεγαλύτερο από 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Εμφάνιση περιουσιακών στοιχείων με υπόλοιπο 0\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Διεκδικήστε όλες τις ανταμοιβές\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Αναθεώρηση συναλλαγής\",\"sP2+gB\":\"ΚΑΤΑ\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Μπορείτε να ξεκλειδώσετε εδώ\",\"smJNwH\":\"Διαθέσιμο για δανεισμό\",\"solypO\":\"Ο παράγοντας υγείας δεν είναι κάτω από το όριο\",\"sr0UJD\":\"Πηγαίνετε Πίσω\",\"ss5GCK\":\"Η διεύθυνση του παρόχου διευθύνσεων κοινόχρηστου ταμείου είναι άκυρη\",\"swEgK4\":\"Οι πληροφορίες ψήφου σας\",\"t+wtgf\":\"Τίποτα δανεισμένο ακόμα\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Τιμή Oracle\",\"tFZLf8\":\"Αυτός ο υπολογισμός gas είναι μόνο μια εκτίμηση. Το πορτοφόλι σας θα καθορίσει την τιμή της συναλλαγής. Μπορείτε να τροποποιήσετε τις ρυθμίσεις gas απευθείας από τον πάροχο του πορτοφολιού σας.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Παρακαλώ, συνδέστε το πορτοφόλι σας\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Οι προμήθειές σας\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Η συναλλαγή απέτυχε\",\"u706uF\":\"Άκυρη πριμοδότηση flashloan\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Για την αποπληρωμή ενός συγκεκριμένου τύπου χρέους, ο χρήστης πρέπει να έχει χρέος αυτού του τύπου\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Απόκρυψη\",\"vMba49\":\"Ο δανεισμός δεν είναι ενεργοποιημένος\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Γλώσσα\",\"vesuBJ\":\"Σας επιτρέπει να αποφασίσετε αν θα χρησιμοποιήσετε ένα παρεχόμενο περιουσιακό στοιχείο ως εγγύηση. Ένα περιουσιακό στοιχείο που χρησιμοποιείται ως εγγύηση θα επηρεάσει τη δανειοληπτική σας ικανότητα και τον συντελεστή υγείας.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Σταθερό νόμισμα\",\"w/JtJ3\":\"Η σταθερή προσφορά χρέους δεν είναι μηδενική\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Ανταμοιβές APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Εσείς \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"Ο καλών της συνάρτησης δεν είναι AToken\",\"wRRqvW\":\"Δεν έχετε προμήθειες σε αυτό το νόμισμα\",\"wZFvVU\":\"ΨΗΦΙΣΤΕ ΥΠΕΡ\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Βρύση \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Τρέχον διαφορικό\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, παρακαλούμε μεταβείτε στο\",\"xNy/UG\":\"Αποπληρωμή με\",\"xPm8wv\":\"Μάθετε περισσότερα για τους κινδύνους\",\"xXYpZl\":[[\"0\"],\" Βρύση\"],\"xaVBSS\":\"Οι πληροφορίες σας\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Ενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"yB1YpA\":\"Σκοτεινή λειτουργία\",\"yCrG6m\":\"Συνολικό μέγεθος της αγοράς\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Επισκόπηση συναλλαγής\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Μη έγκυρη διεύθυνση\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"Δεν μπορείτε να αλλάξετε τη χρήση ως λειτουργία εγγύησης για αυτό το νόμισμα, διότι θα προκαλέσει κλήση εγγύησης\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Δεν υπάρχουν αρκετά κεφάλαια στο\",[\"0\"],\"αποθεματικό για δανεισμό\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Κλείσιμο\",\"z4uGQg\":\"Υπέρβαση του ανώτατου ορίου χρέους\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"Η εγγύηση που έχει επιλεγεί δεν μπορεί να ρευστοποιηθεί\",\"z5Y+p6\":[\"Παροχή \",[\"symbol\"]],\"zCjNKs\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή το αποθεματικό έχει παγώσει\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Υπολειπόμενο χρέος\",\"zmTPiV\":\"Υπόλοιπο προσφοράς\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Μενού\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Μάθετε περισσότερα\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Supply balance after switch\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Show Frozen or paused assets\",\"TszKts\":\"Borrow balance after switch\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file diff --git a/src/locales/en/messages.js b/src/locales/en/messages.js index 5798012af1..96d01ce00a 100644 --- a/src/locales/en/messages.js +++ b/src/locales/en/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"If you DO NOT unstake within \",[\"0\"],\" of unstake window, you will need to activate cooldown process again.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participating in this \",[\"symbol\"],\" reserve gives annualized rewards.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Borrow cap\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"Stable borrowing is not enabled\",\"/yQcJM\":\"Total worth\",\"00AB2i\":\"User did not borrow the specified currency\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Please connect a wallet to view your personal information here.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Liquidation <0/> threshold\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"View details\",\"2FYpfJ\":\"More\",\"2O3qp5\":\"Available liquidity\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Stable borrowing is enabled\",\"34Qfwy\":\"Borrow cap is exceeded\",\"39eQRj\":[\"Borrow \",[\"symbol\"]],\"3BL1xB\":\"Total supplied\",\"3K0oMo\":\"Remaining supply\",\"3MoZhl\":\"There is not enough collateral to cover a new borrow\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Supply \",[\"symbol\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Repay\",\"3qsjtp\":\"The weighted average of APY for all supplied assets, including incentives.\",\"3rL+os\":\"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Voting results\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"This asset has almost reached its supply cap. There can only be \",[\"messageValue\"],\" supplied to this market.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Variable debt supply is not zero\",\"5che++\":\"To request access for this permissioned market, please visit: <0>Acces Provider Name\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Allowance required action\",\"5rsnKT\":\"Available rewards\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Overview\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Collateral\",\"65A04M\":\"Spanish\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Repay \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Voting power\",\"6f8S68\":\"Markets\",\"6g1gi0\":\"Proposals\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Switch Network\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Health factor\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Reached\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Claim all\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Dashboard\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions\",\"87pUEW\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"All proposals\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Invalid amount to mint\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Disconnect Wallet\",\"8Zz7s5\":\"assets\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Utilization Rate\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Show\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"You are entering Isolation mode\",\"9CDK3/\":[\"Borrowing is currently unavailable for \",[\"0\"],\".\"],\"9GIj3z\":\"Reserve Size\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Current votes\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"This asset has almost reached its borrow cap. There is only \",[\"messageValue\"],\" available to be borrowed from this market.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"This asset has reached its supply cap. Nothing is available to be supplied from this market.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Since this is a test network, you can get any of the assets if you have ETH on your wallet\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Your borrows\",\"AV7cGz\":\"Review approval tx details\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Borrowing power and assets are limited due to Isolation mode.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Collateral usage is limited because of isolation mode. <0>Learn More\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Asset category\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Claim \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Faucet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Collateral is (mostly) the same currency that is being borrowed\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"The underlying asset cannot be rescued\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave per month\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collateralization\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Disabled\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Withdrawing \",[\"symbol\"]],\"EdQY6l\":\"None\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Learn more.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Borrow power used\",\"FPKEug\":\"Operation not supported\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"on\",\"Fjw9N+\":\"Assets to supply\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Assets\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"ends\",\"GtP2hp\":[\"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for \",[\"0\"],\" category. To manage E-Mode categories visit your <0>Dashboard.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Unstake window\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Cooldown period\",\"IaA40H\":\"Liquidation at\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"You can not use this currency as collateral\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Not enough balance on your wallet\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Wallet balance\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Isolated\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Expires\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Wrong Network\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Enter ETH address\",\"KvG1xW\":\"Claiming\",\"L+8Lzs\":\"Current LTV\",\"L+qiq+\":\"Market\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"No voting power\",\"LL0zks\":\"Can be collateral\",\"LLdJWu\":\"Claimable AAVE\",\"LSIpNK\":\"Borrow and repay in same block is not allowed\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Recipient address\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"staking view\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"If the health factor goes below 1, the liquidation of your collateral might be triggered.\",\"Mm/DVQ\":\"You cancelled the transaction.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Invalid return value of the flashloan executor function\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pending...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nothing staked\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Unbacked mint cap is exceeded\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Proposal overview\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"disabled\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Withdraw\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"The weighted average of APY for all borrowed assets, including incentives.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Liquidation threshold\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Not reached\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Disable \",[\"symbol\"],\" as collateral\"],\"RMtxNk\":\"Differential\",\"RNK49r\":\"Invalid signature\",\"RS0o7b\":\"State\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Proposal details\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Asset is not listed\",\"Rj01Fz\":\"Links\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"Health factor is lesser than the liquidation threshold\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Enabled\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Funds in the Safety Module\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Total available\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Disabling E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Pool addresses provider is not registered\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Borrow\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Liquidation penalty\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"Asset can only be used as collateral in isolation mode only.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"User does not have outstanding stable rate debt on this reserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Asset is not borrowable in isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Details\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"These funds have been borrowed and are not available for withdrawal at this time.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No rewards to claim\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Connect wallet\",\"VMfYUK\":\"Safety of your deposited collateral against the borrowed assets and its underlying value.\",\"VOAZJh\":\"Total borrows\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Review tx details\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nothing supplied yet\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more\",\"WPWG/y\":\"Reserve status & configuration\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"User cannot withdraw more than the available balance\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"To borrow you need to supply any asset to be used as collateral.\",\"X/ITG9\":\"Copy error text\",\"X3Pp6x\":\"Used as collateral\",\"X4Zt7j\":\"Action cannot be performed because the reserve is paused\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"You will exit isolation mode and other tokens can now be used as collateral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTE NAY\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Enabling E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Interest rate rebalance conditions were not met\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Aave Governance\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Efficiency mode (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Before supplying\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Liquidation value\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"enabled\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Time left to unstake\",\"a5RYZd\":\"Disabling this asset as collateral affects your borrowing power and Health Factor.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Array parameters that should be equal length are not\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Borrow APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Cooldown period warning\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Asset\",\"bXQ/Og\":\"Share on twitter\",\"bXr0ee\":\"Isolated assets have limited borrowing power and other assets cannot be used as collateral.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"The requested amount is greater than the max loan size in stable rate mode\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Supply\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Address is not a contract\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"You can not withdraw this amount because it will cause collateral call\",\"cBc+4A\":\"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Risk details\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Repaying \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Forum discussion\",\"csDS2L\":\"Available\",\"cu7Stb\":\"You did not participate in this proposal\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Governance\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Ltv validation failed\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Assets to borrow\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Collateral usage\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Action requires an active reserve\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Total borrowed\",\"ecqEvn\":\"The collateral balance is 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstake now\",\"evw5ha\":\"Net worth\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"You switched to \",[\"0\"],\" rate\"],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Your current loan to value based on your collateral supplied.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Withdraw \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"User is trying to borrow multiple assets including a siloed one\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Zero address not valid\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Invalid bridge protocol fee\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Net APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Amount\",\"hjDCQr\":\"There was some error. Please try changing the parameters or <0><1>copy the error\",\"hom7qf\":\"Claim\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Borrowing \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Inconsistent flashloan parameters\",\"iEPVHF\":\"Not enough voting power to participate in this proposal\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"You voted \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Enter an amount\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens is not the same as staking them. If you wish to stake your\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"Collateral usage is limited because of Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Supplying your\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Disable E-Mode\",\"jKYzR1\":\"Enable E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Cooldown time left\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Unavailable\",\"k/sb6z\":\"Select language\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Claim \",[\"0\"]],\"kH6wUX\":\"Price impact\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"To repay on behalf of a user an explicit amount to repay is needed\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Supply cap is exceeded\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Debt ceiling is not zero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"English\",\"lfEjIE\":\"Learn more in our <0>FAQ guide\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Total emission per day\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Ok, Close\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Asset cannot be used as collateral.\",\"n+SX4g\":\"Developers\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Supply apy\",\"nJgsQu\":\"With a voting power of <0/>\",\"nLC6tu\":\"French\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Can be executed\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"AToken supply is not zero\",\"o5ooMr\":\"Debt\",\"o7J4JM\":\"Filter\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown to unstake\",\"oJ5ZiG\":\"User does not have outstanding variable rate debt on this reserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Available to supply\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"The underlying balance needs to be greater than 0\",\"pgWG9H\":\"Not enough staked balance\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"I understand how cooldown (\",[\"0\"],\") and unstaking (\",[\"1\"],\") work\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"The caller of this function must be a pool\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Staked\",\"qB4kPi\":\"Supply APY\",\"qENI8q\":\"Global settings\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copy the error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Please connect your wallet to see your supplies, borrowings, and open positions.\",\"qY2jnw\":\"Invalid expiration\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Invalid amount to burn\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Amount must be greater than 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Show assets with 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Claim all rewards\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Review tx\",\"sP2+gB\":\"NAY\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"You unstake here\",\"smJNwH\":\"Available to borrow\",\"solypO\":\"Health factor is not below the threshold\",\"sr0UJD\":\"Go Back\",\"ss5GCK\":\"The address of the pool addresses provider is invalid\",\"swEgK4\":\"Your voting info\",\"t+wtgf\":\"Nothing borrowed yet\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Oracle price\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Please, connect your wallet\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Your supplies\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Transaction failed\",\"u706uF\":\"Invalid flashloan premium\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Hide\",\"vMba49\":\"Borrowing is not enabled\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"Stable debt supply is not zero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Rewards APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"You \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"The caller of the function is not an AToken\",\"wRRqvW\":\"You do not have supplies in this currency\",\"wZFvVU\":\"VOTE YAE\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Current differential\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, please go to the\",\"xNy/UG\":\"Repay with\",\"xPm8wv\":\"Learn more about risks involved\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Your info\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Enable \",[\"symbol\"],\" as collateral\"],\"yB1YpA\":\"Dark mode\",\"yCrG6m\":\"Total market size\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Transaction overview\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Not a valid address\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"You can not switch usage as collateral mode for this currency, because it will cause collateral call\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"There are not enough funds in the\",[\"0\"],\"reserve to borrow\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Close\",\"z4uGQg\":\"Debt ceiling is exceeded\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"The collateral chosen cannot be liquidated\",\"z5Y+p6\":[\"Supplying \",[\"symbol\"]],\"zCjNKs\":\"Action cannot be performed because the reserve is frozen\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Remaining debt\",\"zmTPiV\":\"Supply balance\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Learn more\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"If you DO NOT unstake within \",[\"0\"],\" of unstake window, you will need to activate cooldown process again.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participating in this \",[\"symbol\"],\" reserve gives annualized rewards.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Borrow cap\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"Stable borrowing is not enabled\",\"/yQcJM\":\"Total worth\",\"00AB2i\":\"User did not borrow the specified currency\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Please connect a wallet to view your personal information here.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Liquidation <0/> threshold\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"View details\",\"2FYpfJ\":\"More\",\"2O3qp5\":\"Available liquidity\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Stable borrowing is enabled\",\"34Qfwy\":\"Borrow cap is exceeded\",\"39eQRj\":[\"Borrow \",[\"symbol\"]],\"3BL1xB\":\"Total supplied\",\"3K0oMo\":\"Remaining supply\",\"3MoZhl\":\"There is not enough collateral to cover a new borrow\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Supply \",[\"symbol\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Repay\",\"3qsjtp\":\"The weighted average of APY for all supplied assets, including incentives.\",\"3rL+os\":\"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Voting results\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"This asset has almost reached its supply cap. There can only be \",[\"messageValue\"],\" supplied to this market.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Variable debt supply is not zero\",\"5che++\":\"To request access for this permissioned market, please visit: <0>Acces Provider Name\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Allowance required action\",\"5rsnKT\":\"Available rewards\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Overview\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Collateral\",\"65A04M\":\"Spanish\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Repay \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Voting power\",\"6f8S68\":\"Markets\",\"6g1gi0\":\"Proposals\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Switch Network\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Health factor\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Reached\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Claim all\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Dashboard\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions\",\"87pUEW\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"All proposals\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Invalid amount to mint\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Disconnect Wallet\",\"8Zz7s5\":\"assets\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Utilization Rate\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Show\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"You are entering Isolation mode\",\"9CDK3/\":[\"Borrowing is currently unavailable for \",[\"0\"],\".\"],\"9GIj3z\":\"Reserve Size\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Current votes\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"This asset has almost reached its borrow cap. There is only \",[\"messageValue\"],\" available to be borrowed from this market.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"This asset has reached its supply cap. Nothing is available to be supplied from this market.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Since this is a test network, you can get any of the assets if you have ETH on your wallet\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Your borrows\",\"AV7cGz\":\"Review approval tx details\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Borrowing power and assets are limited due to Isolation mode.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Collateral usage is limited because of isolation mode. <0>Learn More\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Asset category\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Claim \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Faucet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Collateral is (mostly) the same currency that is being borrowed\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"The underlying asset cannot be rescued\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave per month\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collateralization\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Disabled\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Withdrawing \",[\"symbol\"]],\"EdQY6l\":\"None\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Learn more.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Borrow power used\",\"FPKEug\":\"Operation not supported\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"on\",\"Fjw9N+\":\"Assets to supply\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Assets\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"ends\",\"GtP2hp\":[\"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for \",[\"0\"],\" category. To manage E-Mode categories visit your <0>Dashboard.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Unstake window\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Cooldown period\",\"IaA40H\":\"Liquidation at\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"You can not use this currency as collateral\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Not enough balance on your wallet\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Wallet balance\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Isolated\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Expires\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Wrong Network\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Enter ETH address\",\"KvG1xW\":\"Claiming\",\"L+8Lzs\":\"Current LTV\",\"L+qiq+\":\"Market\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"No voting power\",\"LL0zks\":\"Can be collateral\",\"LLdJWu\":\"Claimable AAVE\",\"LSIpNK\":\"Borrow and repay in same block is not allowed\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Recipient address\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"staking view\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"If the health factor goes below 1, the liquidation of your collateral might be triggered.\",\"Mm/DVQ\":\"You cancelled the transaction.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Invalid return value of the flashloan executor function\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pending...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nothing staked\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Unbacked mint cap is exceeded\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Proposal overview\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"disabled\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Withdraw\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"The weighted average of APY for all borrowed assets, including incentives.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Liquidation threshold\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Not reached\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Disable \",[\"symbol\"],\" as collateral\"],\"RMtxNk\":\"Differential\",\"RNK49r\":\"Invalid signature\",\"RS0o7b\":\"State\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Proposal details\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Asset is not listed\",\"Rj01Fz\":\"Links\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"Health factor is lesser than the liquidation threshold\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Enabled\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Funds in the Safety Module\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Total available\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Disabling E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Pool addresses provider is not registered\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Borrow\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Liquidation penalty\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"Asset can only be used as collateral in isolation mode only.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"User does not have outstanding stable rate debt on this reserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Asset is not borrowable in isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Details\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"These funds have been borrowed and are not available for withdrawal at this time.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No rewards to claim\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Connect wallet\",\"VMfYUK\":\"Safety of your deposited collateral against the borrowed assets and its underlying value.\",\"VOAZJh\":\"Total borrows\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Review tx details\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nothing supplied yet\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more\",\"WPWG/y\":\"Reserve status & configuration\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"User cannot withdraw more than the available balance\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"To borrow you need to supply any asset to be used as collateral.\",\"X/ITG9\":\"Copy error text\",\"X3Pp6x\":\"Used as collateral\",\"X4Zt7j\":\"Action cannot be performed because the reserve is paused\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"You will exit isolation mode and other tokens can now be used as collateral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTE NAY\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Enabling E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Interest rate rebalance conditions were not met\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Aave Governance\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Efficiency mode (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Before supplying\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Liquidation value\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"enabled\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Time left to unstake\",\"a5RYZd\":\"Disabling this asset as collateral affects your borrowing power and Health Factor.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Array parameters that should be equal length are not\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Borrow APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Cooldown period warning\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Asset\",\"bXQ/Og\":\"Share on twitter\",\"bXr0ee\":\"Isolated assets have limited borrowing power and other assets cannot be used as collateral.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"The requested amount is greater than the max loan size in stable rate mode\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Supply\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Address is not a contract\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"You can not withdraw this amount because it will cause collateral call\",\"cBc+4A\":\"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Risk details\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Repaying \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Forum discussion\",\"csDS2L\":\"Available\",\"cu7Stb\":\"You did not participate in this proposal\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Governance\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Ltv validation failed\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Assets to borrow\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Collateral usage\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Action requires an active reserve\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Total borrowed\",\"ecqEvn\":\"The collateral balance is 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstake now\",\"evw5ha\":\"Net worth\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"You switched to \",[\"0\"],\" rate\"],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Your current loan to value based on your collateral supplied.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Withdraw \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"User is trying to borrow multiple assets including a siloed one\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Zero address not valid\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Invalid bridge protocol fee\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Net APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Amount\",\"hjDCQr\":\"There was some error. Please try changing the parameters or <0><1>copy the error\",\"hom7qf\":\"Claim\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Borrowing \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Inconsistent flashloan parameters\",\"iEPVHF\":\"Not enough voting power to participate in this proposal\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"You voted \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Enter an amount\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens is not the same as staking them. If you wish to stake your\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"Collateral usage is limited because of Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Supplying your\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Disable E-Mode\",\"jKYzR1\":\"Enable E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Cooldown time left\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Unavailable\",\"k/sb6z\":\"Select language\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Claim \",[\"0\"]],\"kH6wUX\":\"Price impact\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"To repay on behalf of a user an explicit amount to repay is needed\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Supply cap is exceeded\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Debt ceiling is not zero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"English\",\"lfEjIE\":\"Learn more in our <0>FAQ guide\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Total emission per day\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Ok, Close\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Asset cannot be used as collateral.\",\"n+SX4g\":\"Developers\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Supply apy\",\"nJgsQu\":\"With a voting power of <0/>\",\"nLC6tu\":\"French\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Can be executed\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"AToken supply is not zero\",\"o5ooMr\":\"Debt\",\"o7J4JM\":\"Filter\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown to unstake\",\"oJ5ZiG\":\"User does not have outstanding variable rate debt on this reserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Available to supply\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"The underlying balance needs to be greater than 0\",\"pgWG9H\":\"Not enough staked balance\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"I understand how cooldown (\",[\"0\"],\") and unstaking (\",[\"1\"],\") work\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"The caller of this function must be a pool\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Staked\",\"qB4kPi\":\"Supply APY\",\"qENI8q\":\"Global settings\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copy the error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Please connect your wallet to see your supplies, borrowings, and open positions.\",\"qY2jnw\":\"Invalid expiration\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Invalid amount to burn\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Amount must be greater than 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Show assets with 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Claim all rewards\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Review tx\",\"sP2+gB\":\"NAY\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"You unstake here\",\"smJNwH\":\"Available to borrow\",\"solypO\":\"Health factor is not below the threshold\",\"sr0UJD\":\"Go Back\",\"ss5GCK\":\"The address of the pool addresses provider is invalid\",\"swEgK4\":\"Your voting info\",\"t+wtgf\":\"Nothing borrowed yet\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Oracle price\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Please, connect your wallet\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Your supplies\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Transaction failed\",\"u706uF\":\"Invalid flashloan premium\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Hide\",\"vMba49\":\"Borrowing is not enabled\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"Stable debt supply is not zero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Rewards APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"You \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"The caller of the function is not an AToken\",\"wRRqvW\":\"You do not have supplies in this currency\",\"wZFvVU\":\"VOTE YAE\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Current differential\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, please go to the\",\"xNy/UG\":\"Repay with\",\"xPm8wv\":\"Learn more about risks involved\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Your info\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Enable \",[\"symbol\"],\" as collateral\"],\"yB1YpA\":\"Dark mode\",\"yCrG6m\":\"Total market size\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Transaction overview\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Not a valid address\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"You can not switch usage as collateral mode for this currency, because it will cause collateral call\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"There are not enough funds in the\",[\"0\"],\"reserve to borrow\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Close\",\"z4uGQg\":\"Debt ceiling is exceeded\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"The collateral chosen cannot be liquidated\",\"z5Y+p6\":[\"Supplying \",[\"symbol\"]],\"zCjNKs\":\"Action cannot be performed because the reserve is frozen\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Remaining debt\",\"zmTPiV\":\"Supply balance\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Learn more\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\"}")}; \ No newline at end of file diff --git a/src/locales/en/messages.po b/src/locales/en/messages.po index a9122e5866..3a92e762e2 100644 --- a/src/locales/en/messages.po +++ b/src/locales/en/messages.po @@ -197,10 +197,6 @@ msgstr "USDT on Ethereum requires approval reset before a new approval. This wil msgid "After the cooldown period ends, you will enter the unstake window of {0}. You will continue receiving rewards during cooldown and the unstake period." msgstr "After the cooldown period ends, you will enter the unstake window of {0}. You will continue receiving rewards during cooldown and the unstake period." -#: src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx -msgid "..." -msgstr "..." - #: src/modules/dashboard/LiquidationRiskParametresModal/components/LTVContent.tsx msgid "Liquidation <0/> threshold" msgstr "Liquidation <0/> threshold" diff --git a/src/locales/es/messages.js b/src/locales/es/messages.js index 270a46d10a..d50d5ee64f 100644 --- a/src/locales/es/messages.js +++ b/src/locales/es/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Si NO unstakeas entre \",[\"0\"],\" de la ventana de unstakeo, necesitarás activar el proceso de cooldown de nuevo.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participar en esta reserva de \",[\"symbol\"],\" da recompensas anuales.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Límite del préstamo\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Cantidad para migrar\",\"/7ykiW\":\"Tomar prestado esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"Preguntas frecuentes\",\"/yNlZf\":\"El préstamo estable no está habilitado\",\"/yQcJM\":\"Valor total\",\"00AB2i\":\"El usuario no tomó prestado el activo especificado\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Cambio de tasa\",\"0BF3yK\":\"Lo sentimos, no hemos podido encontrar la página que estabas buscando.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Riesgo de liquidación\",\"0ojY+Y\":\"Balance actual v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Cambio de garantía\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Los datos de los precios no están disponibles actualmente para esta reserva en el subgraph del protocolo\",\"1LjK22\":\"Historial de transacciones\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Por favor conecta una cartera para ver tu información personal aquí.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Umbral <0/> de liquidación\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Ver detalles\",\"2FYpfJ\":\"Más\",\"2O3qp5\":\"Liquidez disponible\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Este activo no se puede migrar debido a una restricción del límite de suministro en el mercado v3 de \",[\"marketName\"],\".\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Por favor introduce una dirección de cartera válida.\",\"2eBWE6\":\"Acepto los riesgos involucadros.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"El préstamo estable no está habilitado\",\"34Qfwy\":\"El límite del préstamo se ha sobrepasado\",\"39eQRj\":[\"Tomar prestado \",[\"symbol\"]],\"3BL1xB\":\"Total suministrado\",\"3K0oMo\":\"Suministro restante\",\"3MoZhl\":\"No hay suficiente garantía para cubrir un nuevo préstamo\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Suministrar \",[\"symbol\"]],\"3mXg0z\":\"LTV máximo\",\"3q3mFy\":\"Pagar\",\"3qsjtp\":\"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrar al mercado V3 de \",[\"0\"]],\"49UFQA\":\"Resultados de la votación\",\"4DMZUI\":\"Ver Transacciones\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Términos\",\"4YYh4d\":\"Máximo disponible para tomar prestado\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Firma para continuar\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transacciones\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue activos de prueba gratis en\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentación\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Este activo casi ha alcanzado su límite de suministro. Solo se puede suministrar \",[\"messageValue\"],\" a este mercado.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"El suministro de deuda variable no es cero\",\"5che++\":\"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso\",\"5ctNdV\":[\"Mínimo \",[\"0\"],\" recibido\"],\"5hDe9v\":\"Acción de permiso requerida\",\"5rsnKT\":\"Recompensas disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Ver todos los votos\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Resumen\",\"60crCe\":\"Todas las transacciones\",\"62Xcjh\":\"Garantía\",\"65A04M\":\"Español\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Firmando\",\"6Jrv+z\":[\"Pagar \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Poder de votación\",\"6f8S68\":\"Mercados\",\"6g1gi0\":\"Propuestas\",\"6gvoHP\":\"Copiar mensaje de error\",\"6h3Q5G\":\"reembolsado\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Cambiar de red\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Factor de salud\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Alcanzado\",\"7YlcXu\":\"El fork mode está activado\",\"7Z76Iw\":\"Tomar prestado no está disponible porque estás usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.\",\"7aKlMS\":\"Compartir en Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Reclamar todo\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"No se pudieron recuperar los datos, por favor recarga el gráfico.\",\"7p5kLi\":\"Panel de control\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Ten cuidado - Estás muy cerca de la liquidación. Considera depositar más garantía o pagar alguno de tus préstamos\",\"87pUEW\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos.\"],\"8F1i42\":\"Página no encontrada\",\"8G8M0u\":\"Cargando datos...\",\"8Iu1QS\":\"retirado\",\"8JL93T\":\"Todas las propuestas\",\"8Q51DU\":\"Añadir a la cartera\",\"8X/oyn\":\"Cantidad invalidad para generar\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Desconectar cartera\",\"8Zz7s5\":\"activos\",\"8aLW8H\":\"Balance a revocar\",\"8bOT3H\":\"Tasa de uso\",\"8sLe4/\":\"Ver contrato\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Mostrar\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Estás entrando en el Isolation mode\",\"9CDK3/\":[\"Tomar prestado no está disponible actualmente para \",[\"0\"],\".\"],\"9GIj3z\":\"Tamaño de la reserva\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Balance stakeado\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votos actuales\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Este activo casi ha alcanzado su límite de préstamo. Solo hay \",[\"messageValue\"],\" disponibles para ser prestado de este mercado.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Este activo ha alcanzado su límite de suministro. No queda nada disponible para ser suministrado desde este mercado.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Token subyacente\",\"9xSooW\":\"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Elige uno de los servicios on-ramp\",\"A6dCI6\":[\"La máxima cantidad disponible para tomar prestado es <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Tus préstamos\",\"AV7cGz\":\"Revisa los detalles del approve\",\"AZOjB8\":\"Recuperando datos...\",\"Ai0jas\":\"Únete a la discusión de la comunidad\",\"Ajl2rq\":\"El poder de préstamo y los activos están limitados debido al Isolation mode.\",\"AqgYNC\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH suministrado como garantía continuará acumulando recompensas de staking proporcionadas por rebases diarios.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"El uso como garantía está limitado debido al isolation mode. <0>Aprende más\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Categoría de activos\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Este activo está congelado debido a una decisión de la comunidad de Aave. <0>Más información\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Documento técnico\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Griego\",\"CkTRmy\":[\"Reclamar \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Por favor conecta tu cartera para ver la herramienta de migración.\",\"CtGlFb\":[\"Faucet \",[\"networkName\"]],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"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.\",\"DAma/S\":\"La garantía es (en su mayoría) el mismo activo que se está tomando prestado\",\"DCnFg0\":[\"Direcciones (\",[\"0\"],\")\"],\"DG3Lv1\":\"Entiendo completamente los riesgos de migrar.\",\"DONJcV\":\"El activo base no puede ser rescatado\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave por mes\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Colateralización\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Deshabilitado\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restakeando \",[\"symbol\"]],\"Ebgc76\":[\"Retirando \",[\"symbol\"]],\"EdQY6l\":\"Ninguno\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivar el periodo de cooldown para unstakear \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrar a V3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Aprende más.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Balance actual v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Capacidad de préstamo utilizada\",\"FPKEug\":\"Operación no soportada\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Direcciones vinculadas\",\"Fdp03t\":\"en\",\"Fjw9N+\":\"Activos a suministrar\",\"FmN0fk\":\"Restakear\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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\xA0la\xA0DAO\xA0de\xA0Aave.\",\"GQrBTq\":\"Cambiar E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Activos\",\"GgEj+0\":\"Modo de solo lectura. Conéctate a una cartera para realizar transacciones.\",\"GjkIKV\":\"finaliza\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la página, o volver después.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Ventana de unstakeo\",\"HpK/8d\":\"Recargar\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Este activo no se puede migrar al mercado v3 de \",[\"marketName\"],\", ya que el activo de garantía habilitará el isolation mode.\"],\"Hvwnm9\":[\"La cantidad máxima disponible para suministrar está limitada porque el límite de suministro del protocolo está al \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"La cantidad total de tus activos denominados en USD que pueden ser usados como garantía para activos de préstamo.\",\"IAD2SB\":[\"Reclamando \",[\"symbol\"]],\"IG9X9/\":\"Tomar prestado este activo está limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"Está previsto que este activo se desvincule debido a una decisión del Gobierno del Protocolo Aave. <0>Más detalles\",\"IP+I/j\":\"Periodo de cooldown\",\"IaA40H\":\"Liquidación en\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Administrar analíticas\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstakeando \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"No puedes usar este activo como garantía\",\"JYKRJS\":\"Stakear\",\"JZMxX0\":\"No hay suficiente balance en tu cartera\",\"Jgflkm\":\"Obtener GHO\",\"JoMQnI\":\"Balance de la cartera\",\"JtwD8u\":\"Balance tomado prestado tras pagar\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"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.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Aislado\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Cambiando E-Mode\",\"KnN1Tu\":\"Caduca\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Red incorrecta\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Introduce la dirección ETH\",\"KvG1xW\":\"Reclamando\",\"L+8Lzs\":\"LTV actual\",\"L+qiq+\":\"Mercado\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Sin poder de voto\",\"LL0zks\":\"Puede ser garantía\",\"LLdJWu\":\"AAVE Reclamable\",\"LSIpNK\":\"Tomar prestado y pagar en el mismo bloque no está permitido\",\"LVt3TI\":[\"<0>Tolerancia de deslizamiento <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Modo E\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Dirección del destinatario\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vista de stakeo\",\"McHlGl\":\"Cambio de APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si el factor de salud se encuentra por debajo de 1, la liquidación de tu colateral puede ser activada.\",\"Mm/DVQ\":\"Has cancelado la transacción.\",\"MnE2QX\":\"Información de préstamo\",\"MuDFEQ\":\"Valor de retorno inválido en la función executor del préstamo flash\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pendiente...\",\"NK9ikO\":\"Balance de la cartera\",\"NMt2CB\":\"Cantidad reclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nada invertido\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"El límite de minteo sin respaldo ha sido excedido\",\"O+tyU+\":[\"La cantidad máxima disponible para tomar prestado contra este activo está limitada porque el límite de deuda está al \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstakear\",\"OR8cYX\":\"Resumen de la propuesta\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"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.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Restablecer\",\"Og2SKn\":\"deshabilitado\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Página web\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirar\",\"P1dURE\":\"Revocar poder\",\"P2WCD/\":[\"El activo subyacente no existe en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stakea ABPT\",\"P72/OW\":\"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.\",\"P7e6Ug\":\"Por favor conecta tu cartera para ver el historial de transacciones.\",\"PByO0X\":\"Votos\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Deshabilitar fork\",\"PJK9u/\":\"Apy préstamo\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Umbral de liquidación\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Retirando\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"No alcanzado\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Desactivar \",[\"symbol\"],\" como garantía\"],\"RMtxNk\":\"Diferencial\",\"RNK49r\":\"Firma inválida\",\"RS0o7b\":\"Estado\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Detalles de la propuesta\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"El activo no está listado\",\"Rj01Fz\":\"Enlaces\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"El factor de salud es menor que el umbral de liquidación\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Habilitado\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fondos en el Módulo de Seguridad\",\"SENccp\":\"Si el error persiste, <0/> podrías reportarlo a esto\",\"SM58dD\":\"Cantidad en cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Umbral de liquidación\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrás realizar transacciones.\",\"SZRUQ4\":\"Deslizamiento máximo\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"Sk2zW9\":\"Desactivando E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"La dirección del proveedor del pool no esta registrada\",\"T/AIqG\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"T0xCO9\":\"No se puede validar la dirección de la cartera. Vuelve a intentarlo.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Tomar prestado\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Penalización de liquidación\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"El activo solo puede usarse como garantía en el Isolation mode únicamente.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"El usuario no tiene deuda pendiente de tasa estable en esta reserva\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recarga la página\",\"U2r8nY\":\"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.\",\"U8IubP\":\"La aplicación se está ejecutando en testnet mode. Aprende como funciona en\",\"U9btTk\":\"El activo no se puede pedir prestado en isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Detalles\",\"UTTKmT\":\"Cooldown de stakeo activado\",\"UXeR72\":\"Estos fondos se han tomado prestados y no están disponibles para su retirada en este momento.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No hay recompensas para reclamar\",\"V0f2Xv\":\"Factor de reserva\",\"V1HK43\":\"Riesgos de migración\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Deuda cubierta\",\"VHOVEJ\":\"Conectar cartera\",\"VMfYUK\":\"Seguridad de tu garantía depositada contra los activos prestados y su valor subyacente.\",\"VOAZJh\":\"Total de préstamos\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Revisar detalles de la tx\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nada suministrado aún\",\"W5kTFy\":\"Votando\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"El E-Mode incrementa tu LTV para una categoría seleccionada de activos hasta el <0/>. <1>Aprende más\",\"WPWG/y\":\"Configuración y estado de la reserva\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"El usuario no puede retirar más que el balance disponible\",\"WaZyaV\":\"<0>Ampleforth es un activo con rebase. Visita la <1>documentación para aprender más.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Debido a que este activo está en pausa, no se pueden realizar acciones hasta nuevo aviso\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantía.\",\"X/ITG9\":\"Copiar el texto del error\",\"X3Pp6x\":\"Utilizado como garantía\",\"X4Zt7j\":\"No se puede realizar la acción porque la reserva está pausada\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Saldrás del modo aislamiento y otros tokens pueden ser usados ahora como garantía\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTAR NO\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Habilitar E-Mode\",\"YSodyW\":\"Esta acción reducirá tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidación de la garantía.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode está ON\",\"YrDxdO\":\"Si tu relación préstamo-valor supera el umbral de liquidación, tu garantía puede ser liquidada.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"No se cumplieron las condiciones de ajuste de tasas de interés\",\"YyydIq\":[\"Añade \",[\"0\"],\" a tu cartera para hacer un seguimiento del balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gobierno de Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Modo de eficiencia (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Deshabilitar testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Antes de suministrar\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valor de liquidación\",\"ZrEc8j\":\"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.\",\"ZsLF7e\":\"habilitado\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Tempo restante para unstakear\",\"a5RYZd\":\"Deshabilitar este activo como garantía afecta tu poder de préstamo y Factor de Salud.\",\"a7u1N9\":\"Precio\",\"a9D+6D\":\"Unstakeado\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Votar NO\",\"aMmFE1\":\"Comprar Crypto con Fiat\",\"aOKIms\":\"Los parámetros del array que deberían ser iguales en longitud no lo son\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"Se ha producido un error al recuperar la propuesta.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"APY préstamo, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Advertencia periodo de cooldown\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Activo\",\"bXQ/Og\":\"Compartir en twitter\",\"bXr0ee\":\"Los activos aislados han limitado tu capacidad de préstamo y otros activos no pueden ser usados como garantía.\",\"bYmAV1\":\"Direcciones\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"La cantidad solicitada es mayor que el tamaño máximo del préstamo en el modo de tasa estable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Suministrar\",\"bxN6EM\":\"No se puede deshabilitar E-Mode\",\"c91vuQ\":\"La dirección no es un contrato\",\"c97os2\":\"aToken de Aave\",\"c9b44w\":\"No puedes retirar esta cantidad porque causará una liquidación\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"cLo09S\":\"Detalles de riesgo\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Votar SI\",\"ckf7gX\":[\"Pagando \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Hilo de discusión del foro\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"No has participado en esta propuesta\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gobierno\",\"dEgA5A\":\"Cancelar\",\"dIsyWh\":\"La validación del LTV ha fallado\",\"dOB5nW\":[\"La cantidad máxima disponible para suministrar es <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Activos a tomar prestado\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Tomar prestado está deshabilitado debido a una decisión de la comunidad de Aave. <0>Más información\",\"djsg0o\":\"Uso de la garantía\",\"drdV8R\":\"Liquidación\",\"dxW8cS\":\"Token de deuda de Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 direcciones\",\"eD8WX/\":\"La acción requiere una reserva activa\",\"eJRJ04\":\"Cantidad para unstakear\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Editar\",\"eVpCmf\":\"Recompensas de Staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aún no hay transacciones.\",\"ebLGGN\":\"Total tomado prestado\",\"ecqEvn\":\"El balance de garantía es 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible en\",\"enruNF\":\"empieza\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstakea ahora\",\"evw5ha\":\"Valor neto\",\"ezcU16\":\"Obtener Token ABP\",\"f3W0Ej\":[\"Has cambiado a tasa \",[\"0\"]],\"fMJQZK\":\"Prestado\",\"fZ5Vnu\":\"Recibido\",\"firl9Q\":\"Tu actual relación préstamo-valor basado en tu garantía suministrada.\",\"fldjW9\":\"Previsualizar la tx y migrar\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Retirar \",[\"symbol\"]],\"fwjWSI\":\"Suministrado\",\"fwyTMb\":\"Migrar a stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Votó NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Este activo está congelado debido a una decisión del Gobierno del Protocolo Aave. <0>More información\",\"gTHi2T\":\"El usuario está intentando tomar prestado múltiples activos incluido uno aislado\",\"gVW59Y\":\"Por favor conecta tu cartera para obtener activos testnet gratis.\",\"gcFNxP\":\"Aprobación confirmada\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Dirección cero no válida\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Comisión de puente de protocolo inválida\",\"h33MxW\":\"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activar Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY neto\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Reclamado\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Cantidad\",\"hjDCQr\":\"Hubo un error. Por favor intenta cambiar los parámetros o <0><1>copiar el error\",\"hom7qf\":\"Reclamar\",\"hpHJ4I\":\"Garantía liquidada\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Tomando prestado \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"Sobre GHO\",\"iChbOF\":\"Parámetros inconsistentes del préstamo flash\",\"iEPVHF\":\"No hay suficiente poder de voto para participar en esta propuesta\",\"iEW87X\":\"Poder delegado\",\"iEju36\":[\"Has votado \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Seleccionar tolerancia de deslizamiento\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Ingresa una cantidad\",\"iSLIjg\":\"Conectar\",\"iUo5rv\":\"tokens no es lo mismo que stakearlos. Si deseas stakearlos\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Úsalo para votar a favor o en contra de propuestas activas.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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 \"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"El uso de garantías está limitado debido al Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Suministrando tu\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Desactivar el E-Mode\",\"jKYzR1\":\"Habilitar E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Periodo restante de cooldown\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrado\",\"jmXdoY\":\"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"No disponible\",\"k/sb6z\":\"Seleccionar idioma\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Reclamar \",[\"0\"]],\"kH6wUX\":\"Impacto del precio\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" activos seleccionados\"],\"kN1Yg5\":\"Para pagar en nombre de un usuario, se necesita una cantidad explícita para pagar\",\"kRTD40\":[\"Cantidad a pagar para alcanzar el \",[\"0\"],\"% de utilización\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"El límite de suministro se ha sobrepasado\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"El límite de deuda no es cero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"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.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"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\"],\".\"],\"lVhKKI\":\"Votó YAE\",\"lWLqxB\":\"No pudimos encontrar ninguna transacción relacionada con tu búsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Inglés\",\"lfEjIE\":\"Aprende más en nuestra guía <0>Preguntas frecuentes\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Emisiones totales por día\",\"m7r7Hh\":\"Activos de préstamo seleccionados\",\"mDDK4p\":\"Pool de Balancer\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos o usa <0>\",[\"0\"],\" para transferir tus activos de \",[\"network\"],\".\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Comprar \",[\"cryptoSymbol\"],\" con Fiat\"],\"mvCXBY\":\"Stakea AAVE\",\"mwdzil\":\"Vale, cerrar\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Este activo no puede usarse como garantía.\",\"n+SX4g\":\"Desarrolladores\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Apy de suministro\",\"nJgsQu\":\"Con un poder de votación de <0/>\",\"nLC6tu\":\"Francés\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposición\",\"nPGNMh\":\"Puede ser ejecutado\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Ambos\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Se produjo un error\",\"nxyWvj\":\"Retirar esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"El balance de AToken no es cero\",\"o5ooMr\":\"Deuda\",\"o7J4JM\":\"Filtro\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown para undstakear\",\"oJ5ZiG\":\"El usuario no tiene deuda pendiente de tasa variable en esta reserva\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Activos de prueba\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible para suministrar\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Sin resultados\",\"owSsI3\":\"Firmas listas\",\"p+R52m\":\"Ir al pool de Balancer\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Este activo ha alcanzado su límite de préstamo. No queda nada disponible para ser prestado de este mercado.\",\"p45alK\":\"Configurar la delegación\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"El balance subyacente debe ser mayor que 0\",\"pgWG9H\":\"No hay suficiente balance stakeado\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Cantidad mínima recibida\",\"pooutM\":\"La votación está activa\",\"pqaM5s\":\"Confirmando transacción\",\"ptaxX3\":[\"Entiendo como el cooldown (\",[\"0\"],\") y el proceso de unstaking (\",[\"1\"],\") funcionan\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"La función debe ser llamada por un pool\",\"q/51mF\":\"Migrar a V3\",\"q3df11\":\"Estrategia de tasa de interés\",\"q6lAbz\":\"Stakeado\",\"qB4kPi\":\"Suministrar APY\",\"qENI8q\":\"Configuración global\",\"qGz5zl\":\"Balance de la garantía tras pagar\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copiar el error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Por favor, conecta tu cartera para ver tus suministros, préstamos y posiciones abiertas.\",\"qY2jnw\":\"Expiración inválida\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Cantidad inválida para quemar\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"La cantidad debe ser mayor que 0\",\"rQ+R+0\":\"Activos de suministro seleccionados\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"\"],\"rcT+yy\":\"Mostrar activos con 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacidad\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Reclamar todas las recompensas\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Tu poder de proposición se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstakear \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Revisión tx\",\"sP2+gB\":\"NO\",\"sQv06Y\":\"para\",\"sTtO6J\":\"Confirmar transacción\",\"sXKb3l\":\"Tasa de cambio\",\"sb0q4+\":\"Unstakea aquí\",\"smJNwH\":\"Disponible para tomar prestado\",\"solypO\":\"El factor de salud no está por debajo del umbral\",\"sr0UJD\":\"Volver atrás\",\"ss5GCK\":\"La dirección del proveedor del grupo de direcciones no es válida\",\"swEgK4\":\"Tu información de voto\",\"t+wtgf\":\"Nada tomado prestado aún\",\"t/YqKh\":\"Eliminar\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Precio del oráculo\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Ir al panel de control V3\",\"tOcg3N\":\"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\",\"tOuXfv\":[\"Cantidad a tomar prestado para alcanzar el \",[\"0\"],\"% de utilización\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Por favor, conecta tu cartera\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Tus suministros\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Error en la transacción\",\"u706uF\":\"Préstamo flash inválido\",\"u8Gfu7\":[\"Sin resultados de búsqueda\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No hay activos seleccionados para migrar.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrando\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Para el pago de un tipo específico de deuda, el usuario necesita tener una deuda de ese tipo\",\"ulNuNq\":\"Exportar datos a\",\"ulup2p\":\"Comprar Crypto con Fiat\",\"usB84Z\":\"La cantidad máxima disponible para tomar prestado está limitada porque casi se ha alcanzado el límite de préstamo del protocolo.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"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.\",\"vEqxH9\":\"Restakeado\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Ocultar\",\"vMba49\":\"Tomar prestado no está habilitado\",\"vMpNwt\":\"Aprobar con\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Idioma\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"El balance de deuda estable no es cero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"APR de recompensas\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Tu \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Canal de Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"El llamador de la función no es un AToken\",\"wRRqvW\":\"No tienes suministros en este activo\",\"wZFvVU\":\"VOTAR SI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"No tienes balance de AAVE/stkAAVE/aAave para delegar.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Obtener Token ABP v2\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.\",\"x7F2p6\":\"Diferencial actual\",\"x7K5ib\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue \",[\"0\"],\" de prueba gratis en\"],\"x9iLRD\":\"tokens, por favor ve al\",\"xNy/UG\":\"Pagar con\",\"xPm8wv\":\"Aprende más sobre los riesgos involucrados\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Tu información\",\"xaWZ6f\":\"Cambio tipo de APY\",\"xh6k71\":\"El uso de garantías está limitado debido al isolation mode.\",\"xvIklc\":\"El préstamo flash está deshabilitado para este activo, por lo tanto, esta posición no se puede migrar.\",\"y5rS9U\":\"Migrar\",\"y66tBm\":[\"Habilitar \",[\"symbol\"],\" como garantía\"],\"yB1YpA\":\"Modo oscuro\",\"yCrG6m\":\"Tamaño total del mercado\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Resumen de la transacción\",\"yLGmLX\":[\"Restakear \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Dirección no válida\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Haz seguimiento de tu cartera\",\"yh2sjd\":[\"Impacto en el precio \",[\"0\"],\"%\"],\"yhvj6d\":\"No puedes cambiar el uso como modo de garantía para este activo, porque causará una liquidación\",\"ylmtBZ\":\"La aplicación se ejecuta en fork mode.\",\"ymNY32\":[\"No hay fondos suficientes en la reserva\",[\"0\"],\"para tomar prestado\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Cerrar\",\"z4uGQg\":\"El límite de deuda está sobrepasado\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantía elegida no puede ser liquidada\",\"z5Y+p6\":[\"Suministrando \",[\"symbol\"]],\"zCjNKs\":\"No se puede realizar la acción porque la reserva está congelada\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Límite de deuda aislado\",\"zTOjMP\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Deuda restante\",\"zmTPiV\":\"Balance de suministro\",\"zpPbZl\":\"Parámetros de riesgo de liquidación\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menú\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Aprende más\",\"zy9fXn\":[\"Este activo está congelado en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"zys+R6\":\"Ten en cuenta la congestión de la red y los precios del gas.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Balance del suministro después del cambio\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Mostrar activos congelados o pausados\",\"TszKts\":\"Balance de préstamo después del cambio\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Si NO unstakeas entre \",[\"0\"],\" de la ventana de unstakeo, necesitarás activar el proceso de cooldown de nuevo.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participar en esta reserva de \",[\"symbol\"],\" da recompensas anuales.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Límite del préstamo\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Cantidad para migrar\",\"/7ykiW\":\"Tomar prestado esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"Preguntas frecuentes\",\"/yNlZf\":\"El préstamo estable no está habilitado\",\"/yQcJM\":\"Valor total\",\"00AB2i\":\"El usuario no tomó prestado el activo especificado\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Cambio de tasa\",\"0BF3yK\":\"Lo sentimos, no hemos podido encontrar la página que estabas buscando.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Riesgo de liquidación\",\"0ojY+Y\":\"Balance actual v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Cambio de garantía\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Los datos de los precios no están disponibles actualmente para esta reserva en el subgraph del protocolo\",\"1LjK22\":\"Historial de transacciones\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Por favor conecta una cartera para ver tu información personal aquí.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Umbral <0/> de liquidación\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Ver detalles\",\"2FYpfJ\":\"Más\",\"2O3qp5\":\"Liquidez disponible\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Este activo no se puede migrar debido a una restricción del límite de suministro en el mercado v3 de \",[\"marketName\"],\".\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Por favor introduce una dirección de cartera válida.\",\"2eBWE6\":\"Acepto los riesgos involucadros.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"El préstamo estable no está habilitado\",\"34Qfwy\":\"El límite del préstamo se ha sobrepasado\",\"39eQRj\":[\"Tomar prestado \",[\"symbol\"]],\"3BL1xB\":\"Total suministrado\",\"3K0oMo\":\"Suministro restante\",\"3MoZhl\":\"No hay suficiente garantía para cubrir un nuevo préstamo\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Suministrar \",[\"symbol\"]],\"3mXg0z\":\"LTV máximo\",\"3q3mFy\":\"Pagar\",\"3qsjtp\":\"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrar al mercado V3 de \",[\"0\"]],\"49UFQA\":\"Resultados de la votación\",\"4DMZUI\":\"Ver Transacciones\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Términos\",\"4YYh4d\":\"Máximo disponible para tomar prestado\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Firma para continuar\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transacciones\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue activos de prueba gratis en\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentación\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Este activo casi ha alcanzado su límite de suministro. Solo se puede suministrar \",[\"messageValue\"],\" a este mercado.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"El suministro de deuda variable no es cero\",\"5che++\":\"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso\",\"5ctNdV\":[\"Mínimo \",[\"0\"],\" recibido\"],\"5hDe9v\":\"Acción de permiso requerida\",\"5rsnKT\":\"Recompensas disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Ver todos los votos\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Resumen\",\"60crCe\":\"Todas las transacciones\",\"62Xcjh\":\"Garantía\",\"65A04M\":\"Español\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Firmando\",\"6Jrv+z\":[\"Pagar \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Poder de votación\",\"6f8S68\":\"Mercados\",\"6g1gi0\":\"Propuestas\",\"6gvoHP\":\"Copiar mensaje de error\",\"6h3Q5G\":\"reembolsado\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Cambiar de red\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Factor de salud\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Alcanzado\",\"7YlcXu\":\"El fork mode está activado\",\"7Z76Iw\":\"Tomar prestado no está disponible porque estás usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.\",\"7aKlMS\":\"Compartir en Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Reclamar todo\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"No se pudieron recuperar los datos, por favor recarga el gráfico.\",\"7p5kLi\":\"Panel de control\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Ten cuidado - Estás muy cerca de la liquidación. Considera depositar más garantía o pagar alguno de tus préstamos\",\"87pUEW\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos.\"],\"8F1i42\":\"Página no encontrada\",\"8G8M0u\":\"Cargando datos...\",\"8Iu1QS\":\"retirado\",\"8JL93T\":\"Todas las propuestas\",\"8Q51DU\":\"Añadir a la cartera\",\"8X/oyn\":\"Cantidad invalidad para generar\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Desconectar cartera\",\"8Zz7s5\":\"activos\",\"8aLW8H\":\"Balance a revocar\",\"8bOT3H\":\"Tasa de uso\",\"8sLe4/\":\"Ver contrato\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Mostrar\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Estás entrando en el Isolation mode\",\"9CDK3/\":[\"Tomar prestado no está disponible actualmente para \",[\"0\"],\".\"],\"9GIj3z\":\"Tamaño de la reserva\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Balance stakeado\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votos actuales\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Este activo casi ha alcanzado su límite de préstamo. Solo hay \",[\"messageValue\"],\" disponibles para ser prestado de este mercado.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Este activo ha alcanzado su límite de suministro. No queda nada disponible para ser suministrado desde este mercado.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Token subyacente\",\"9xSooW\":\"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Elige uno de los servicios on-ramp\",\"A6dCI6\":[\"La máxima cantidad disponible para tomar prestado es <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Tus préstamos\",\"AV7cGz\":\"Revisa los detalles del approve\",\"AZOjB8\":\"Recuperando datos...\",\"Ai0jas\":\"Únete a la discusión de la comunidad\",\"Ajl2rq\":\"El poder de préstamo y los activos están limitados debido al Isolation mode.\",\"AqgYNC\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH suministrado como garantía continuará acumulando recompensas de staking proporcionadas por rebases diarios.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"El uso como garantía está limitado debido al isolation mode. <0>Aprende más\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Categoría de activos\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Este activo está congelado debido a una decisión de la comunidad de Aave. <0>Más información\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Documento técnico\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Griego\",\"CkTRmy\":[\"Reclamar \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Por favor conecta tu cartera para ver la herramienta de migración.\",\"CtGlFb\":[\"Faucet \",[\"networkName\"]],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"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.\",\"DAma/S\":\"La garantía es (en su mayoría) el mismo activo que se está tomando prestado\",\"DCnFg0\":[\"Direcciones (\",[\"0\"],\")\"],\"DG3Lv1\":\"Entiendo completamente los riesgos de migrar.\",\"DONJcV\":\"El activo base no puede ser rescatado\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave por mes\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Colateralización\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Deshabilitado\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restakeando \",[\"symbol\"]],\"Ebgc76\":[\"Retirando \",[\"symbol\"]],\"EdQY6l\":\"Ninguno\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivar el periodo de cooldown para unstakear \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrar a V3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Aprende más.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Balance actual v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Capacidad de préstamo utilizada\",\"FPKEug\":\"Operación no soportada\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Direcciones vinculadas\",\"Fdp03t\":\"en\",\"Fjw9N+\":\"Activos a suministrar\",\"FmN0fk\":\"Restakear\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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\xA0la\xA0DAO\xA0de\xA0Aave.\",\"GQrBTq\":\"Cambiar E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Activos\",\"GgEj+0\":\"Modo de solo lectura. Conéctate a una cartera para realizar transacciones.\",\"GjkIKV\":\"finaliza\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la página, o volver después.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Ventana de unstakeo\",\"HpK/8d\":\"Recargar\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Este activo no se puede migrar al mercado v3 de \",[\"marketName\"],\", ya que el activo de garantía habilitará el isolation mode.\"],\"Hvwnm9\":[\"La cantidad máxima disponible para suministrar está limitada porque el límite de suministro del protocolo está al \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"La cantidad total de tus activos denominados en USD que pueden ser usados como garantía para activos de préstamo.\",\"IAD2SB\":[\"Reclamando \",[\"symbol\"]],\"IG9X9/\":\"Tomar prestado este activo está limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"Está previsto que este activo se desvincule debido a una decisión del Gobierno del Protocolo Aave. <0>Más detalles\",\"IP+I/j\":\"Periodo de cooldown\",\"IaA40H\":\"Liquidación en\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Administrar analíticas\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstakeando \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"No puedes usar este activo como garantía\",\"JYKRJS\":\"Stakear\",\"JZMxX0\":\"No hay suficiente balance en tu cartera\",\"Jgflkm\":\"Obtener GHO\",\"JoMQnI\":\"Balance de la cartera\",\"JtwD8u\":\"Balance tomado prestado tras pagar\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"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.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Aislado\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Cambiando E-Mode\",\"KnN1Tu\":\"Caduca\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Red incorrecta\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Introduce la dirección ETH\",\"KvG1xW\":\"Reclamando\",\"L+8Lzs\":\"LTV actual\",\"L+qiq+\":\"Mercado\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Sin poder de voto\",\"LL0zks\":\"Puede ser garantía\",\"LLdJWu\":\"AAVE Reclamable\",\"LSIpNK\":\"Tomar prestado y pagar en el mismo bloque no está permitido\",\"LVt3TI\":[\"<0>Tolerancia de deslizamiento <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Modo E\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Dirección del destinatario\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vista de stakeo\",\"McHlGl\":\"Cambio de APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si el factor de salud se encuentra por debajo de 1, la liquidación de tu colateral puede ser activada.\",\"Mm/DVQ\":\"Has cancelado la transacción.\",\"MnE2QX\":\"Información de préstamo\",\"MuDFEQ\":\"Valor de retorno inválido en la función executor del préstamo flash\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pendiente...\",\"NK9ikO\":\"Balance de la cartera\",\"NMt2CB\":\"Cantidad reclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nada invertido\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"El límite de minteo sin respaldo ha sido excedido\",\"O+tyU+\":[\"La cantidad máxima disponible para tomar prestado contra este activo está limitada porque el límite de deuda está al \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstakear\",\"OR8cYX\":\"Resumen de la propuesta\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"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.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Restablecer\",\"Og2SKn\":\"deshabilitado\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Página web\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirar\",\"P1dURE\":\"Revocar poder\",\"P2WCD/\":[\"El activo subyacente no existe en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stakea ABPT\",\"P72/OW\":\"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.\",\"P7e6Ug\":\"Por favor conecta tu cartera para ver el historial de transacciones.\",\"PByO0X\":\"Votos\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Deshabilitar fork\",\"PJK9u/\":\"Apy préstamo\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Umbral de liquidación\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Retirando\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"No alcanzado\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Desactivar \",[\"symbol\"],\" como garantía\"],\"RMtxNk\":\"Diferencial\",\"RNK49r\":\"Firma inválida\",\"RS0o7b\":\"Estado\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Detalles de la propuesta\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"El activo no está listado\",\"Rj01Fz\":\"Enlaces\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"El factor de salud es menor que el umbral de liquidación\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Habilitado\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fondos en el Módulo de Seguridad\",\"SENccp\":\"Si el error persiste, <0/> podrías reportarlo a esto\",\"SM58dD\":\"Cantidad en cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Umbral de liquidación\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrás realizar transacciones.\",\"SZRUQ4\":\"Deslizamiento máximo\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"Sk2zW9\":\"Desactivando E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"La dirección del proveedor del pool no esta registrada\",\"T/AIqG\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"T0xCO9\":\"No se puede validar la dirección de la cartera. Vuelve a intentarlo.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Tomar prestado\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Penalización de liquidación\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"El activo solo puede usarse como garantía en el Isolation mode únicamente.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"El usuario no tiene deuda pendiente de tasa estable en esta reserva\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recarga la página\",\"U2r8nY\":\"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.\",\"U8IubP\":\"La aplicación se está ejecutando en testnet mode. Aprende como funciona en\",\"U9btTk\":\"El activo no se puede pedir prestado en isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Detalles\",\"UTTKmT\":\"Cooldown de stakeo activado\",\"UXeR72\":\"Estos fondos se han tomado prestados y no están disponibles para su retirada en este momento.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No hay recompensas para reclamar\",\"V0f2Xv\":\"Factor de reserva\",\"V1HK43\":\"Riesgos de migración\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Deuda cubierta\",\"VHOVEJ\":\"Conectar cartera\",\"VMfYUK\":\"Seguridad de tu garantía depositada contra los activos prestados y su valor subyacente.\",\"VOAZJh\":\"Total de préstamos\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Revisar detalles de la tx\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nada suministrado aún\",\"W5kTFy\":\"Votando\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"El E-Mode incrementa tu LTV para una categoría seleccionada de activos hasta el <0/>. <1>Aprende más\",\"WPWG/y\":\"Configuración y estado de la reserva\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"El usuario no puede retirar más que el balance disponible\",\"WaZyaV\":\"<0>Ampleforth es un activo con rebase. Visita la <1>documentación para aprender más.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Debido a que este activo está en pausa, no se pueden realizar acciones hasta nuevo aviso\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantía.\",\"X/ITG9\":\"Copiar el texto del error\",\"X3Pp6x\":\"Utilizado como garantía\",\"X4Zt7j\":\"No se puede realizar la acción porque la reserva está pausada\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Saldrás del modo aislamiento y otros tokens pueden ser usados ahora como garantía\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTAR NO\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Habilitar E-Mode\",\"YSodyW\":\"Esta acción reducirá tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidación de la garantía.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode está ON\",\"YrDxdO\":\"Si tu relación préstamo-valor supera el umbral de liquidación, tu garantía puede ser liquidada.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"No se cumplieron las condiciones de ajuste de tasas de interés\",\"YyydIq\":[\"Añade \",[\"0\"],\" a tu cartera para hacer un seguimiento del balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gobierno de Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Modo de eficiencia (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Deshabilitar testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Antes de suministrar\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valor de liquidación\",\"ZrEc8j\":\"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.\",\"ZsLF7e\":\"habilitado\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Tempo restante para unstakear\",\"a5RYZd\":\"Deshabilitar este activo como garantía afecta tu poder de préstamo y Factor de Salud.\",\"a7u1N9\":\"Precio\",\"a9D+6D\":\"Unstakeado\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Votar NO\",\"aMmFE1\":\"Comprar Crypto con Fiat\",\"aOKIms\":\"Los parámetros del array que deberían ser iguales en longitud no lo son\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"Se ha producido un error al recuperar la propuesta.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"APY préstamo, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Advertencia periodo de cooldown\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Activo\",\"bXQ/Og\":\"Compartir en twitter\",\"bXr0ee\":\"Los activos aislados han limitado tu capacidad de préstamo y otros activos no pueden ser usados como garantía.\",\"bYmAV1\":\"Direcciones\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"La cantidad solicitada es mayor que el tamaño máximo del préstamo en el modo de tasa estable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Suministrar\",\"bxN6EM\":\"No se puede deshabilitar E-Mode\",\"c91vuQ\":\"La dirección no es un contrato\",\"c97os2\":\"aToken de Aave\",\"c9b44w\":\"No puedes retirar esta cantidad porque causará una liquidación\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"cLo09S\":\"Detalles de riesgo\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Votar SI\",\"ckf7gX\":[\"Pagando \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Hilo de discusión del foro\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"No has participado en esta propuesta\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gobierno\",\"dEgA5A\":\"Cancelar\",\"dIsyWh\":\"La validación del LTV ha fallado\",\"dOB5nW\":[\"La cantidad máxima disponible para suministrar es <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Activos a tomar prestado\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Tomar prestado está deshabilitado debido a una decisión de la comunidad de Aave. <0>Más información\",\"djsg0o\":\"Uso de la garantía\",\"drdV8R\":\"Liquidación\",\"dxW8cS\":\"Token de deuda de Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 direcciones\",\"eD8WX/\":\"La acción requiere una reserva activa\",\"eJRJ04\":\"Cantidad para unstakear\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Editar\",\"eVpCmf\":\"Recompensas de Staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aún no hay transacciones.\",\"ebLGGN\":\"Total tomado prestado\",\"ecqEvn\":\"El balance de garantía es 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible en\",\"enruNF\":\"empieza\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstakea ahora\",\"evw5ha\":\"Valor neto\",\"ezcU16\":\"Obtener Token ABP\",\"f3W0Ej\":[\"Has cambiado a tasa \",[\"0\"]],\"fMJQZK\":\"Prestado\",\"fZ5Vnu\":\"Recibido\",\"firl9Q\":\"Tu actual relación préstamo-valor basado en tu garantía suministrada.\",\"fldjW9\":\"Previsualizar la tx y migrar\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Retirar \",[\"symbol\"]],\"fwjWSI\":\"Suministrado\",\"fwyTMb\":\"Migrar a stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Votó NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Este activo está congelado debido a una decisión del Gobierno del Protocolo Aave. <0>More información\",\"gTHi2T\":\"El usuario está intentando tomar prestado múltiples activos incluido uno aislado\",\"gVW59Y\":\"Por favor conecta tu cartera para obtener activos testnet gratis.\",\"gcFNxP\":\"Aprobación confirmada\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Dirección cero no válida\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Comisión de puente de protocolo inválida\",\"h33MxW\":\"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activar Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY neto\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Reclamado\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Cantidad\",\"hjDCQr\":\"Hubo un error. Por favor intenta cambiar los parámetros o <0><1>copiar el error\",\"hom7qf\":\"Reclamar\",\"hpHJ4I\":\"Garantía liquidada\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Tomando prestado \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"Sobre GHO\",\"iChbOF\":\"Parámetros inconsistentes del préstamo flash\",\"iEPVHF\":\"No hay suficiente poder de voto para participar en esta propuesta\",\"iEW87X\":\"Poder delegado\",\"iEju36\":[\"Has votado \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Seleccionar tolerancia de deslizamiento\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Ingresa una cantidad\",\"iSLIjg\":\"Conectar\",\"iUo5rv\":\"tokens no es lo mismo que stakearlos. Si deseas stakearlos\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Úsalo para votar a favor o en contra de propuestas activas.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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 \"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"El uso de garantías está limitado debido al Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Suministrando tu\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Desactivar el E-Mode\",\"jKYzR1\":\"Habilitar E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Periodo restante de cooldown\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrado\",\"jmXdoY\":\"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"No disponible\",\"k/sb6z\":\"Seleccionar idioma\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Reclamar \",[\"0\"]],\"kH6wUX\":\"Impacto del precio\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" activos seleccionados\"],\"kN1Yg5\":\"Para pagar en nombre de un usuario, se necesita una cantidad explícita para pagar\",\"kRTD40\":[\"Cantidad a pagar para alcanzar el \",[\"0\"],\"% de utilización\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"El límite de suministro se ha sobrepasado\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"El límite de deuda no es cero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"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.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"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\"],\".\"],\"lVhKKI\":\"Votó YAE\",\"lWLqxB\":\"No pudimos encontrar ninguna transacción relacionada con tu búsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Inglés\",\"lfEjIE\":\"Aprende más en nuestra guía <0>Preguntas frecuentes\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Emisiones totales por día\",\"m7r7Hh\":\"Activos de préstamo seleccionados\",\"mDDK4p\":\"Pool de Balancer\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos o usa <0>\",[\"0\"],\" para transferir tus activos de \",[\"network\"],\".\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Comprar \",[\"cryptoSymbol\"],\" con Fiat\"],\"mvCXBY\":\"Stakea AAVE\",\"mwdzil\":\"Vale, cerrar\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Este activo no puede usarse como garantía.\",\"n+SX4g\":\"Desarrolladores\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Apy de suministro\",\"nJgsQu\":\"Con un poder de votación de <0/>\",\"nLC6tu\":\"Francés\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposición\",\"nPGNMh\":\"Puede ser ejecutado\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Ambos\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Se produjo un error\",\"nxyWvj\":\"Retirar esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"El balance de AToken no es cero\",\"o5ooMr\":\"Deuda\",\"o7J4JM\":\"Filtro\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown para undstakear\",\"oJ5ZiG\":\"El usuario no tiene deuda pendiente de tasa variable en esta reserva\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Activos de prueba\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible para suministrar\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Sin resultados\",\"owSsI3\":\"Firmas listas\",\"p+R52m\":\"Ir al pool de Balancer\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Este activo ha alcanzado su límite de préstamo. No queda nada disponible para ser prestado de este mercado.\",\"p45alK\":\"Configurar la delegación\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"El balance subyacente debe ser mayor que 0\",\"pgWG9H\":\"No hay suficiente balance stakeado\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Cantidad mínima recibida\",\"pooutM\":\"La votación está activa\",\"pqaM5s\":\"Confirmando transacción\",\"ptaxX3\":[\"Entiendo como el cooldown (\",[\"0\"],\") y el proceso de unstaking (\",[\"1\"],\") funcionan\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"La función debe ser llamada por un pool\",\"q/51mF\":\"Migrar a V3\",\"q3df11\":\"Estrategia de tasa de interés\",\"q6lAbz\":\"Stakeado\",\"qB4kPi\":\"Suministrar APY\",\"qENI8q\":\"Configuración global\",\"qGz5zl\":\"Balance de la garantía tras pagar\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copiar el error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Por favor, conecta tu cartera para ver tus suministros, préstamos y posiciones abiertas.\",\"qY2jnw\":\"Expiración inválida\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Cantidad inválida para quemar\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"La cantidad debe ser mayor que 0\",\"rQ+R+0\":\"Activos de suministro seleccionados\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"\"],\"rcT+yy\":\"Mostrar activos con 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacidad\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Reclamar todas las recompensas\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Tu poder de proposición se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstakear \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Revisión tx\",\"sP2+gB\":\"NO\",\"sQv06Y\":\"para\",\"sTtO6J\":\"Confirmar transacción\",\"sXKb3l\":\"Tasa de cambio\",\"sb0q4+\":\"Unstakea aquí\",\"smJNwH\":\"Disponible para tomar prestado\",\"solypO\":\"El factor de salud no está por debajo del umbral\",\"sr0UJD\":\"Volver atrás\",\"ss5GCK\":\"La dirección del proveedor del grupo de direcciones no es válida\",\"swEgK4\":\"Tu información de voto\",\"t+wtgf\":\"Nada tomado prestado aún\",\"t/YqKh\":\"Eliminar\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Precio del oráculo\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Ir al panel de control V3\",\"tOcg3N\":\"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\",\"tOuXfv\":[\"Cantidad a tomar prestado para alcanzar el \",[\"0\"],\"% de utilización\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Por favor, conecta tu cartera\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Tus suministros\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Error en la transacción\",\"u706uF\":\"Préstamo flash inválido\",\"u8Gfu7\":[\"Sin resultados de búsqueda\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No hay activos seleccionados para migrar.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrando\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Para el pago de un tipo específico de deuda, el usuario necesita tener una deuda de ese tipo\",\"ulNuNq\":\"Exportar datos a\",\"ulup2p\":\"Comprar Crypto con Fiat\",\"usB84Z\":\"La cantidad máxima disponible para tomar prestado está limitada porque casi se ha alcanzado el límite de préstamo del protocolo.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"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.\",\"vEqxH9\":\"Restakeado\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Ocultar\",\"vMba49\":\"Tomar prestado no está habilitado\",\"vMpNwt\":\"Aprobar con\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Idioma\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"El balance de deuda estable no es cero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"APR de recompensas\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Tu \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Canal de Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"El llamador de la función no es un AToken\",\"wRRqvW\":\"No tienes suministros en este activo\",\"wZFvVU\":\"VOTAR SI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"No tienes balance de AAVE/stkAAVE/aAave para delegar.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Obtener Token ABP v2\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.\",\"x7F2p6\":\"Diferencial actual\",\"x7K5ib\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue \",[\"0\"],\" de prueba gratis en\"],\"x9iLRD\":\"tokens, por favor ve al\",\"xNy/UG\":\"Pagar con\",\"xPm8wv\":\"Aprende más sobre los riesgos involucrados\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Tu información\",\"xaWZ6f\":\"Cambio tipo de APY\",\"xh6k71\":\"El uso de garantías está limitado debido al isolation mode.\",\"xvIklc\":\"El préstamo flash está deshabilitado para este activo, por lo tanto, esta posición no se puede migrar.\",\"y5rS9U\":\"Migrar\",\"y66tBm\":[\"Habilitar \",[\"symbol\"],\" como garantía\"],\"yB1YpA\":\"Modo oscuro\",\"yCrG6m\":\"Tamaño total del mercado\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Resumen de la transacción\",\"yLGmLX\":[\"Restakear \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Dirección no válida\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Haz seguimiento de tu cartera\",\"yh2sjd\":[\"Impacto en el precio \",[\"0\"],\"%\"],\"yhvj6d\":\"No puedes cambiar el uso como modo de garantía para este activo, porque causará una liquidación\",\"ylmtBZ\":\"La aplicación se ejecuta en fork mode.\",\"ymNY32\":[\"No hay fondos suficientes en la reserva\",[\"0\"],\"para tomar prestado\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Cerrar\",\"z4uGQg\":\"El límite de deuda está sobrepasado\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantía elegida no puede ser liquidada\",\"z5Y+p6\":[\"Suministrando \",[\"symbol\"]],\"zCjNKs\":\"No se puede realizar la acción porque la reserva está congelada\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Límite de deuda aislado\",\"zTOjMP\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Deuda restante\",\"zmTPiV\":\"Balance de suministro\",\"zpPbZl\":\"Parámetros de riesgo de liquidación\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menú\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Aprende más\",\"zy9fXn\":[\"Este activo está congelado en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"zys+R6\":\"Ten en cuenta la congestión de la red y los precios del gas.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Balance del suministro después del cambio\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Mostrar activos congelados o pausados\",\"TszKts\":\"Balance de préstamo después del cambio\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file diff --git a/src/locales/fr/messages.js b/src/locales/fr/messages.js index 6f4a7cd4d5..3acfad1ed4 100644 --- a/src/locales/fr/messages.js +++ b/src/locales/fr/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"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.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participer à cette réserve \",[\"symbol\"],\" donne des récompenses annualisées.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Limite d'emprunt\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Emprunter ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"L'emprunt stable n'est pas activé\",\"/yQcJM\":\"Valeur totale\",\"00AB2i\":\"L'utilisateur n'a pas emprunté la devise spécifiée\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Changement de taux\",\"0BF3yK\":\"Désolé, nous n’avons pas trouvé la page que vous cherchiez.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Risque de liquidation\",\"0ojY+Y\":\"Solde actuel v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Modification des garanties\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"À l’heure actuelle, les données sur les prix ne sont pas disponibles pour cette réserve dans le sous-graphe du protocole\",\"1LjK22\":\"Historique des transactions\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1bpx9A\":\"...\",\"1kWUB+\":\"Seuil de liquidation <0/>\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Voir détails\",\"2FYpfJ\":\"Plus\",\"2O3qp5\":\"Liquidités disponibles\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"L’actif ne peut pas être migré en raison d’une restriction de plafond d’approvisionnement dans \",[\"marketName\"],\" v3 marché.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Veuillez saisir une adresse de portefeuille valide.\",\"2eBWE6\":\"Je reconnais les risques encourus.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"L'emprunt stable est activé\",\"34Qfwy\":\"Le plafond d'emprunt est dépassé\",\"39eQRj\":[\"Emprunter \",[\"symbole\"]],\"3BL1xB\":\"Total fourni\",\"3K0oMo\":\"Offre restante\",\"3MoZhl\":\"Il n'y a pas assez de collatéral pour couvrir un nouvel emprunt\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Fournir \",[\"symbole\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Rembourser\",\"3qsjtp\":\"La moyenne pondérée de l'APY pour tous les actifs fournis, y compris les incitations.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrer vers \",[\"0\"],\" Marché v3\"],\"49UFQA\":\"Résultats du vote\",\"4DMZUI\":\"Afficher les transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Petits caractères\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Signez pour continuer\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenez des ressources de test gratuites à l’adresse suivante :\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que \",[\"messageValue\"],\" fourni à ce marché.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"L'offre de dette variable n'est pas nulle\",\"5che++\":\"Pour demander l'accès à ce marché autorisé, veuillez consulter\xA0: <0>Nom du fournisseur d'accès\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" reçu\"],\"5hDe9v\":\"Allocation action requise\",\"5rsnKT\":\"Récompenses disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Voir tous les votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Aperçu\",\"60crCe\":\"Toutes les transactions\",\"62Xcjh\":\"Collatérale\",\"65A04M\":\"Espagnol\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signature\",\"6Jrv+z\":[\"Rembourser \",[\"symbole\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Refroidissement...\",\"6bxci/\":\"Pouvoir de vote\",\"6f8S68\":\"Marchés\",\"6g1gi0\":\"Les propositions\",\"6gvoHP\":\"Copier le message d’erreur\",\"6h3Q5G\":\"Remboursé\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Changer de réseau\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Facteur de santé\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Atteint\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"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.\",\"7aKlMS\":\"Partager sur Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Réclamer tout\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Les données n’ont pas pu être récupérées, veuillez recharger le graphique.\",\"7p5kLi\":\"Tableau de bord\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"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\",\"87pUEW\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs.\"],\"8F1i42\":\"Page introuvable\",\"8G8M0u\":\"Chargement des données...\",\"8Iu1QS\":\"Retiré\",\"8JL93T\":\"Toutes les propositions\",\"8Q51DU\":\"Ajouter au portefeuille\",\"8X/oyn\":\"Montant invalide à frapper\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Déconnecter le portefeuille\",\"8Zz7s5\":\"actifs\",\"8aLW8H\":\"Solde à révoquer\",\"8bOT3H\":\"Taux d'utilisation\",\"8sLe4/\":\"Voir le contrat\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Montrer\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Vous entrez en mode Isolation\",\"9CDK3/\":[\"L'emprunt n'est actuellement pas disponible pour \",[\"0\"],\".\"],\"9GIj3z\":\"Taille de réserve\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Solde de mise en jeu\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votes actuels\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Cet actif a presque atteint son plafond d'emprunt. Il n'y a que \",[\"messageValue\"],\" disponible pour être emprunté sur ce marché.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour être fourni à partir de ce marché.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Jeton sous-jacent\",\"9xSooW\":\"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\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choisissez l’un des services de rampe d’accès\",\"A6dCI6\":[\"Le montant maximal disponible pour emprunter est de <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Vos emprunts\",\"AV7cGz\":\"Examiner les détails de la taxe d'approbation\",\"AZOjB8\":\"Récupération de données...\",\"Ai0jas\":\"Rejoignez la discussion de la communauté\",\"Ajl2rq\":\"Le pouvoir d'emprunt et les actifs sont limités en raison du mode d'isolement.\",\"AqgYNC\":\"Plafond d’emprunt du protocole à 100% pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"Les stETH fournis en garantie continueront d’accumuler des récompenses de staking fournies par les rebasages quotidiens.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"L'utilisation de la garantie est limitée en raison du mode d'isolement. <0>En savoir plus\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Catégorie d'actifs\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Cet actif est gelé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Fiche technique\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Grec\",\"CkTRmy\":[\"Revendication \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Veuillez connecter votre portefeuille pour voir l’outil de migration.\",\"CtGlFb\":[[\"networkName\"],\" Robinet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"La garantie est (principalement) la même devise que celle qui est empruntée\",\"DCnFg0\":[\"Adresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"Je comprends parfaitement les risques liés à la migration.\",\"DONJcV\":\"L'actif sous-jacent ne peut pas être sauvé\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave par mois\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collatéralisation\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Désactivé\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Reprise \",[\"symbol\"]],\"Ebgc76\":[\"Retrait \",[\"symbole\"]],\"EdQY6l\":\"Aucun/Aucune\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Réactiver la période de recharge pour annuler le pieu \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrer vers la v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Pour en savoir plus.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Solde actuel de la v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Puissance d'emprunt utilisée\",\"FPKEug\":\"Opération non prise en charge\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"sur\",\"Fjw9N+\":\"Actifs à déposer\",\"FmN0fk\":\"Remise en jeu\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Changer de mode E\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Actifs\",\"GgEj+0\":\"Mode lecture seule. Connectez-vous à un portefeuille pour effectuer des transactions.\",\"GjkIKV\":\"Prend fin\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Désolé, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Fenêtre d'arrêt de staking\",\"HpK/8d\":\"Recharger\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"La ressource ne peut pas être migrée vers \",[\"marketName\"],\" v3 Marché puisque l’actif collatéral activera le mode d’isolation.\"],\"Hvwnm9\":[\"La quantité maximale disponible pour l’approvisionnement est limitée parce que le plafond d’approvisionnement du protocole est à \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Le montant total de vos actifs libellés en USD qui peut être utilisé comme garantie pour emprunter des actifs.\",\"IAD2SB\":[\"Prétendant \",[\"symbol\"]],\"IG9X9/\":\"L’emprunt de cet actif est limité à un certain montant afin de minimiser l’insolvabilité du pool de liquidités.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"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\",\"IP+I/j\":\"Période de recharge\",\"IaA40H\":\"Liquidation à\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Gérer l’analytique\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Déjalonnement \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Vous ne pouvez pas utiliser cette devise comme garantie\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Pas assez de solde sur votre portefeuille\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Solde du portefeuille\",\"JtwD8u\":\"Emprunter le solde après le remboursement\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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\xA0%, cela signifie que la position sera liquidée lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.\",\"KYAjf3\":\"Isolé\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Changement de mode E\",\"KnN1Tu\":\"Expire\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Mauvais réseau\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Entrez l'adresse ETH\",\"KvG1xW\":\"Réclamer\",\"L+8Lzs\":\"LTV actuelle\",\"L+qiq+\":\"Marché\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Pas de pouvoir de vote\",\"LL0zks\":\"Peut être collatéral\",\"LLdJWu\":\"AAVE Réclamable\",\"LSIpNK\":\"Emprunter et rembourser dans le même bloc n'est pas autorisé\",\"LVt3TI\":[\"<0>Tolérance de glissement <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Astuce : Essayez d’augmenter le glissement ou de réduire la quantité d’entrée\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Adresse du destinataire\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vue de staking\",\"McHlGl\":\"Changement d’APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si le facteur de santé descend en dessous de 1, la liquidation de votre collatéral peut être déclenchée.\",\"Mm/DVQ\":\"Vous avez annulé la transaction.\",\"MnE2QX\":\"Emprunter des informations\",\"MuDFEQ\":\"Valeur de retour invalide de la fonction flashloan executor\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"En attente...\",\"NK9ikO\":\"Solde du portefeuille\",\"NMt2CB\":\"Montant réclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Contrat de collectionneur\",\"NfpPeS\":\"Rien staké\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Le plafond de mintage non soutenu est dépassé\",\"O+tyU+\":[\"Le montant maximal disponible pour emprunter sur cet actif est limité car le plafond de la dette est à \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Aperçu de la proposition\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Réinitialisation\",\"Og2SKn\":\"handicapé\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Site internet\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirer\",\"P1dURE\":\"Révoquer le pouvoir\",\"P2WCD/\":[\"L’actif sous-jacent n’existe pas dans \",[\"marketName\"],\" v3 Market, par conséquent, cette position ne peut pas être migrée.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Mise en jeu ABPT\",\"P72/OW\":\"La moyenne pondérée de l'APY pour tous les actifs empruntés, y compris les incitatifs.\",\"P7e6Ug\":\"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Emprunter apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Seuil de liquidation\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Non atteint\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Désactiver \",[\"symbol\"],\" comme garantie\"],\"RMtxNk\":\"Différentiel\",\"RNK49r\":\"Signature non valide\",\"RS0o7b\":\"État\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Détails de la proposition\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"L'actif n'est pas répertorié\",\"Rj01Fz\":\"Liens\",\"RmWFEe\":\"APR staké\",\"RtBLm7\":\"Le facteur santé est inférieur au seuil de liquidation\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Activé\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fonds dans le Safety Module\",\"SENccp\":\"Si l’erreur persiste,<0/> vous pouvez la signaler à ce\",\"SM58dD\":\"Quantité en temps de recharge\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Seuil de liquidation\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.\",\"SZRUQ4\":\"Glissement maximal\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"Sk2zW9\":\"Désactiver le E-mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Le fournisseur d'adresses de pool n'est pas enregistré\",\"T/AIqG\":\"Limite d’approvisionnement du protocole à 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Emprunter\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Pénalité de liquidation\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"L'actif ne peut être utilisé comme garantie qu'en mode isolé.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"L'utilisateur n'a pas de dette à taux stable impayée sur cette réserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recharger la page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"L’application s’exécute en mode réseau de test. Découvrez comment cela fonctionne dans\",\"U9btTk\":\"L'actif n'est pas empruntable en mode d'isolement\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Détails\",\"UTTKmT\":\"Temps de recharge de la mise activé\",\"UXeR72\":\"Ces fonds ont été empruntés et ne peuvent pas être retirés pour le moment.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Aucune récompense à réclamer\",\"V0f2Xv\":\"Facteur de réserve\",\"V1HK43\":\"Risques liés à la migration\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Dette couverte\",\"VHOVEJ\":\"Connecter le portefeuille\",\"VMfYUK\":\"Sécurité de votre garantie déposée contre les actifs empruntés et sa valeur sous-jacente.\",\"VOAZJh\":\"Total des emprunts\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Examiner les détails de la transaction\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Rien fourni pour le moment\",\"W5kTFy\":\"Vote\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode augmente votre LTV pour une catégorie d'actifs sélectionnée jusqu'à <0/>. <1>En savoir plus\",\"WPWG/y\":\"Statut et configuration de la réserve\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"L'utilisateur ne peut pas retirer plus que le solde disponible\",\"WaZyaV\":\"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Étant donné que cette ressource est suspendue, aucune action ne peut être entreprise jusqu’à nouvel ordre\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Pour emprunter, vous devez fournir tout actif à utiliser comme garantie.\",\"X/ITG9\":\"Copier le texte d'erreur\",\"X3Pp6x\":\"Utilisé comme collatéral\",\"X4Zt7j\":\"L'action ne peut pas être effectuée car la réserve est mise en pause\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Vous quitterez le mode d'isolement et d'autres jetons peuvent désormais être utilisés comme collatéral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTER NON\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Activation du E-Mode\",\"YSodyW\":\"Cette action réduira votre facteur de santé. Veuillez garder à l’esprit le risque accru de liquidation des garanties.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Le mode réseau de test est activé\",\"YrDxdO\":\"Si votre prêt à la valeur dépasse le seuil de liquidation, votre garantie fournie peut être liquidée.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Les conditions de rééquilibrage des taux d'intérêt n'ont pas été remplies\",\"YyydIq\":[\"Ajouter \",[\"0\"],\" à Wallet pour suivre votre solde.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gouvernance Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Mode efficacité (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Désactiver le réseau de test\",\"Zbyywy\":\"Coupure maximale\",\"ZfUGFb\":\"Avant de déposer\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valeur de liquidation\",\"ZrEc8j\":\"Nous n’avons trouvé aucun élément lié à votre recherche. Réessayez avec un autre nom, symbole ou adresse de ressource.\",\"ZsLF7e\":\"Activé\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Temps restant pour dépiquer\",\"a5RYZd\":\"La désactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santé.\",\"a7u1N9\":\"Prix\",\"a9D+6D\":\"Non jalonné\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"aOKIms\":\"Les paramètres de tableau devraient être de même longueur ne sont pas\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Prêt APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Avertissement de période de refroidissement\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Actif\",\"bXQ/Og\":\"Partager sur Twitter\",\"bXr0ee\":\"Les actifs isolés ont un pouvoir d'emprunt limité et les autres actifs ne peuvent pas être utilisés comme garantie.\",\"bYmAV1\":\"Adresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Le montant demandé est supérieur au montant maximum du prêt en mode taux stable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Fournir\",\"bxN6EM\":\"Impossible de désactiver le mode E\",\"c91vuQ\":\"L'adresse n'est pas un contrat\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Vous ne pouvez pas retirer ce montant car cela entraînera un appel de garantie\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Votre pouvoir de vote est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"cLo09S\":\"Détails des risques\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Remboursement \",[\"symbole\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Discussion de forum\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"Vous n'avez pas participé à cette proposition\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gouvernance\",\"dEgA5A\":\"Annuler\",\"dIsyWh\":\"Échec de la validation LTV\",\"dOB5nW\":[\"La quantité maximale disponible pour la fourniture est de <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Actifs à emprunter\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"L’emprunt est désactivé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"djsg0o\":\"Usage de collatéral\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Jeton de dette Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 des adresses\",\"eD8WX/\":\"L'action nécessite une réserve active\",\"eJRJ04\":\"Montant à la mise en jeu\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Récompenses de staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aucune transaction n’a encore été effectuée.\",\"ebLGGN\":\"Total emprunté\",\"ecqEvn\":\"Le solde de la garantie est de 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible sur\",\"enruNF\":\"Commence\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Arrêter de staker maintenant\",\"evw5ha\":\"Valeur nette\",\"ezcU16\":\"Obtenir le jeton ABP\",\"f3W0Ej\":[\"Vous êtes passé au tarif \",[\"0\"]],\"fMJQZK\":\"Emprunté\",\"fZ5Vnu\":\"Reçu\",\"firl9Q\":\"Votre prêt actuel à la valeur en fonction de votre collatéral fournie.\",\"fldjW9\":\"Prévisualiser tx et migrer\",\"fsBGk0\":\"Solde\",\"fu1Dbh\":[\"Retirer \",[\"symbole\"]],\"fwjWSI\":\"Fourni\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Alimenté par\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"Foire aux questions\",\"g9zzqS\":\"A voté NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Mode réseau test\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Cet actif est gelé en raison d’une décision de gouvernance du protocole Aave. <0>Plus d’informations\",\"gTHi2T\":\"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo\",\"gVW59Y\":\"Veuillez connecter votre portefeuille pour obtenir des ressources de réseau de test gratuites.\",\"gcFNxP\":\"Approuver Confirmé\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Adresse zéro non-valide\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Frais de protocole de pont invalide\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\". .CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activer le temps de recharge\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY Net\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Revendiqué\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Montant\",\"hjDCQr\":\"Il y a eu une erreur. Veuillez essayer de modifier les paramètres ou <0><1>copier l'erreur\",\"hom7qf\":\"Réclamer\",\"hpHJ4I\":\"Garantie liquidée\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Emprunter \",[\"symbole\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"À propos de GHO\",\"iChbOF\":\"Paramètres de prêt flash incohérents\",\"iEPVHF\":\"Pas assez de pouvoir de vote pour participer à cette proposition\",\"iEW87X\":\"Délégation de pouvoirs\",\"iEju36\":[\"Vous avez voté \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Sélectionner la tolérance de glissement\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Entrez un montant\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens n'est pas la même chose que de les staker . Si vous souhaitez staker votre\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Utilisez-le pour voter pour ou contre les propositions actives.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Informations sur le collectionneur\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"L'utilisation du collatéral est limitée en raison du mode d'isolation.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Fournir votre\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Désactiver le E-mode\",\"jKYzR1\":\"Activer le E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Temps de recharge restant\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migré\",\"jmXdoY\":\"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accéder à tous les actifs\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Non disponible\",\"k/sb6z\":\"Choisir la langue\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Réclamer \",[\"0\"]],\"kH6wUX\":\"Impact sur les prix\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" Actifs sélectionnés\"],\"kN1Yg5\":\"Pour rembourser au nom d'un utilisateur, un montant explicite à rembourser est nécessaire\",\"kRTD40\":[\"Montant de remboursement à atteindre \",[\"0\"],\"% d’utilisation\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Le plafond d'approvisionnement est dépassé\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\". JSON (en anglais seulement)\",\"ks2LWT\":\"Le plafond de la dette n'est pas nul\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"L’actif ne peut pas être migré en raison d’une liquidité insuffisante ou d’une limitation du plafond d’emprunt \",[\"marketName\"],\" v3 marché.\"],\"lVhKKI\":\"A voté YAE\",\"lWLqxB\":\"Nous n’avons trouvé aucune transaction liée à votre recherche. Réessayez avec un autre nom de ressource ou réinitialisez les filtres.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Anglais\",\"lfEjIE\":\"En savoir plus dans notre <0>guide FAQ\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Émission totale par jour\",\"m7r7Hh\":\"Sélection d’actifs d’emprunt\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs ou utiliser <0>\",[\"0\"],\" pour transférer votre \",[\"network\"],\" actif.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Acheter \",[\"cryptoSymbol\"],\" avec Fiat\"],\"mvCXBY\":\"Mise en jeu AAVE\",\"mwdzil\":\"D'accord, fermer\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"L'actif ne peut pas être utilisé comme collatéral.\",\"n+SX4g\":\"Développeurs\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Fournir apy\",\"nJgsQu\":\"Avec un pouvoir de vote de <0/>\",\"nLC6tu\":\"Français\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Peut être exécuté\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Les deux\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Quelque chose s’est mal passé\",\"nxyWvj\":\"Le retrait de ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"L'approvisionnement en aTokens n'est pas nul\",\"o5ooMr\":\"Dette\",\"o7J4JM\":\"Filtrer\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Temps de recharge pour déstaker\",\"oJ5ZiG\":\"L'utilisateur n'a pas de dette à taux variable impayée sur cette réserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Ressources de test\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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é.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible au dépôt\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Rien n’a été trouvé\",\"owSsI3\":\"Signatures prêtes\",\"p+R52m\":\"Accéder à Balancer Pool\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour être emprunté à ce marché.\",\"p45alK\":\"Configurer la délégation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Le solde sous-jacent doit être supérieur à 0\",\"pgWG9H\":\"Pas assez de solde staké\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Je comprends comment fonctionnent le temps de recharge (\",[\"0\"],\") et le retrait (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"L'appelant de cette fonction doit être un pool\",\"q/51mF\":\"Migrer vers la V3\",\"q3df11\":\"Stratégie de taux d’intérêt\",\"q6lAbz\":\"Staké\",\"qB4kPi\":\"Fournir APY\",\"qENI8q\":\"Paramètres globaux\",\"qGz5zl\":\"Solde de garantie après remboursement\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copier l'erreur\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.\",\"qY2jnw\":\"Expiration invalide\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Montant non valide à brûler\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Le montant doit être supérieur à 0\",\"rQ+R+0\":\"Sélection d’actifs d’approvisionnement\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Afficher les actifs avec 0 solde\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Vie privée\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Réclamez toutes les récompenses\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Votre pouvoir de proposition est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Réviser tx\",\"sP2+gB\":\"NON\",\"sQv06Y\":\"pour\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Vous unstaké ici\",\"smJNwH\":\"Disponible à emprunter\",\"solypO\":\"Le facteur de santé n'est pas inférieur au seuil\",\"sr0UJD\":\"Retourner\",\"ss5GCK\":\"L'adresse du fournisseur d'adresses du pool n'est pas valide\",\"swEgK4\":\"Vos informations de vote\",\"t+wtgf\":\"Aucun emprunt pour l'instant\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Prix Oracle\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Accéder au tableau de bord V3\",\"tOcg3N\":\"Étant donné que cet actif est gelé, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord\",\"tOuXfv\":[\"Emprunter le montant à atteindre \",[\"0\"],\"% d’utilisation\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"S'il vous plaît, connectez votre portefeuille\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Vos ressources\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"La transaction a échoué\",\"u706uF\":\"Prime flash non valide\",\"u8Gfu7\":[\"Aucun résultat de recherche\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"Aucune ressource n’a été sélectionnée pour la migration.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migration\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Exporter des données vers\",\"ulup2p\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"usB84Z\":\"Le montant maximum disponible pour emprunter est limité car le plafond d’emprunt du protocole est presque atteint.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacité d’emprunt restante pour effectuer le transfert de dette.\",\"vEqxH9\":\"Restauré\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Cacher\",\"vMba49\":\"L'emprunt n'est pas activé\",\"vMpNwt\":\"Approuvez avec\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"L'offre de dette stable n'est pas nulle\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Récompenses APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Vous \",[\"action\"],\" <0/> \",[\"symbole\"]],\"wBIsjb\":\"Canal Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"L'appelant de la fonction n'est pas un AToken\",\"wRRqvW\":\"Vous n'avez pas de fournitures dans cette devise\",\"wZFvVU\":\"VOTER OUI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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 «\xA0Faucet\xA0» 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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Les ressources sélectionnées ont été migrées avec succès. Rendez-vous sur le tableau de bord du marché pour les voir.\",\"x7F2p6\":\"Différentiel de courant\",\"x7K5ib\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenir un test gratuit \",[\"0\"],\" à\"],\"x9iLRD\":\"tokens, veuillez vous rendre sur\",\"xNy/UG\":\"Rembourser avec\",\"xPm8wv\":\"En savoir plus sur les risques encourus\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Vos informations\",\"xaWZ6f\":\"Changement de type APY\",\"xh6k71\":\"L’utilisation des garanties est limitée en raison du mode d’isolation.\",\"xvIklc\":\"Flashloan est désactivé pour cet actif, cette position ne peut donc pas être migrée.\",\"y5rS9U\":\"Émigrer\",\"y66tBm\":[\"Activer \",[\"symbol\"],\" comme collatéral\"],\"yB1YpA\":\"Mode Sombre\",\"yCrG6m\":\"Taille totale du marché\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Aperçu des transactions\",\"yLGmLX\":[\"Remise en jeu \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Pas une adresse valide\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Suivre le portefeuille\",\"yh2sjd\":[\"Impact sur les prix \",[\"0\"],\"%\"],\"yhvj6d\":\"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraînera un appel de garantie\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Il n'y a pas assez de fonds dans la \",[\"0\"],\" réserve pour emprunter\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Fermer\",\"z4uGQg\":\"Le plafond de la dette est dépassé\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantie choisie ne peut être liquidée\",\"z5Y+p6\":[\"Fournir \",[\"symbole\"]],\"zCjNKs\":\"L'action ne peut pas être effectuée car la réserve est gelée\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Plafond de la dette isolée\",\"zTOjMP\":\"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Dette restante\",\"zmTPiV\":\"Bilan d'approvisionnement\",\"zpPbZl\":\"Paramètres du risque de liquidation\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Apprendre encore plus\",\"zy9fXn\":[\"L’actif est gelé \",[\"marketName\"],\" v3, donc cette position ne peut pas être migrée.\"],\"zys+R6\":\"Faites attention à la congestion du réseau et aux prix de l’essence.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Bilan de l’alimentation après le changement\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Afficher les ressources gelées ou mises en pause\",\"TszKts\":\"Emprunter le solde après le changement\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"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.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participer à cette réserve \",[\"symbol\"],\" donne des récompenses annualisées.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Limite d'emprunt\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Emprunter ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"L'emprunt stable n'est pas activé\",\"/yQcJM\":\"Valeur totale\",\"00AB2i\":\"L'utilisateur n'a pas emprunté la devise spécifiée\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Changement de taux\",\"0BF3yK\":\"Désolé, nous n’avons pas trouvé la page que vous cherchiez.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Risque de liquidation\",\"0ojY+Y\":\"Solde actuel v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Modification des garanties\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"À l’heure actuelle, les données sur les prix ne sont pas disponibles pour cette réserve dans le sous-graphe du protocole\",\"1LjK22\":\"Historique des transactions\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Seuil de liquidation <0/>\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Voir détails\",\"2FYpfJ\":\"Plus\",\"2O3qp5\":\"Liquidités disponibles\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"L’actif ne peut pas être migré en raison d’une restriction de plafond d’approvisionnement dans \",[\"marketName\"],\" v3 marché.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Veuillez saisir une adresse de portefeuille valide.\",\"2eBWE6\":\"Je reconnais les risques encourus.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"L'emprunt stable est activé\",\"34Qfwy\":\"Le plafond d'emprunt est dépassé\",\"39eQRj\":[\"Emprunter \",[\"symbole\"]],\"3BL1xB\":\"Total fourni\",\"3K0oMo\":\"Offre restante\",\"3MoZhl\":\"Il n'y a pas assez de collatéral pour couvrir un nouvel emprunt\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Fournir \",[\"symbole\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Rembourser\",\"3qsjtp\":\"La moyenne pondérée de l'APY pour tous les actifs fournis, y compris les incitations.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrer vers \",[\"0\"],\" Marché v3\"],\"49UFQA\":\"Résultats du vote\",\"4DMZUI\":\"Afficher les transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Petits caractères\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Signez pour continuer\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenez des ressources de test gratuites à l’adresse suivante :\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que \",[\"messageValue\"],\" fourni à ce marché.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"L'offre de dette variable n'est pas nulle\",\"5che++\":\"Pour demander l'accès à ce marché autorisé, veuillez consulter\xA0: <0>Nom du fournisseur d'accès\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" reçu\"],\"5hDe9v\":\"Allocation action requise\",\"5rsnKT\":\"Récompenses disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Voir tous les votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Aperçu\",\"60crCe\":\"Toutes les transactions\",\"62Xcjh\":\"Collatérale\",\"65A04M\":\"Espagnol\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signature\",\"6Jrv+z\":[\"Rembourser \",[\"symbole\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Refroidissement...\",\"6bxci/\":\"Pouvoir de vote\",\"6f8S68\":\"Marchés\",\"6g1gi0\":\"Les propositions\",\"6gvoHP\":\"Copier le message d’erreur\",\"6h3Q5G\":\"Remboursé\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Changer de réseau\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Facteur de santé\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Atteint\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"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.\",\"7aKlMS\":\"Partager sur Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Réclamer tout\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Les données n’ont pas pu être récupérées, veuillez recharger le graphique.\",\"7p5kLi\":\"Tableau de bord\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"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\",\"87pUEW\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs.\"],\"8F1i42\":\"Page introuvable\",\"8G8M0u\":\"Chargement des données...\",\"8Iu1QS\":\"Retiré\",\"8JL93T\":\"Toutes les propositions\",\"8Q51DU\":\"Ajouter au portefeuille\",\"8X/oyn\":\"Montant invalide à frapper\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Déconnecter le portefeuille\",\"8Zz7s5\":\"actifs\",\"8aLW8H\":\"Solde à révoquer\",\"8bOT3H\":\"Taux d'utilisation\",\"8sLe4/\":\"Voir le contrat\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Montrer\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Vous entrez en mode Isolation\",\"9CDK3/\":[\"L'emprunt n'est actuellement pas disponible pour \",[\"0\"],\".\"],\"9GIj3z\":\"Taille de réserve\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Solde de mise en jeu\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votes actuels\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Cet actif a presque atteint son plafond d'emprunt. Il n'y a que \",[\"messageValue\"],\" disponible pour être emprunté sur ce marché.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour être fourni à partir de ce marché.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Jeton sous-jacent\",\"9xSooW\":\"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\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choisissez l’un des services de rampe d’accès\",\"A6dCI6\":[\"Le montant maximal disponible pour emprunter est de <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Vos emprunts\",\"AV7cGz\":\"Examiner les détails de la taxe d'approbation\",\"AZOjB8\":\"Récupération de données...\",\"Ai0jas\":\"Rejoignez la discussion de la communauté\",\"Ajl2rq\":\"Le pouvoir d'emprunt et les actifs sont limités en raison du mode d'isolement.\",\"AqgYNC\":\"Plafond d’emprunt du protocole à 100% pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"Les stETH fournis en garantie continueront d’accumuler des récompenses de staking fournies par les rebasages quotidiens.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"L'utilisation de la garantie est limitée en raison du mode d'isolement. <0>En savoir plus\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Catégorie d'actifs\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Cet actif est gelé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Fiche technique\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Grec\",\"CkTRmy\":[\"Revendication \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Veuillez connecter votre portefeuille pour voir l’outil de migration.\",\"CtGlFb\":[[\"networkName\"],\" Robinet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"La garantie est (principalement) la même devise que celle qui est empruntée\",\"DCnFg0\":[\"Adresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"Je comprends parfaitement les risques liés à la migration.\",\"DONJcV\":\"L'actif sous-jacent ne peut pas être sauvé\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave par mois\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collatéralisation\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Désactivé\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Reprise \",[\"symbol\"]],\"Ebgc76\":[\"Retrait \",[\"symbole\"]],\"EdQY6l\":\"Aucun/Aucune\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Réactiver la période de recharge pour annuler le pieu \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrer vers la v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Pour en savoir plus.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Solde actuel de la v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Puissance d'emprunt utilisée\",\"FPKEug\":\"Opération non prise en charge\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"sur\",\"Fjw9N+\":\"Actifs à déposer\",\"FmN0fk\":\"Remise en jeu\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Changer de mode E\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Actifs\",\"GgEj+0\":\"Mode lecture seule. Connectez-vous à un portefeuille pour effectuer des transactions.\",\"GjkIKV\":\"Prend fin\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Désolé, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Fenêtre d'arrêt de staking\",\"HpK/8d\":\"Recharger\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"La ressource ne peut pas être migrée vers \",[\"marketName\"],\" v3 Marché puisque l’actif collatéral activera le mode d’isolation.\"],\"Hvwnm9\":[\"La quantité maximale disponible pour l’approvisionnement est limitée parce que le plafond d’approvisionnement du protocole est à \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Le montant total de vos actifs libellés en USD qui peut être utilisé comme garantie pour emprunter des actifs.\",\"IAD2SB\":[\"Prétendant \",[\"symbol\"]],\"IG9X9/\":\"L’emprunt de cet actif est limité à un certain montant afin de minimiser l’insolvabilité du pool de liquidités.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"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\",\"IP+I/j\":\"Période de recharge\",\"IaA40H\":\"Liquidation à\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Gérer l’analytique\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Déjalonnement \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Vous ne pouvez pas utiliser cette devise comme garantie\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Pas assez de solde sur votre portefeuille\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Solde du portefeuille\",\"JtwD8u\":\"Emprunter le solde après le remboursement\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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\xA0%, cela signifie que la position sera liquidée lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.\",\"KYAjf3\":\"Isolé\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Changement de mode E\",\"KnN1Tu\":\"Expire\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Mauvais réseau\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Entrez l'adresse ETH\",\"KvG1xW\":\"Réclamer\",\"L+8Lzs\":\"LTV actuelle\",\"L+qiq+\":\"Marché\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Pas de pouvoir de vote\",\"LL0zks\":\"Peut être collatéral\",\"LLdJWu\":\"AAVE Réclamable\",\"LSIpNK\":\"Emprunter et rembourser dans le même bloc n'est pas autorisé\",\"LVt3TI\":[\"<0>Tolérance de glissement <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Astuce : Essayez d’augmenter le glissement ou de réduire la quantité d’entrée\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Adresse du destinataire\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vue de staking\",\"McHlGl\":\"Changement d’APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si le facteur de santé descend en dessous de 1, la liquidation de votre collatéral peut être déclenchée.\",\"Mm/DVQ\":\"Vous avez annulé la transaction.\",\"MnE2QX\":\"Emprunter des informations\",\"MuDFEQ\":\"Valeur de retour invalide de la fonction flashloan executor\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"En attente...\",\"NK9ikO\":\"Solde du portefeuille\",\"NMt2CB\":\"Montant réclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Contrat de collectionneur\",\"NfpPeS\":\"Rien staké\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Le plafond de mintage non soutenu est dépassé\",\"O+tyU+\":[\"Le montant maximal disponible pour emprunter sur cet actif est limité car le plafond de la dette est à \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Aperçu de la proposition\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Réinitialisation\",\"Og2SKn\":\"handicapé\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Site internet\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirer\",\"P1dURE\":\"Révoquer le pouvoir\",\"P2WCD/\":[\"L’actif sous-jacent n’existe pas dans \",[\"marketName\"],\" v3 Market, par conséquent, cette position ne peut pas être migrée.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Mise en jeu ABPT\",\"P72/OW\":\"La moyenne pondérée de l'APY pour tous les actifs empruntés, y compris les incitatifs.\",\"P7e6Ug\":\"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Emprunter apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Seuil de liquidation\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Non atteint\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Désactiver \",[\"symbol\"],\" comme garantie\"],\"RMtxNk\":\"Différentiel\",\"RNK49r\":\"Signature non valide\",\"RS0o7b\":\"État\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Détails de la proposition\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"L'actif n'est pas répertorié\",\"Rj01Fz\":\"Liens\",\"RmWFEe\":\"APR staké\",\"RtBLm7\":\"Le facteur santé est inférieur au seuil de liquidation\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Activé\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fonds dans le Safety Module\",\"SENccp\":\"Si l’erreur persiste,<0/> vous pouvez la signaler à ce\",\"SM58dD\":\"Quantité en temps de recharge\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Seuil de liquidation\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.\",\"SZRUQ4\":\"Glissement maximal\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"Sk2zW9\":\"Désactiver le E-mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Le fournisseur d'adresses de pool n'est pas enregistré\",\"T/AIqG\":\"Limite d’approvisionnement du protocole à 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Emprunter\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Pénalité de liquidation\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"L'actif ne peut être utilisé comme garantie qu'en mode isolé.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"L'utilisateur n'a pas de dette à taux stable impayée sur cette réserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recharger la page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"L’application s’exécute en mode réseau de test. Découvrez comment cela fonctionne dans\",\"U9btTk\":\"L'actif n'est pas empruntable en mode d'isolement\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Détails\",\"UTTKmT\":\"Temps de recharge de la mise activé\",\"UXeR72\":\"Ces fonds ont été empruntés et ne peuvent pas être retirés pour le moment.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Aucune récompense à réclamer\",\"V0f2Xv\":\"Facteur de réserve\",\"V1HK43\":\"Risques liés à la migration\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Dette couverte\",\"VHOVEJ\":\"Connecter le portefeuille\",\"VMfYUK\":\"Sécurité de votre garantie déposée contre les actifs empruntés et sa valeur sous-jacente.\",\"VOAZJh\":\"Total des emprunts\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Examiner les détails de la transaction\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Rien fourni pour le moment\",\"W5kTFy\":\"Vote\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode augmente votre LTV pour une catégorie d'actifs sélectionnée jusqu'à <0/>. <1>En savoir plus\",\"WPWG/y\":\"Statut et configuration de la réserve\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"L'utilisateur ne peut pas retirer plus que le solde disponible\",\"WaZyaV\":\"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Étant donné que cette ressource est suspendue, aucune action ne peut être entreprise jusqu’à nouvel ordre\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Pour emprunter, vous devez fournir tout actif à utiliser comme garantie.\",\"X/ITG9\":\"Copier le texte d'erreur\",\"X3Pp6x\":\"Utilisé comme collatéral\",\"X4Zt7j\":\"L'action ne peut pas être effectuée car la réserve est mise en pause\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Vous quitterez le mode d'isolement et d'autres jetons peuvent désormais être utilisés comme collatéral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTER NON\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Activation du E-Mode\",\"YSodyW\":\"Cette action réduira votre facteur de santé. Veuillez garder à l’esprit le risque accru de liquidation des garanties.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Le mode réseau de test est activé\",\"YrDxdO\":\"Si votre prêt à la valeur dépasse le seuil de liquidation, votre garantie fournie peut être liquidée.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Les conditions de rééquilibrage des taux d'intérêt n'ont pas été remplies\",\"YyydIq\":[\"Ajouter \",[\"0\"],\" à Wallet pour suivre votre solde.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gouvernance Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Mode efficacité (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Désactiver le réseau de test\",\"Zbyywy\":\"Coupure maximale\",\"ZfUGFb\":\"Avant de déposer\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valeur de liquidation\",\"ZrEc8j\":\"Nous n’avons trouvé aucun élément lié à votre recherche. Réessayez avec un autre nom, symbole ou adresse de ressource.\",\"ZsLF7e\":\"Activé\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Temps restant pour dépiquer\",\"a5RYZd\":\"La désactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santé.\",\"a7u1N9\":\"Prix\",\"a9D+6D\":\"Non jalonné\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"aOKIms\":\"Les paramètres de tableau devraient être de même longueur ne sont pas\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Prêt APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Avertissement de période de refroidissement\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Actif\",\"bXQ/Og\":\"Partager sur Twitter\",\"bXr0ee\":\"Les actifs isolés ont un pouvoir d'emprunt limité et les autres actifs ne peuvent pas être utilisés comme garantie.\",\"bYmAV1\":\"Adresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Le montant demandé est supérieur au montant maximum du prêt en mode taux stable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Fournir\",\"bxN6EM\":\"Impossible de désactiver le mode E\",\"c91vuQ\":\"L'adresse n'est pas un contrat\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Vous ne pouvez pas retirer ce montant car cela entraînera un appel de garantie\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Votre pouvoir de vote est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"cLo09S\":\"Détails des risques\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Remboursement \",[\"symbole\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Discussion de forum\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"Vous n'avez pas participé à cette proposition\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gouvernance\",\"dEgA5A\":\"Annuler\",\"dIsyWh\":\"Échec de la validation LTV\",\"dOB5nW\":[\"La quantité maximale disponible pour la fourniture est de <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Actifs à emprunter\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"L’emprunt est désactivé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"djsg0o\":\"Usage de collatéral\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Jeton de dette Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 des adresses\",\"eD8WX/\":\"L'action nécessite une réserve active\",\"eJRJ04\":\"Montant à la mise en jeu\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Récompenses de staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aucune transaction n’a encore été effectuée.\",\"ebLGGN\":\"Total emprunté\",\"ecqEvn\":\"Le solde de la garantie est de 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible sur\",\"enruNF\":\"Commence\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Arrêter de staker maintenant\",\"evw5ha\":\"Valeur nette\",\"ezcU16\":\"Obtenir le jeton ABP\",\"f3W0Ej\":[\"Vous êtes passé au tarif \",[\"0\"]],\"fMJQZK\":\"Emprunté\",\"fZ5Vnu\":\"Reçu\",\"firl9Q\":\"Votre prêt actuel à la valeur en fonction de votre collatéral fournie.\",\"fldjW9\":\"Prévisualiser tx et migrer\",\"fsBGk0\":\"Solde\",\"fu1Dbh\":[\"Retirer \",[\"symbole\"]],\"fwjWSI\":\"Fourni\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Alimenté par\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"Foire aux questions\",\"g9zzqS\":\"A voté NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Mode réseau test\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Cet actif est gelé en raison d’une décision de gouvernance du protocole Aave. <0>Plus d’informations\",\"gTHi2T\":\"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo\",\"gVW59Y\":\"Veuillez connecter votre portefeuille pour obtenir des ressources de réseau de test gratuites.\",\"gcFNxP\":\"Approuver Confirmé\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Adresse zéro non-valide\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Frais de protocole de pont invalide\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\". .CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activer le temps de recharge\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY Net\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Revendiqué\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Montant\",\"hjDCQr\":\"Il y a eu une erreur. Veuillez essayer de modifier les paramètres ou <0><1>copier l'erreur\",\"hom7qf\":\"Réclamer\",\"hpHJ4I\":\"Garantie liquidée\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Emprunter \",[\"symbole\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"À propos de GHO\",\"iChbOF\":\"Paramètres de prêt flash incohérents\",\"iEPVHF\":\"Pas assez de pouvoir de vote pour participer à cette proposition\",\"iEW87X\":\"Délégation de pouvoirs\",\"iEju36\":[\"Vous avez voté \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Sélectionner la tolérance de glissement\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Entrez un montant\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens n'est pas la même chose que de les staker . Si vous souhaitez staker votre\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Utilisez-le pour voter pour ou contre les propositions actives.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Informations sur le collectionneur\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"L'utilisation du collatéral est limitée en raison du mode d'isolation.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Fournir votre\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Désactiver le E-mode\",\"jKYzR1\":\"Activer le E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Temps de recharge restant\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migré\",\"jmXdoY\":\"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accéder à tous les actifs\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Non disponible\",\"k/sb6z\":\"Choisir la langue\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Réclamer \",[\"0\"]],\"kH6wUX\":\"Impact sur les prix\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" Actifs sélectionnés\"],\"kN1Yg5\":\"Pour rembourser au nom d'un utilisateur, un montant explicite à rembourser est nécessaire\",\"kRTD40\":[\"Montant de remboursement à atteindre \",[\"0\"],\"% d’utilisation\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Le plafond d'approvisionnement est dépassé\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\". JSON (en anglais seulement)\",\"ks2LWT\":\"Le plafond de la dette n'est pas nul\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"L’actif ne peut pas être migré en raison d’une liquidité insuffisante ou d’une limitation du plafond d’emprunt \",[\"marketName\"],\" v3 marché.\"],\"lVhKKI\":\"A voté YAE\",\"lWLqxB\":\"Nous n’avons trouvé aucune transaction liée à votre recherche. Réessayez avec un autre nom de ressource ou réinitialisez les filtres.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Anglais\",\"lfEjIE\":\"En savoir plus dans notre <0>guide FAQ\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Émission totale par jour\",\"m7r7Hh\":\"Sélection d’actifs d’emprunt\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs ou utiliser <0>\",[\"0\"],\" pour transférer votre \",[\"network\"],\" actif.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Acheter \",[\"cryptoSymbol\"],\" avec Fiat\"],\"mvCXBY\":\"Mise en jeu AAVE\",\"mwdzil\":\"D'accord, fermer\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"L'actif ne peut pas être utilisé comme collatéral.\",\"n+SX4g\":\"Développeurs\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Fournir apy\",\"nJgsQu\":\"Avec un pouvoir de vote de <0/>\",\"nLC6tu\":\"Français\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Peut être exécuté\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Les deux\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Quelque chose s’est mal passé\",\"nxyWvj\":\"Le retrait de ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"L'approvisionnement en aTokens n'est pas nul\",\"o5ooMr\":\"Dette\",\"o7J4JM\":\"Filtrer\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Temps de recharge pour déstaker\",\"oJ5ZiG\":\"L'utilisateur n'a pas de dette à taux variable impayée sur cette réserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Ressources de test\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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é.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible au dépôt\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Rien n’a été trouvé\",\"owSsI3\":\"Signatures prêtes\",\"p+R52m\":\"Accéder à Balancer Pool\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour être emprunté à ce marché.\",\"p45alK\":\"Configurer la délégation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Le solde sous-jacent doit être supérieur à 0\",\"pgWG9H\":\"Pas assez de solde staké\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Je comprends comment fonctionnent le temps de recharge (\",[\"0\"],\") et le retrait (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"L'appelant de cette fonction doit être un pool\",\"q/51mF\":\"Migrer vers la V3\",\"q3df11\":\"Stratégie de taux d’intérêt\",\"q6lAbz\":\"Staké\",\"qB4kPi\":\"Fournir APY\",\"qENI8q\":\"Paramètres globaux\",\"qGz5zl\":\"Solde de garantie après remboursement\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copier l'erreur\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.\",\"qY2jnw\":\"Expiration invalide\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Montant non valide à brûler\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Le montant doit être supérieur à 0\",\"rQ+R+0\":\"Sélection d’actifs d’approvisionnement\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Afficher les actifs avec 0 solde\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Vie privée\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Réclamez toutes les récompenses\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Votre pouvoir de proposition est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Réviser tx\",\"sP2+gB\":\"NON\",\"sQv06Y\":\"pour\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Vous unstaké ici\",\"smJNwH\":\"Disponible à emprunter\",\"solypO\":\"Le facteur de santé n'est pas inférieur au seuil\",\"sr0UJD\":\"Retourner\",\"ss5GCK\":\"L'adresse du fournisseur d'adresses du pool n'est pas valide\",\"swEgK4\":\"Vos informations de vote\",\"t+wtgf\":\"Aucun emprunt pour l'instant\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Prix Oracle\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Accéder au tableau de bord V3\",\"tOcg3N\":\"Étant donné que cet actif est gelé, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord\",\"tOuXfv\":[\"Emprunter le montant à atteindre \",[\"0\"],\"% d’utilisation\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"S'il vous plaît, connectez votre portefeuille\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Vos ressources\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"La transaction a échoué\",\"u706uF\":\"Prime flash non valide\",\"u8Gfu7\":[\"Aucun résultat de recherche\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"Aucune ressource n’a été sélectionnée pour la migration.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migration\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Exporter des données vers\",\"ulup2p\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"usB84Z\":\"Le montant maximum disponible pour emprunter est limité car le plafond d’emprunt du protocole est presque atteint.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacité d’emprunt restante pour effectuer le transfert de dette.\",\"vEqxH9\":\"Restauré\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Cacher\",\"vMba49\":\"L'emprunt n'est pas activé\",\"vMpNwt\":\"Approuvez avec\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"L'offre de dette stable n'est pas nulle\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Récompenses APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Vous \",[\"action\"],\" <0/> \",[\"symbole\"]],\"wBIsjb\":\"Canal Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"L'appelant de la fonction n'est pas un AToken\",\"wRRqvW\":\"Vous n'avez pas de fournitures dans cette devise\",\"wZFvVU\":\"VOTER OUI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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 «\xA0Faucet\xA0» 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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Les ressources sélectionnées ont été migrées avec succès. Rendez-vous sur le tableau de bord du marché pour les voir.\",\"x7F2p6\":\"Différentiel de courant\",\"x7K5ib\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenir un test gratuit \",[\"0\"],\" à\"],\"x9iLRD\":\"tokens, veuillez vous rendre sur\",\"xNy/UG\":\"Rembourser avec\",\"xPm8wv\":\"En savoir plus sur les risques encourus\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Vos informations\",\"xaWZ6f\":\"Changement de type APY\",\"xh6k71\":\"L’utilisation des garanties est limitée en raison du mode d’isolation.\",\"xvIklc\":\"Flashloan est désactivé pour cet actif, cette position ne peut donc pas être migrée.\",\"y5rS9U\":\"Émigrer\",\"y66tBm\":[\"Activer \",[\"symbol\"],\" comme collatéral\"],\"yB1YpA\":\"Mode Sombre\",\"yCrG6m\":\"Taille totale du marché\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Aperçu des transactions\",\"yLGmLX\":[\"Remise en jeu \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Pas une adresse valide\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Suivre le portefeuille\",\"yh2sjd\":[\"Impact sur les prix \",[\"0\"],\"%\"],\"yhvj6d\":\"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraînera un appel de garantie\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Il n'y a pas assez de fonds dans la \",[\"0\"],\" réserve pour emprunter\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Fermer\",\"z4uGQg\":\"Le plafond de la dette est dépassé\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantie choisie ne peut être liquidée\",\"z5Y+p6\":[\"Fournir \",[\"symbole\"]],\"zCjNKs\":\"L'action ne peut pas être effectuée car la réserve est gelée\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Plafond de la dette isolée\",\"zTOjMP\":\"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Dette restante\",\"zmTPiV\":\"Bilan d'approvisionnement\",\"zpPbZl\":\"Paramètres du risque de liquidation\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Apprendre encore plus\",\"zy9fXn\":[\"L’actif est gelé \",[\"marketName\"],\" v3, donc cette position ne peut pas être migrée.\"],\"zys+R6\":\"Faites attention à la congestion du réseau et aux prix de l’essence.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Bilan de l’alimentation après le changement\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Afficher les ressources gelées ou mises en pause\",\"TszKts\":\"Emprunter le solde après le changement\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index 7de7a3dbfd..446cab642d 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -425,6 +425,18 @@ export const getDesignTokens = (mode: 'light' | 'dark') => { } as ThemeOptions; }; +/** + * Subtle press feedback shared by buttons and dropdown triggers: the control scales down + * slightly while active (pointer/touch down), and never when disabled. Pair with a `transform` + * transition (at `motion.duration.hover`) so the release animates back. Reduced-motion users + * get the scale instantly via the global `prefers-reduced-motion` rule in MuiCssBaseline. + */ +const pressScaleActive = { + '&:active:not(.Mui-disabled)': { + transform: 'scale(0.99)', + }, +}; + export function getThemedComponents(theme: AppTheme) { return { components: { @@ -472,10 +484,13 @@ export function getThemedComponents(theme: AppTheme) { root: { borderRadius: '8px', // Hover/focus state transition at 100ms (overrides MUI's 250ms default). + // `transform` is included so the active-press scale animates in and out. transition: theme.transitions.create( - ['background-color', 'box-shadow', 'border-color', 'color'], + ['background-color', 'box-shadow', 'border-color', 'color', 'transform'], { duration: motion.duration.hover } ), + // Subtle press feedback — scale down while active (not when disabled). + ...pressScaleActive, // Keyboard-focus ring in the variant's own text color; ButtonBase zeroes the // native outline, so we set our own (2px, offset 3px out). '&.Mui-focusVisible': { @@ -526,6 +541,28 @@ export function getThemedComponents(theme: AppTheme) { }, ], }, + MuiIconButton: { + styleOverrides: { + root: { + transition: theme.transitions.create(['background-color', 'color', 'transform'], { + duration: motion.duration.hover, + }), + // Subtle press feedback — scale down while active (not when disabled). + ...pressScaleActive, + }, + }, + }, + MuiToggleButton: { + styleOverrides: { + root: { + transition: theme.transitions.create(['background-color', 'color', 'transform'], { + duration: motion.duration.hover, + }), + // Subtle press feedback — scale down while active (not when disabled). + ...pressScaleActive, + }, + }, + }, MuiCheckbox: { defaultProps: { disableRipple: true, From 6433aa8644b2d8372a6fd5db8198ef0338bc816a Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Tue, 21 Jul 2026 19:06:19 +0900 Subject: [PATCH 29/39] feat(dashboard): meatball dropdown icon and smaller table row buttons DotsHorizontalIcon: currentColor meatball icon replacing the '...' text supply dropdown. iconButtonSx (buttonStyles.ts): square icon-only button styling (min-width 0, 0.25rem pad). Desktop table action buttons across the four dashboard lists set to size=small. --- src/components/icons/DotsHorizontalIcon.tsx | 17 +++++++++++++++++ .../BorrowAssetsList/BorrowAssetsListItem.tsx | 2 ++ .../BorrowedPositionsListItem.tsx | 5 +++-- .../SuppliedPositionsListItem.tsx | 3 +++ .../SupplyAssetsList/SupplyAssetsListItem.tsx | 10 +++++----- src/utils/buttonStyles.ts | 14 ++++++++++++++ 6 files changed, 44 insertions(+), 7 deletions(-) create mode 100644 src/components/icons/DotsHorizontalIcon.tsx create mode 100644 src/utils/buttonStyles.ts diff --git a/src/components/icons/DotsHorizontalIcon.tsx b/src/components/icons/DotsHorizontalIcon.tsx new file mode 100644 index 0000000000..e1c8bef38d --- /dev/null +++ b/src/components/icons/DotsHorizontalIcon.tsx @@ -0,0 +1,17 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Horizontal three-dot ("more" / meatball) menu icon. Fills with `currentColor` so it +// inherits the consumer's color (e.g. a palette token via the `color` prop / sx) — which +// is also what makes it Display-P3 capable, since the token resolves to a CSS var. +export const DotsHorizontalIcon = ({ sx, ...rest }: SvgIconProps) => ( + + + + + +); diff --git a/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx b/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx index c2debbe689..f6c5bc4f92 100644 --- a/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx +++ b/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx @@ -95,6 +95,7 @@ export const BorrowAssetsListItem = ({ ) : ( - )} - diff --git a/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListItem.tsx b/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListItem.tsx index bcb6968fb5..d754ac6ab8 100644 --- a/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListItem.tsx +++ b/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListItem.tsx @@ -111,6 +111,7 @@ export const SuppliedPositionsListItem = ({ {showSwitchButton ? ( ) : ( )} + * + * + */ +export const iconButtonSx: SxProps = { + minWidth: 0, + p: '0.25rem', +}; From 55f86d118db2374a2b000f66a4ef8c304d516bbf Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Wed, 22 Jul 2026 09:19:35 +0900 Subject: [PATCH 30/39] refactor(theme): tidy palette tokens, button radii, and menu/header spacing Drop unused palette extensions (background.surface2/header/disabled, other.standardInputLine, highlight token), point success.main at data-green, and add a dedicated per-size border radius for buttons plus a dark-mode "bone" hover color where fg-1/fg-max collided. Also swaps the heroicons chevron for a local ChevronDownIcon, tightens header/ settings menu spacing, and fixes the TopInfoPanel gradient layering. --- src/components/TopInfoPanel/TopInfoPanel.tsx | 4 +- src/components/icons/ChevronDownIcon.tsx | 23 ++++++++++ .../FunCheckout/FunSupplyButton.tsx | 3 +- src/layouts/AppHeader.tsx | 4 +- src/layouts/SettingsMenu.tsx | 2 +- src/layouts/components/StakingMenu.tsx | 2 +- src/utils/buttonStyles.ts | 6 ++- src/utils/figmaColors.ts | 10 ++--- src/utils/theme.tsx | 42 ++++++------------- 9 files changed, 55 insertions(+), 41 deletions(-) create mode 100644 src/components/icons/ChevronDownIcon.tsx diff --git a/src/components/TopInfoPanel/TopInfoPanel.tsx b/src/components/TopInfoPanel/TopInfoPanel.tsx index a25aabfe23..64da50d391 100644 --- a/src/components/TopInfoPanel/TopInfoPanel.tsx +++ b/src/components/TopInfoPanel/TopInfoPanel.tsx @@ -27,7 +27,9 @@ export const TopInfoPanel = ({ pb: { xs: 10, md: 12 }, color: 'fg-1', boxShadow: `0px 1px 0px ${figVars['border-0']}`, - background: `linear-gradient(180deg, ${figVars['info-panel-color-one']} 0%, ${figVars['info-panel-color-two']}, ${figVars['info-panel-color-three']})`, + // gradient (one→two) over solid color-three (a separate bg layer, not a 3rd stop). + // Light tokens are all #fafafa → renders solid; dark gets the tint (P3 via the token vars). + background: `linear-gradient(180deg, ${figVars['info-panel-color-one']} 0%, ${figVars['info-panel-color-two']} 100%), ${figVars['info-panel-color-three']}`, }} > diff --git a/src/components/icons/ChevronDownIcon.tsx b/src/components/icons/ChevronDownIcon.tsx new file mode 100644 index 0000000000..9e647d653d --- /dev/null +++ b/src/components/icons/ChevronDownIcon.tsx @@ -0,0 +1,23 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; +import { figVars } from 'src/utils/figmaColors'; + +// Double-chevron (up/down) dropdown indicator. Uses `currentColor` so the color +// comes from the consumer (e.g. a palette token via the `color` prop / sx). +export const ChevronDownIcon = ({ sx, ...rest }: SvgIconProps) => { + return ( + + + + ); +}; diff --git a/src/components/transactions/FunCheckout/FunSupplyButton.tsx b/src/components/transactions/FunCheckout/FunSupplyButton.tsx index 3e3ea7a4b4..6f77eb2074 100644 --- a/src/components/transactions/FunCheckout/FunSupplyButton.tsx +++ b/src/components/transactions/FunCheckout/FunSupplyButton.tsx @@ -66,7 +66,8 @@ export function FunSupplyButton({ )} diff --git a/src/layouts/components/StakingMenu.tsx b/src/layouts/components/StakingMenu.tsx index aa962c704f..7b5726e3e3 100644 --- a/src/layouts/components/StakingMenu.tsx +++ b/src/layouts/components/StakingMenu.tsx @@ -1,9 +1,9 @@ -import { ChevronDownIcon } from '@heroicons/react/outline'; import { Trans } from '@lingui/macro'; import { Button, SvgIcon, Typography } from '@mui/material'; import Menu from '@mui/material/Menu'; import MenuItem from '@mui/material/MenuItem'; import React from 'react'; +import { ChevronDownIcon } from 'src/components/icons/ChevronDownIcon'; import { useRootStore } from 'src/store/root'; import { NAV_BAR } from 'src/utils/events'; import { onAccent } from 'src/utils/figmaColors'; diff --git a/src/utils/buttonStyles.ts b/src/utils/buttonStyles.ts index 46019c0cec..96e41fa78e 100644 --- a/src/utils/buttonStyles.ts +++ b/src/utils/buttonStyles.ts @@ -2,7 +2,8 @@ import { SxProps, Theme } from '@mui/material'; /** * Icon-only button styling: a square button — no min-width, equal 0.25rem padding on all - * sides. Compose it in `sx` on top of any Button variant/size (it only adjusts sizing): + * sides, and a fixed 0.5rem radius regardless of button size. Compose it in `sx` on top of + * any Button variant/size (it only adjusts sizing): * * diff --git a/src/layouts/components/DarkModeSwitcher.tsx b/src/layouts/components/DarkModeSwitcher.tsx index 3e3085a850..2a4900ae7f 100644 --- a/src/layouts/components/DarkModeSwitcher.tsx +++ b/src/layouts/components/DarkModeSwitcher.tsx @@ -21,7 +21,7 @@ export const DarkModeSwitcher = ({ component = ListItem }: DarkModeSwitcherProps return ( Dark mode} + label={Dark Mode} checked={isDark} onClick={() => setMode(isDark ? 'light' : 'dark')} onSwitchClick={() => trackEvent(SETTINGS.DARK_MODE, { mode: resolvedMode })} diff --git a/src/layouts/components/LanguageSwitcher.tsx b/src/layouts/components/LanguageSwitcher.tsx index 03a61fb70d..38c3a130ba 100644 --- a/src/layouts/components/LanguageSwitcher.tsx +++ b/src/layouts/components/LanguageSwitcher.tsx @@ -1,4 +1,4 @@ -import { CheckIcon, ChevronLeftIcon, ChevronRightIcon } from '@heroicons/react/solid'; +import { CheckIcon, ChevronLeftIcon } from '@heroicons/react/solid'; import { t, Trans } from '@lingui/macro'; import { useLingui } from '@lingui/react'; import { @@ -11,6 +11,7 @@ import { Typography, } from '@mui/material'; import React from 'react'; +import { ChevronRightIcon } from 'src/components/icons/ChevronRightIcon'; import { dynamicActivateLanguage } from '../../libs/LanguageProvider'; @@ -34,11 +35,11 @@ export const LanguageListItem = ({ component = ListItem, onClick }: LanguageList Language - - {i18n._(langMap[i18n.locale as keyof typeof langMap])}{' '} - - - + + {i18n._(langMap[i18n.locale as keyof typeof langMap])} + ); diff --git a/src/layouts/components/SettingSwitchRow.tsx b/src/layouts/components/SettingSwitchRow.tsx index 3173669bc3..72d0c172bb 100644 --- a/src/layouts/components/SettingSwitchRow.tsx +++ b/src/layouts/components/SettingSwitchRow.tsx @@ -27,12 +27,13 @@ export const SettingSwitchRow = ({ sx={{ cursor: 'pointer', color: { xs: '#F1F1F3', md: 'fg-1' }, - py: { xs: 1.5, md: 2 }, + // Desktop rows take their height from the shared MenuItem min-height (2rem); + // mobile keeps its own vertical padding. + py: { xs: 1.5 }, }} > {label} Testnet mode} + label={Test Mode} checked={testnetsEnabled} onClick={toggleTestnetsEnabled} onSwitchClick={() => trackEvent(SETTINGS.TESTNET_MODE)} diff --git a/src/locales/el/messages.js b/src/locales/el/messages.js index 290a5eeb2f..bef2948150 100644 --- a/src/locales/el/messages.js +++ b/src/locales/el/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Εάν ΔΕΝ ξεκλειδώσετε εντός \",[\"0\"],\" του παραθύρου ξεκλειδώματος, θα πρέπει να ενεργοποιήσετε ξανά τη διαδικασία ψύξης.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Η συμμετοχή σε αυτό το αποθεματικό \",[\"symbol\"],\" δίνει ετήσιες ανταμοιβές.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Ανώτατο όριο δανεισμού\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"ΣΥΧΝΕΣ ΕΡΩΤΗΣΕΙΣ\",\"/yNlZf\":\"Ο σταθερός δανεισμός δεν είναι ενεργοποιημένος\",\"/yQcJM\":\"Συνολική αξία\",\"00AB2i\":\"Ο χρήστης δεν δανείστηκε το καθορισμένο νόμισμα\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να προμηθεύσετε σε αυτό το αποθεματικό. Μπορείτε να προμηθεύσετε το υπόλοιπο του πορτοφολιού σας μέχρι να επιτευχθεί το ανώτατο όριο προμηθειών.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Παρακαλούμε συνδέστε ένα πορτοφόλι για να δείτε τις προσωπικές σας πληροφορίες εδώ.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Ρευστοποίηση <0/> κατώτατο όριο\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Προβολή λεπτομερειών\",\"2FYpfJ\":\"Περισσότερα\",\"2O3qp5\":\"Διαθέσιμη ρευστότητα\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Ο σταθερός δανεισμός είναι ενεργοποιημένος\",\"34Qfwy\":\"Υπέρβαση του ανώτατου ορίου δανεισμού\",\"39eQRj\":[\"Δανεισμός \",[\"symbol\"]],\"3BL1xB\":\"Σύνολο παρεχόμενων\",\"3K0oMo\":\"Υπολειπόμενη προσφορά\",\"3MoZhl\":\"Δεν υπάρχουν επαρκείς εξασφαλίσεις για την κάλυψη ενός νέου δανείου\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Προσφορά \",[\"symbol\"]],\"3mXg0z\":\"Μέγιστο LTV\",\"3q3mFy\":\"Αποπληρωμή\",\"3qsjtp\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα παρεχόμενα περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"3rL+os\":\"Μπορείτε να αποσύρετε τα περιουσιακά σας στοιχεία από τη Μονάδα Ασφαλείας μόνο αφού λήξει η περίοδος αναμονής και το παράθυρο ξεκλειδώματος είναι ενεργό.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Αποτελέσματα ψηφοφορίας\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"ΜΕΓΙΣΤΟ\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"τεκμηρίωση\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο της προσφοράς του. Μόνο \",[\"messageValue\"],\" μπορεί να παρασχεθεί σε αυτή την αγορά.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Η προσφορά μεταβλητού χρέους δεν είναι μηδενική\",\"5che++\":\"Για να ζητήσετε πρόσβαση σε αυτή την αδειοδοτημένη αγορά, επισκεφθείτε την ιστοσελίδα: <0>Όνομα Παρόχου Πρόσβασης\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Απαιτούμενη δράση επιδότησης\",\"5rsnKT\":\"Διαθέσιμες ανταμοιβές\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Επισκόπηση\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Εγγύηση\",\"65A04M\":\"Ισπανικά\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Αποπληρωμή \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Ψύξη...\",\"6bxci/\":\"Δύναμη ψήφου\",\"6f8S68\":\"Αγορές\",\"6g1gi0\":\"Προτάσεις\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Αλλαγή Δικτύου\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Συντελεστής υγείας\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Επιτεύχθηκε\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Διεκδικήστε τα όλα\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Ταμπλό\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Προσοχή - Είστε πολύ κοντά στην ρευστοποίηση. Εξετάστε το ενδεχόμενο να καταθέσετε περισσότερες εγγυήσεις ή να εξοφλήσετε κάποιες από τις δανειακές σας θέσεις\",\"87pUEW\":[\"Το πορτοφόλι σας \",[\"name\"],\" είναι άδειο. Αγοράστε ή μεταφέρετε περιουσιακά στοιχεία.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"Όλες οι προτάσεις\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Μη έγκυρο ποσό για νομισματοκοπία\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Αποσυνδέστε το πορτοφόλι\",\"8Zz7s5\":\"περιουσιακά στοιχεία\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Ποσοστό χρησιμοποίησης\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Εμφάνιση\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Εισέρχεστε σε λειτουργία απομόνωσης\",\"9CDK3/\":[\"Ο δανεισμός δεν είναι επί του παρόντος διαθέσιμος για \",[\"0\"],\".\"],\"9GIj3z\":\"Μέγεθος Αποθεματικού\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Απαρτία\",\"9QHoGr\":\"Τρέχουσες ψήφοι\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο δανεισμού του. Υπάρχει μόνο \",[\"messageValue\"],\" διαθέσιμο για δανεισμό από αυτή την αγορά.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Αυτό το περιουσιακό στοιχείο έχει φτάσει στο όριο της προσφοράς του. Τίποτα δεν είναι διαθέσιμο για προμήθεια από αυτή την αγορά.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Δεδομένου ότι πρόκειται για ένα δοκιμαστικό δίκτυο, μπορείτε να αποκτήσετε οποιοδήποτε από τα περιουσιακά στοιχεία αν έχετε ETH στο πορτοφόλι σας\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Τα δάνεια σας\",\"AV7cGz\":\"Αναθεώρηση λεπτομερειών έγκρισης συναλλαγής\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Η δύναμη δανεισμού και τα περιουσιακά στοιχεία είναι περιορισμένα λόγω της λειτουργίας απομόνωσης.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Η χρήση εγγύησης είναι περιορισμένη λόγω της λειτουργίας απομόνωσης. <0>Μάθετε περισσότερα\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Κατηγορία περιουσιακών στοιχείων\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Βρύση\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Μεγιστο\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Διεκδίκηση \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Βρύση\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Η εγγύηση είναι (ως επί το πλείστον) το ίδιο νόμισμα που δανείζεται\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"Το υποκείμενο περιουσιακό στοιχείο δεν μπορεί να διασωθεί\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave ανά μήνα\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Εξασφάλιση\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Απενεργοποιημένο\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Ανάληψη \",[\"symbol\"]],\"EdQY6l\":\"Κανένα\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Μάθετε περισσότερα.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Δανεισμός χρησιμοποιημένης ισχύος\",\"FPKEug\":\"Η λειτουργία δεν υποστηρίζεται\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"ενεργοποίηση\",\"Fjw9N+\":\"Περιουσιακά στοιχεία προς προμήθεια\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Περιουσιακά Στοιχεία\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"τελειώνει\",\"GtP2hp\":[\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη λειτουργία Αποδοτικότητας (E-Mode) για την κατηγορία \",[\"0\"],\". Για να διαχειριστείτε τις κατηγορίες E-Mode επισκεφθείτε τον <0>Πίνακα ελέγχου.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"η\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Παράθυρο ξεκλειδώματος\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Το συνολικό ποσό των περιουσιακών σας στοιχείων σε δολάρια ΗΠΑ που μπορούν να χρησιμοποιηθούν ως εγγύηση για δανεισμό περιουσιακών στοιχείων.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Περίοδος ψύξης\",\"IaA40H\":\"Ρευστοποίηση στο\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Δεν μπορείτε να χρησιμοποιήσετε αυτό το νόμισμα ως εγγύηση\",\"JYKRJS\":\"Κλειδώστε\",\"JZMxX0\":\"Δεν υπάρχει αρκετό υπόλοιπο στο πορτοφόλι σας\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Υπόλοιπο πορτοφολιού\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"Αυτό αντιπροσωπεύει το κατώτατο όριο στο οποίο μια θέση δανεισμού θα θεωρηθεί υποεγγυημένη και θα υπόκειται σε ρευστοποίηση για κάθε εγγύηση. Για παράδειγμα, εάν μια εγγύηση έχει κατώτατο όριο ρευστοποίησης 80%, αυτό σημαίνει ότι η θέση θα ρευστοποιηθεί όταν η αξία του χρέους ανέρχεται στο 80% της αξίας της εγγύησης.\",\"KYAjf3\":\"Απομονωμένο\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Λήγει\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Λάθος δίκτυο\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Κλείδωμα\",\"KuBTQq\":\"Εισάγετε διεύθυνση ETH\",\"KvG1xW\":\"Διεκδίκηση\",\"L+8Lzs\":\"Τρέχον LTV\",\"L+qiq+\":\"Αγορά\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Δεν υπάρχει δικαίωμα ψήφου\",\"LL0zks\":\"Μπορεί να αποτελέσει εγγύηση\",\"LLdJWu\":\"Διεκδικήσιμο AAVE\",\"LSIpNK\":\"Δεν επιτρέπεται ο δανεισμός και η αποπληρωμή στο ίδιο block\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Διεύθυνση παραλήπτη\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"προβολή κλειδώματος\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, μεταβλητό\",\"MghdTe\":\"Εάν ο συντελεστής υγείας πέσει κάτω από το 1, ενδέχεται να ενεργοποιηθεί η ρευστοποίηση των εγγυήσεών σας.\",\"Mm/DVQ\":\"Ακυρώσατε τη συναλλαγή.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Μη έγκυρη τιμή επιστροφής της συνάρτησης εκτελεστή flashloan\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Εκκρεμεί...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Τίποτα κλειδωμένο\",\"Nh9DAo\":[[\"m\"],\"λ\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Υπέρβαση του ανώτατου ορίου νομισματοκοπείου χωρίς αντίκρισμα\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Επισκόπηση πρότασης\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"απενεργοποιημένο\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Ανάληψη\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"Όταν πραγματοποιείται ρευστοποίηση, οι ρευστοποιητές επιστρέφουν έως και το 50% του ανεξόφλητου δανεισμένου ποσού για λογαριασμό του δανειολήπτη. Σε αντάλλαγμα, μπορούν να αγοράσουν τις εξασφαλίσεις με έκπτωση και να κρατήσουν τη διαφορά (ποινή ρευστοποίησης) ως μπόνους.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα δανειακά περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Κατώτατο όριο ρευστοποίησης\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Η ενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση αυξάνει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας. Ωστόσο, μπορεί να ρευστοποιηθεί εάν ο συντελεστής υγείας σας πέσει κάτω από το 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Δεν έχει επιτευχθεί\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Απενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"RMtxNk\":\"Διαφορικό\",\"RNK49r\":\"Μη έγκυρη υπογραφή\",\"RS0o7b\":\"Κατάσταση\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Λεπτομέρειες πρότασης\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Το περιουσιακό στοιχείο δεν περιλαμβάνεται στον κατάλογο\",\"Rj01Fz\":\"Σύνδεσμοι\",\"RmWFEe\":\"Κλείδωμα APR\",\"RtBLm7\":\"Ο συντελεστής υγείας είναι μικρότερος από το όριο ρευστοποίησης\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Ενεργοποιημένο\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Κεφάλαια στην Μονάδα Ασφάλειας\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Σύνολο διαθέσιμων\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Απενεργοποίηση E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Ο πάροχος διευθύνσεων κοινόχρηστων ταμείων δεν είναι εγγεγραμμένος\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Δανεισμός\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Ποινή ρευστοποίησης\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"To περιουσιακό στοιχείο μπορεί να χρησιμοποιηθεί ως εγγύηση μόνο σε λειτουργία απομόνωσης.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος σταθερού επιτοκίου σε αυτό το αποθεματικό\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Το περιουσιακό στοιχείο δεν είναι δανείσιμο σε λειτουργία απομόνωσης\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Λεπτομέρειες\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"Τα κεφάλαια αυτά έχουν δανειστεί και δεν είναι διαθέσιμα για ανάληψη αυτή τη στιγμή.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"Ο δείκτης μέγιστου LTV αντιπροσωπεύει τη μέγιστη δανειοληπτική ικανότητα μιας συγκεκριμένης εγγύησης. Για παράδειγμα, εάν μια εγγύηση έχει LTV 75%, ο χρήστης μπορεί να δανειστεί έως και 0,75 ETH στο κύριο νόμισμα για κάθε 1 ETH αξίας εγγύησης.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Δεν υπάρχουν ανταμοιβές για διεκδίκηση\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Συνδέστε το πορτοφόλι\",\"VMfYUK\":\"Ασφάλεια των κατατεθειμένων εξασφαλίσεών σας έναντι των δανειζόμενων περιουσιακών στοιχείων και της υποκείμενης αξίας τους.\",\"VOAZJh\":\"Σύνολο δανείων\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"ΥΠΕΡ\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Αναθεώρηση λεπτομερειών συναλλαγής\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Τίποτα δεν έχει παρασχεθεί ακόμη\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"Το E-Mode αυξάνει το LTV σας για μια επιλεγμένη κατηγορία περιουσιακών στοιχείων έως και <0/>. <1>Μάθετε περισσότερα\",\"WPWG/y\":\"Κατάσταση & διαμόρφωση αποθεματικού\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"Ο χρήστης δεν μπορεί να κάνει ανάληψη μεγαλύτερη από το διαθέσιμο υπόλοιπο\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Για να δανειστείτε πρέπει να προσκομίσετε οποιοδήποτε περιουσιακό στοιχείο που θα χρησιμοποιηθεί ως εγγύηση.\",\"X/ITG9\":\"Κείμενο σφάλματος αντιγραφής\",\"X3Pp6x\":\"Χρησιμοποιείται ως εγγύηση\",\"X4Zt7j\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή η εφεδρεία βρίσκεται σε παύση\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Θα βγείτε από τη λειτουργία απομόνωσης και άλλα tokens μπορούν πλέον να χρησιμοποιηθούν ως εγγύηση\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"ΨΗΦΙΣΤΕ ΚΑΤΑ\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Ενεργοποίηση E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"Εάν το δάνειο προς αξία υπερβεί το όριο ρευστοποίησης, η παρεχόμενη εγγύηση σας μπορεί να ρευστοποιηθεί.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Δεν τηρήθηκαν οι όροι επανεξισορρόπησης των επιτοκίων\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Διακυβέρνηση Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Λειτουργία αποδοτικότητας (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Μέγιστη περικοπή\",\"ZfUGFb\":\"Πριν από την προμήθεια\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Αξία ρευστοποίησης\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"ενεργοποιημένο\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Χρόνος που απομένει για το ξεκλείδωμα\",\"a5RYZd\":\"Η απενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση επηρεάζει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Ψηφίστε ΚΑΤΑ\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Οι παράμετροι της συστοιχίας που θα έπρεπε να είναι ίσου μήκους δεν είναι\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Δανεισμός APY, μεταβλητό\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Προειδοποίηση περιόδου ψύξης\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Περιουσιακό στοιχείο\",\"bXQ/Og\":\"Μοιραστείτε το στο twitter\",\"bXr0ee\":\"Τα απομονωμένα περιουσιακά στοιχεία έχουν περιορισμένη δανειοληπτική ικανότητα και άλλα περιουσιακά στοιχεία δεν μπορούν να χρησιμοποιηθούν ως εγγύηση.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Το αιτούμενο ποσό είναι μεγαλύτερο από το μέγιστο μέγεθος δανείου στη λειτουργία σταθερού επιτοκίου\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Προσφορά\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Η διεύθυνση δεν είναι συμβόλαιο\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Δεν μπορείτε να αποσύρετε αυτό το ποσό, διότι θα προκληθεί κλήση εγγύησης\",\"cBc+4A\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να δανειστείτε. Μπορείτε να δανειστείτε με βάση την εξασφάλισή σας και μέχρι να επιτευχθεί το ανώτατο όριο δανεισμού.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Λεπτομέρειες κινδύνου\",\"cNT+ij\":\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη Λειτουργία Αποδοτικότητας (E-Mode) και τη λειτουργία Απομόνωσης. Για να διαχειριστείτε τη λειτουργία E-Mode και τη λειτουργία Απομόνωσης, επισκεφθείτε τον <0>Πίνακα ελέγχου.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Ψηφίστε ΥΠΕΡ\",\"ckf7gX\":[\"Αποπληρώνοντας \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Συζήτηση φόρουμ\",\"csDS2L\":\"Διαθέσιμο\",\"cu7Stb\":\"Δεν συμμετείχατε στην παρούσα πρόταση\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Διακυβέρνηση\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Η επικύρωση του Ltv απέτυχε\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"Δεν έχετε αρκετά χρήματα στο πορτοφόλι σας για να αποπληρώσετε ολόκληρο το ποσό. Εάν προχωρήσετε στην αποπληρωμή με το τρέχον ποσό των χρημάτων σας, θα εξακολουθείτε να έχετε μια μικρή θέση δανεισμού στο ταμπλό σας.\",\"dXUQFX\":\"Περιουσιακά στοιχεία προς δανεισμό\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Χρησιμοποίηση εγγυήσεων\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Η δράση απαιτεί ενεργό απόθεμα\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Σύνολο δανεικών\",\"ecqEvn\":\"Το υπόλοιπο των εγγυήσεων είναι 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Ξεκλειδώστε τώρα\",\"evw5ha\":\"Καθαρή αξία\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"Αλλάξατε σε ποσοστό \",[\"0\"]],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Το τρέχον δάνειο προς αξία με βάση τις παρεχόμενες εξασφαλίσεις σας.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Υπόλοιπο\",\"fu1Dbh\":[\"Ανάληψη \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Λειτουργία Testnet\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"Ο χρήστης προσπαθεί να δανειστεί πολλαπλά περιουσιακά στοιχεία, συμπεριλαμβανομένου ενός απομονωμένου περιουσιακού στοιχείου\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Η μηδενική διεύθυνση δεν είναι έγκυρη\",\"gvTM4B\":\"Το καθαρό ΑΡΥ είναι η συνδυασμένη επίδραση όλων των θέσεων προσφοράς και δανεισμού στην καθαρή αξία, συμπεριλαμβανομένων των κινήτρων. Είναι δυνατόν να υπάρχει αρνητικό καθαρό APY εάν το χρεωστικό APY είναι υψηλότερο από το προσφερόμενο APY.\",\"gzcch9\":\"Μη έγκυρη αμοιβή πρωτοκόλλου γέφυρας\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Καθαρό APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"Το % της συνολικής δανειοληπτικής σας δύναμης που χρησιμοποιείται. Αυτό βασίζεται στο ποσό της παρεχόμενης εξασφάλισής σας και στο συνολικό ποσό που μπορείτε να δανειστείτε.\",\"hehnjM\":\"Ποσό\",\"hjDCQr\":\"Υπήρξε κάποιο σφάλμα. Προσπαθήστε να αλλάξετε τις παραμέτρους ή <0><1>αντιγράψτε το σφάλμα\",\"hom7qf\":\"Διεκδίκηση\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Δανεισμός \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Ασυνεπείς παράμετροι flashloan\",\"iEPVHF\":\"Δεν έχει αρκετή δύναμη ψήφου για να συμμετάσχει στην παρούσα πρόταση\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"Ψηφίσατε \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Εισάγετε ένα ποσό\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens δεν είναι το ίδιο με το να τα κλειδώνετε. Εάν επιθυμείτε να κλειδώσετε τα\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"H χρήση εγγυήσεων είναι περιορισμένη λόγω της λειτουργίας Απομόνωσης.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Προμηθεύοντας το\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Απενεργοποίηση E-Mode\",\"jKYzR1\":\"Ενεργοποίηση E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"δ\"],\"jbFMap\":\"Χρόνος ψύξης που έχει απομείνει\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"Στο E-Mode ορισμένα περιουσιακά στοιχεία δεν είναι δανείσιμα. Βγείτε από το E-Mode για να αποκτήσετε πρόσβαση σε όλα τα περιουσιακά στοιχεία\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Μη διαθέσιμο\",\"k/sb6z\":\"Επιλέξτε γλώσσα\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Διεκδίκηση \",[\"0\"]],\"kH6wUX\":\"Επίδραση στην τιμή\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"Για την εξόφληση εκ μέρους ενός χρήστη απαιτείται ένα ρητό ποσό προς εξόφληση\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Υπέρβαση του ανώτατου ορίου προσφοράς\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Το ανώτατο όριο χρέους δεν είναι μηδενικό\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Αγγλικά\",\"lfEjIE\":\"Μάθετε περισσότερα στον οδηγό <0>Συχνών Ερωτήσεων\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Συνολικές εκπομπές ανά ημέρα\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Εντάξει, Κλείσιμο\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Το περιουσιακό στοιχείο δεν μπορεί να χρησιμοποιηθεί ως εγγύηση.\",\"n+SX4g\":\"Προγραμματιστές\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Προσφορά apy\",\"nJgsQu\":\"Με δύναμη ψήφου <0/>\",\"nLC6tu\":\"Γαλλικά\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Μπορεί να εκτελεστεί\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"ω\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"Ο συντελεστής υγείας και το δάνειο προς αξία καθορίζουν τη διασφάλιση των εξασφαλίσεών σας. Για να αποφύγετε τις ρευστοποιήσεις μπορείτε να παράσχετε περισσότερες εξασφαλίσεις ή να εξοφλήσετε δανειακές θέσεις.\",\"o1xc2V\":\"Η προσφορά AToken δεν είναι μηδενική\",\"o5ooMr\":\"Χρέος\",\"o7J4JM\":\"Φίλτρο\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Ψύξτε για ξεκλείδωμα\",\"oJ5ZiG\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος μεταβλητού επιτοκίου σε αυτό το αποθεματικό\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"Το σταθερό επιτόκιο θα <0>μείνει το ίδιο για όλη τη διάρκεια του δανείου σας. Συνιστάται για μακροχρόνιες περιόδους δανεισμού και για χρήστες που προτιμούν την προβλεψιμότητα.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Διαθέσιμο για προμήθεια\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"Αυτό το περιουσιακό στοιχείο έχει φθάσει στο ανώτατο όριο δανεισμού του. Τίποτα δεν είναι διαθέσιμο για δανεισμό από αυτή την αγορά.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Το υποκείμενο υπόλοιπο πρέπει να είναι μεγαλύτερο από 0\",\"pgWG9H\":\"Δεν υπάρχει αρκετό κλειδωμένο υπόλοιπο\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"παρακαλούμε ελέγξτε ότι το ποσό που θέλετε να παρέχετε δεν χρησιμοποιείται επί του παρόντος για κλείδωμα. Εάν χρησιμοποιείται για κλείδωμα, η συναλλαγή σας ενδέχεται να αποτύχει.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Καταλαβαίνω πώς λειτουργεί η ψύξη (\",[\"0\"],\") και το ξεκλείδωμα (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"Ο καλών αυτής της συνάρτησης πρέπει να είναι ένα κοινόχρηστο ταμείο\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Κλειδωμένο\",\"qB4kPi\":\"Προσφορά APY\",\"qENI8q\":\"Γενικές ρυθμίσεις\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"αντιγράψτε το σφάλμα\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Συνδέστε το πορτοφόλι σας για να δείτε τις προμήθειες, τα δάνεια και τις ανοιχτές θέσεις σας.\",\"qY2jnw\":\"Μη έγκυρη λήξη\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Μη έγκυρη ποσότητα προς καύση\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Το ποσό πρέπει να είναι μεγαλύτερο από 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Εμφάνιση περιουσιακών στοιχείων με υπόλοιπο 0\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Διεκδικήστε όλες τις ανταμοιβές\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Αναθεώρηση συναλλαγής\",\"sP2+gB\":\"ΚΑΤΑ\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Μπορείτε να ξεκλειδώσετε εδώ\",\"smJNwH\":\"Διαθέσιμο για δανεισμό\",\"solypO\":\"Ο παράγοντας υγείας δεν είναι κάτω από το όριο\",\"sr0UJD\":\"Πηγαίνετε Πίσω\",\"ss5GCK\":\"Η διεύθυνση του παρόχου διευθύνσεων κοινόχρηστου ταμείου είναι άκυρη\",\"swEgK4\":\"Οι πληροφορίες ψήφου σας\",\"t+wtgf\":\"Τίποτα δανεισμένο ακόμα\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Τιμή Oracle\",\"tFZLf8\":\"Αυτός ο υπολογισμός gas είναι μόνο μια εκτίμηση. Το πορτοφόλι σας θα καθορίσει την τιμή της συναλλαγής. Μπορείτε να τροποποιήσετε τις ρυθμίσεις gas απευθείας από τον πάροχο του πορτοφολιού σας.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Παρακαλώ, συνδέστε το πορτοφόλι σας\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Οι προμήθειές σας\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Η συναλλαγή απέτυχε\",\"u706uF\":\"Άκυρη πριμοδότηση flashloan\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Για την αποπληρωμή ενός συγκεκριμένου τύπου χρέους, ο χρήστης πρέπει να έχει χρέος αυτού του τύπου\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Απόκρυψη\",\"vMba49\":\"Ο δανεισμός δεν είναι ενεργοποιημένος\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Γλώσσα\",\"vesuBJ\":\"Σας επιτρέπει να αποφασίσετε αν θα χρησιμοποιήσετε ένα παρεχόμενο περιουσιακό στοιχείο ως εγγύηση. Ένα περιουσιακό στοιχείο που χρησιμοποιείται ως εγγύηση θα επηρεάσει τη δανειοληπτική σας ικανότητα και τον συντελεστή υγείας.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Σταθερό νόμισμα\",\"w/JtJ3\":\"Η σταθερή προσφορά χρέους δεν είναι μηδενική\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Ανταμοιβές APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Εσείς \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"Ο καλών της συνάρτησης δεν είναι AToken\",\"wRRqvW\":\"Δεν έχετε προμήθειες σε αυτό το νόμισμα\",\"wZFvVU\":\"ΨΗΦΙΣΤΕ ΥΠΕΡ\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Βρύση \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Τρέχον διαφορικό\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, παρακαλούμε μεταβείτε στο\",\"xNy/UG\":\"Αποπληρωμή με\",\"xPm8wv\":\"Μάθετε περισσότερα για τους κινδύνους\",\"xXYpZl\":[[\"0\"],\" Βρύση\"],\"xaVBSS\":\"Οι πληροφορίες σας\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Ενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"yB1YpA\":\"Σκοτεινή λειτουργία\",\"yCrG6m\":\"Συνολικό μέγεθος της αγοράς\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Επισκόπηση συναλλαγής\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Μη έγκυρη διεύθυνση\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"Δεν μπορείτε να αλλάξετε τη χρήση ως λειτουργία εγγύησης για αυτό το νόμισμα, διότι θα προκαλέσει κλήση εγγύησης\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Δεν υπάρχουν αρκετά κεφάλαια στο\",[\"0\"],\"αποθεματικό για δανεισμό\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Κλείσιμο\",\"z4uGQg\":\"Υπέρβαση του ανώτατου ορίου χρέους\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"Η εγγύηση που έχει επιλεγεί δεν μπορεί να ρευστοποιηθεί\",\"z5Y+p6\":[\"Παροχή \",[\"symbol\"]],\"zCjNKs\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή το αποθεματικό έχει παγώσει\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Υπολειπόμενο χρέος\",\"zmTPiV\":\"Υπόλοιπο προσφοράς\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Μενού\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Μάθετε περισσότερα\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Supply balance after switch\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Show Frozen or paused assets\",\"TszKts\":\"Borrow balance after switch\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Εάν ΔΕΝ ξεκλειδώσετε εντός \",[\"0\"],\" του παραθύρου ξεκλειδώματος, θα πρέπει να ενεργοποιήσετε ξανά τη διαδικασία ψύξης.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Η συμμετοχή σε αυτό το αποθεματικό \",[\"symbol\"],\" δίνει ετήσιες ανταμοιβές.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Ανώτατο όριο δανεισμού\",\"+nuEh/\":\"Estimated time\",\"+vhh5+\":\"Test Mode\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"ΣΥΧΝΕΣ ΕΡΩΤΗΣΕΙΣ\",\"/yNlZf\":\"Ο σταθερός δανεισμός δεν είναι ενεργοποιημένος\",\"/yQcJM\":\"Συνολική αξία\",\"00AB2i\":\"Ο χρήστης δεν δανείστηκε το καθορισμένο νόμισμα\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να προμηθεύσετε σε αυτό το αποθεματικό. Μπορείτε να προμηθεύσετε το υπόλοιπο του πορτοφολιού σας μέχρι να επιτευχθεί το ανώτατο όριο προμηθειών.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Παρακαλούμε συνδέστε ένα πορτοφόλι για να δείτε τις προσωπικές σας πληροφορίες εδώ.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Ρευστοποίηση <0/> κατώτατο όριο\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Προβολή λεπτομερειών\",\"2FYpfJ\":\"Περισσότερα\",\"2O3qp5\":\"Διαθέσιμη ρευστότητα\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Ο σταθερός δανεισμός είναι ενεργοποιημένος\",\"34Qfwy\":\"Υπέρβαση του ανώτατου ορίου δανεισμού\",\"39eQRj\":[\"Δανεισμός \",[\"symbol\"]],\"3BL1xB\":\"Σύνολο παρεχόμενων\",\"3K0oMo\":\"Υπολειπόμενη προσφορά\",\"3MoZhl\":\"Δεν υπάρχουν επαρκείς εξασφαλίσεις για την κάλυψη ενός νέου δανείου\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Προσφορά \",[\"symbol\"]],\"3mXg0z\":\"Μέγιστο LTV\",\"3q3mFy\":\"Αποπληρωμή\",\"3qsjtp\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα παρεχόμενα περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"3rL+os\":\"Μπορείτε να αποσύρετε τα περιουσιακά σας στοιχεία από τη Μονάδα Ασφαλείας μόνο αφού λήξει η περίοδος αναμονής και το παράθυρο ξεκλειδώματος είναι ενεργό.\",\"41vemL\":\"Watch Wallet\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Αποτελέσματα ψηφοφορίας\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"ΜΕΓΙΣΤΟ\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"τεκμηρίωση\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο της προσφοράς του. Μόνο \",[\"messageValue\"],\" μπορεί να παρασχεθεί σε αυτή την αγορά.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Η προσφορά μεταβλητού χρέους δεν είναι μηδενική\",\"5che++\":\"Για να ζητήσετε πρόσβαση σε αυτή την αδειοδοτημένη αγορά, επισκεφθείτε την ιστοσελίδα: <0>Όνομα Παρόχου Πρόσβασης\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Απαιτούμενη δράση επιδότησης\",\"5rsnKT\":\"Διαθέσιμες ανταμοιβές\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Επισκόπηση\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Εγγύηση\",\"65A04M\":\"Ισπανικά\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Αποπληρωμή \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Ψύξη...\",\"6bxci/\":\"Δύναμη ψήφου\",\"6f8S68\":\"Αγορές\",\"6g1gi0\":\"Προτάσεις\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Αλλαγή Δικτύου\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Συντελεστής υγείας\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Επιτεύχθηκε\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Διεκδικήστε τα όλα\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Ταμπλό\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Προσοχή - Είστε πολύ κοντά στην ρευστοποίηση. Εξετάστε το ενδεχόμενο να καταθέσετε περισσότερες εγγυήσεις ή να εξοφλήσετε κάποιες από τις δανειακές σας θέσεις\",\"87pUEW\":[\"Το πορτοφόλι σας \",[\"name\"],\" είναι άδειο. Αγοράστε ή μεταφέρετε περιουσιακά στοιχεία.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"Όλες οι προτάσεις\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Μη έγκυρο ποσό για νομισματοκοπία\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Αποσυνδέστε το πορτοφόλι\",\"8Zz7s5\":\"περιουσιακά στοιχεία\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Ποσοστό χρησιμοποίησης\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Εμφάνιση\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Εισέρχεστε σε λειτουργία απομόνωσης\",\"9CDK3/\":[\"Ο δανεισμός δεν είναι επί του παρόντος διαθέσιμος για \",[\"0\"],\".\"],\"9GIj3z\":\"Μέγεθος Αποθεματικού\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Απαρτία\",\"9QHoGr\":\"Τρέχουσες ψήφοι\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Αυτό το περιουσιακό στοιχείο έχει σχεδόν φτάσει στο όριο δανεισμού του. Υπάρχει μόνο \",[\"messageValue\"],\" διαθέσιμο για δανεισμό από αυτή την αγορά.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Αυτό το περιουσιακό στοιχείο έχει φτάσει στο όριο της προσφοράς του. Τίποτα δεν είναι διαθέσιμο για προμήθεια από αυτή την αγορά.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Δεδομένου ότι πρόκειται για ένα δοκιμαστικό δίκτυο, μπορείτε να αποκτήσετε οποιοδήποτε από τα περιουσιακά στοιχεία αν έχετε ETH στο πορτοφόλι σας\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Τα δάνεια σας\",\"AV7cGz\":\"Αναθεώρηση λεπτομερειών έγκρισης συναλλαγής\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Η δύναμη δανεισμού και τα περιουσιακά στοιχεία είναι περιορισμένα λόγω της λειτουργίας απομόνωσης.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Η χρήση εγγύησης είναι περιορισμένη λόγω της λειτουργίας απομόνωσης. <0>Μάθετε περισσότερα\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Κατηγορία περιουσιακών στοιχείων\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Βρύση\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Μεγιστο\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Διεκδίκηση \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Βρύση\"],\"CuAHqa\":\"Protocol Incentives\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Η εγγύηση είναι (ως επί το πλείστον) το ίδιο νόμισμα που δανείζεται\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"Το υποκείμενο περιουσιακό στοιχείο δεν μπορεί να διασωθεί\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave ανά μήνα\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Εξασφάλιση\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Απενεργοποιημένο\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Ανάληψη \",[\"symbol\"]],\"EdQY6l\":\"Κανένα\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Μάθετε περισσότερα.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Δανεισμός χρησιμοποιημένης ισχύος\",\"FPKEug\":\"Η λειτουργία δεν υποστηρίζεται\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"ενεργοποίηση\",\"Fjw9N+\":\"Περιουσιακά στοιχεία προς προμήθεια\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Περιουσιακά Στοιχεία\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"τελειώνει\",\"GtP2hp\":[\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη λειτουργία Αποδοτικότητας (E-Mode) για την κατηγορία \",[\"0\"],\". Για να διαχειριστείτε τις κατηγορίες E-Mode επισκεφθείτε τον <0>Πίνακα ελέγχου.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"η\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Παράθυρο ξεκλειδώματος\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Το συνολικό ποσό των περιουσιακών σας στοιχείων σε δολάρια ΗΠΑ που μπορούν να χρησιμοποιηθούν ως εγγύηση για δανεισμό περιουσιακών στοιχείων.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Περίοδος ψύξης\",\"IaA40H\":\"Ρευστοποίηση στο\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Δεν μπορείτε να χρησιμοποιήσετε αυτό το νόμισμα ως εγγύηση\",\"JYKRJS\":\"Κλειδώστε\",\"JZMxX0\":\"Δεν υπάρχει αρκετό υπόλοιπο στο πορτοφόλι σας\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Υπόλοιπο πορτοφολιού\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"Αυτό αντιπροσωπεύει το κατώτατο όριο στο οποίο μια θέση δανεισμού θα θεωρηθεί υποεγγυημένη και θα υπόκειται σε ρευστοποίηση για κάθε εγγύηση. Για παράδειγμα, εάν μια εγγύηση έχει κατώτατο όριο ρευστοποίησης 80%, αυτό σημαίνει ότι η θέση θα ρευστοποιηθεί όταν η αξία του χρέους ανέρχεται στο 80% της αξίας της εγγύησης.\",\"KYAjf3\":\"Απομονωμένο\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Λήγει\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Λάθος δίκτυο\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Κλείδωμα\",\"KuBTQq\":\"Εισάγετε διεύθυνση ETH\",\"KvG1xW\":\"Διεκδίκηση\",\"L+8Lzs\":\"Τρέχον LTV\",\"L+qiq+\":\"Αγορά\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Δεν υπάρχει δικαίωμα ψήφου\",\"LL0zks\":\"Μπορεί να αποτελέσει εγγύηση\",\"LLdJWu\":\"Διεκδικήσιμο AAVE\",\"LSIpNK\":\"Δεν επιτρέπεται ο δανεισμός και η αποπληρωμή στο ίδιο block\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Διεύθυνση παραλήπτη\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"προβολή κλειδώματος\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, μεταβλητό\",\"MghdTe\":\"Εάν ο συντελεστής υγείας πέσει κάτω από το 1, ενδέχεται να ενεργοποιηθεί η ρευστοποίηση των εγγυήσεών σας.\",\"Mm/DVQ\":\"Ακυρώσατε τη συναλλαγή.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Μη έγκυρη τιμή επιστροφής της συνάρτησης εκτελεστή flashloan\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Εκκρεμεί...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Τίποτα κλειδωμένο\",\"Nh9DAo\":[[\"m\"],\"λ\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Υπέρβαση του ανώτατου ορίου νομισματοκοπείου χωρίς αντίκρισμα\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Επισκόπηση πρότασης\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"απενεργοποιημένο\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Ανάληψη\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"Όταν πραγματοποιείται ρευστοποίηση, οι ρευστοποιητές επιστρέφουν έως και το 50% του ανεξόφλητου δανεισμένου ποσού για λογαριασμό του δανειολήπτη. Σε αντάλλαγμα, μπορούν να αγοράσουν τις εξασφαλίσεις με έκπτωση και να κρατήσουν τη διαφορά (ποινή ρευστοποίησης) ως μπόνους.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"Ο σταθμισμένος μέσος όρος του APY για όλα τα δανειακά περιουσιακά στοιχεία, συμπεριλαμβανομένων των κινήτρων.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Κατώτατο όριο ρευστοποίησης\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Η ενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση αυξάνει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας. Ωστόσο, μπορεί να ρευστοποιηθεί εάν ο συντελεστής υγείας σας πέσει κάτω από το 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Δεν έχει επιτευχθεί\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Απενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"RMtxNk\":\"Διαφορικό\",\"RNK49r\":\"Μη έγκυρη υπογραφή\",\"RS0o7b\":\"Κατάσταση\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Λεπτομέρειες πρότασης\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Το περιουσιακό στοιχείο δεν περιλαμβάνεται στον κατάλογο\",\"Rj01Fz\":\"Σύνδεσμοι\",\"RmWFEe\":\"Κλείδωμα APR\",\"RtBLm7\":\"Ο συντελεστής υγείας είναι μικρότερος από το όριο ρευστοποίησης\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Ενεργοποιημένο\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Κεφάλαια στην Μονάδα Ασφάλειας\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Σύνολο διαθέσιμων\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Απενεργοποίηση E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Ο πάροχος διευθύνσεων κοινόχρηστων ταμείων δεν είναι εγγεγραμμένος\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Δανεισμός\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Ποινή ρευστοποίησης\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"To περιουσιακό στοιχείο μπορεί να χρησιμοποιηθεί ως εγγύηση μόνο σε λειτουργία απομόνωσης.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος σταθερού επιτοκίου σε αυτό το αποθεματικό\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Το περιουσιακό στοιχείο δεν είναι δανείσιμο σε λειτουργία απομόνωσης\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Λεπτομέρειες\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"Τα κεφάλαια αυτά έχουν δανειστεί και δεν είναι διαθέσιμα για ανάληψη αυτή τη στιγμή.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"Ο δείκτης μέγιστου LTV αντιπροσωπεύει τη μέγιστη δανειοληπτική ικανότητα μιας συγκεκριμένης εγγύησης. Για παράδειγμα, εάν μια εγγύηση έχει LTV 75%, ο χρήστης μπορεί να δανειστεί έως και 0,75 ETH στο κύριο νόμισμα για κάθε 1 ETH αξίας εγγύησης.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Δεν υπάρχουν ανταμοιβές για διεκδίκηση\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Συνδέστε το πορτοφόλι\",\"VMfYUK\":\"Ασφάλεια των κατατεθειμένων εξασφαλίσεών σας έναντι των δανειζόμενων περιουσιακών στοιχείων και της υποκείμενης αξίας τους.\",\"VOAZJh\":\"Σύνολο δανείων\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"ΥΠΕΡ\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Αναθεώρηση λεπτομερειών συναλλαγής\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Τίποτα δεν έχει παρασχεθεί ακόμη\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"Το E-Mode αυξάνει το LTV σας για μια επιλεγμένη κατηγορία περιουσιακών στοιχείων έως και <0/>. <1>Μάθετε περισσότερα\",\"WPWG/y\":\"Κατάσταση & διαμόρφωση αποθεματικού\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"Ο χρήστης δεν μπορεί να κάνει ανάληψη μεγαλύτερη από το διαθέσιμο υπόλοιπο\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Για να δανειστείτε πρέπει να προσκομίσετε οποιοδήποτε περιουσιακό στοιχείο που θα χρησιμοποιηθεί ως εγγύηση.\",\"X/ITG9\":\"Κείμενο σφάλματος αντιγραφής\",\"X3Pp6x\":\"Χρησιμοποιείται ως εγγύηση\",\"X4Zt7j\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή η εφεδρεία βρίσκεται σε παύση\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Θα βγείτε από τη λειτουργία απομόνωσης και άλλα tokens μπορούν πλέον να χρησιμοποιηθούν ως εγγύηση\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"ΨΗΦΙΣΤΕ ΚΑΤΑ\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Ενεργοποίηση E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"Εάν το δάνειο προς αξία υπερβεί το όριο ρευστοποίησης, η παρεχόμενη εγγύηση σας μπορεί να ρευστοποιηθεί.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Δεν τηρήθηκαν οι όροι επανεξισορρόπησης των επιτοκίων\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Διακυβέρνηση Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Λειτουργία αποδοτικότητας (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Μέγιστη περικοπή\",\"ZfUGFb\":\"Πριν από την προμήθεια\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Αξία ρευστοποίησης\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"ενεργοποιημένο\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Χρόνος που απομένει για το ξεκλείδωμα\",\"a5RYZd\":\"Η απενεργοποίηση αυτού του περιουσιακού στοιχείου ως εγγύηση επηρεάζει τη δανειοληπτική σας ικανότητα και τον Συντελεστή Υγείας.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Ψηφίστε ΚΑΤΑ\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Οι παράμετροι της συστοιχίας που θα έπρεπε να είναι ίσου μήκους δεν είναι\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Δανεισμός APY, μεταβλητό\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Προειδοποίηση περιόδου ψύξης\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Περιουσιακό στοιχείο\",\"bXQ/Og\":\"Μοιραστείτε το στο twitter\",\"bXr0ee\":\"Τα απομονωμένα περιουσιακά στοιχεία έχουν περιορισμένη δανειοληπτική ικανότητα και άλλα περιουσιακά στοιχεία δεν μπορούν να χρησιμοποιηθούν ως εγγύηση.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Το αιτούμενο ποσό είναι μεγαλύτερο από το μέγιστο μέγεθος δανείου στη λειτουργία σταθερού επιτοκίου\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Προσφορά\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Η διεύθυνση δεν είναι συμβόλαιο\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Δεν μπορείτε να αποσύρετε αυτό το ποσό, διότι θα προκληθεί κλήση εγγύησης\",\"cBc+4A\":\"Αυτό είναι το συνολικό ποσό που μπορείτε να δανειστείτε. Μπορείτε να δανειστείτε με βάση την εξασφάλισή σας και μέχρι να επιτευχθεί το ανώτατο όριο δανεισμού.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Λεπτομέρειες κινδύνου\",\"cNT+ij\":\"Ο δανεισμός δεν είναι διαθέσιμος επειδή έχετε ενεργοποιήσει τη Λειτουργία Αποδοτικότητας (E-Mode) και τη λειτουργία Απομόνωσης. Για να διαχειριστείτε τη λειτουργία E-Mode και τη λειτουργία Απομόνωσης, επισκεφθείτε τον <0>Πίνακα ελέγχου.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Ψηφίστε ΥΠΕΡ\",\"ckf7gX\":[\"Αποπληρώνοντας \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Συζήτηση φόρουμ\",\"csDS2L\":\"Διαθέσιμο\",\"cu7Stb\":\"Δεν συμμετείχατε στην παρούσα πρόταση\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Διακυβέρνηση\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Η επικύρωση του Ltv απέτυχε\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"Δεν έχετε αρκετά χρήματα στο πορτοφόλι σας για να αποπληρώσετε ολόκληρο το ποσό. Εάν προχωρήσετε στην αποπληρωμή με το τρέχον ποσό των χρημάτων σας, θα εξακολουθείτε να έχετε μια μικρή θέση δανεισμού στο ταμπλό σας.\",\"dXUQFX\":\"Περιουσιακά στοιχεία προς δανεισμό\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Χρησιμοποίηση εγγυήσεων\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Η δράση απαιτεί ενεργό απόθεμα\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Σύνολο δανεικών\",\"ecqEvn\":\"Το υπόλοιπο των εγγυήσεων είναι 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Ξεκλειδώστε τώρα\",\"evw5ha\":\"Καθαρή αξία\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"Αλλάξατε σε ποσοστό \",[\"0\"]],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Το τρέχον δάνειο προς αξία με βάση τις παρεχόμενες εξασφαλίσεις σας.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Υπόλοιπο\",\"fu1Dbh\":[\"Ανάληψη \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"Ο χρήστης προσπαθεί να δανειστεί πολλαπλά περιουσιακά στοιχεία, συμπεριλαμβανομένου ενός απομονωμένου περιουσιακού στοιχείου\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Η μηδενική διεύθυνση δεν είναι έγκυρη\",\"gvTM4B\":\"Το καθαρό ΑΡΥ είναι η συνδυασμένη επίδραση όλων των θέσεων προσφοράς και δανεισμού στην καθαρή αξία, συμπεριλαμβανομένων των κινήτρων. Είναι δυνατόν να υπάρχει αρνητικό καθαρό APY εάν το χρεωστικό APY είναι υψηλότερο από το προσφερόμενο APY.\",\"gzcch9\":\"Μη έγκυρη αμοιβή πρωτοκόλλου γέφυρας\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Καθαρό APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"Το % της συνολικής δανειοληπτικής σας δύναμης που χρησιμοποιείται. Αυτό βασίζεται στο ποσό της παρεχόμενης εξασφάλισής σας και στο συνολικό ποσό που μπορείτε να δανειστείτε.\",\"hehnjM\":\"Ποσό\",\"hjDCQr\":\"Υπήρξε κάποιο σφάλμα. Προσπαθήστε να αλλάξετε τις παραμέτρους ή <0><1>αντιγράψτε το σφάλμα\",\"hom7qf\":\"Διεκδίκηση\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Δανεισμός \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Ασυνεπείς παράμετροι flashloan\",\"iEPVHF\":\"Δεν έχει αρκετή δύναμη ψήφου για να συμμετάσχει στην παρούσα πρόταση\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"Ψηφίσατε \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Εισάγετε ένα ποσό\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens δεν είναι το ίδιο με το να τα κλειδώνετε. Εάν επιθυμείτε να κλειδώσετε τα\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"H χρήση εγγυήσεων είναι περιορισμένη λόγω της λειτουργίας Απομόνωσης.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Προμηθεύοντας το\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Απενεργοποίηση E-Mode\",\"jKYzR1\":\"Ενεργοποίηση E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"δ\"],\"jbFMap\":\"Χρόνος ψύξης που έχει απομείνει\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"Στο E-Mode ορισμένα περιουσιακά στοιχεία δεν είναι δανείσιμα. Βγείτε από το E-Mode για να αποκτήσετε πρόσβαση σε όλα τα περιουσιακά στοιχεία\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Μη διαθέσιμο\",\"k/sb6z\":\"Επιλέξτε γλώσσα\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Διεκδίκηση \",[\"0\"]],\"kH6wUX\":\"Επίδραση στην τιμή\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"Για την εξόφληση εκ μέρους ενός χρήστη απαιτείται ένα ρητό ποσό προς εξόφληση\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Υπέρβαση του ανώτατου ορίου προσφοράς\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Το ανώτατο όριο χρέους δεν είναι μηδενικό\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Αγγλικά\",\"lfEjIE\":\"Μάθετε περισσότερα στον οδηγό <0>Συχνών Ερωτήσεων\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Συνολικές εκπομπές ανά ημέρα\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Εντάξει, Κλείσιμο\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Το περιουσιακό στοιχείο δεν μπορεί να χρησιμοποιηθεί ως εγγύηση.\",\"n+SX4g\":\"Προγραμματιστές\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Προσφορά apy\",\"nJgsQu\":\"Με δύναμη ψήφου <0/>\",\"nLC6tu\":\"Γαλλικά\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Μπορεί να εκτελεστεί\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"ω\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"Ο συντελεστής υγείας και το δάνειο προς αξία καθορίζουν τη διασφάλιση των εξασφαλίσεών σας. Για να αποφύγετε τις ρευστοποιήσεις μπορείτε να παράσχετε περισσότερες εξασφαλίσεις ή να εξοφλήσετε δανειακές θέσεις.\",\"o1xc2V\":\"Η προσφορά AToken δεν είναι μηδενική\",\"o5ooMr\":\"Χρέος\",\"o7J4JM\":\"Φίλτρο\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Ψύξτε για ξεκλείδωμα\",\"oJ5ZiG\":\"Ο χρήστης δεν έχει ανεξόφλητο χρέος μεταβλητού επιτοκίου σε αυτό το αποθεματικό\",\"oRVm8M\":\"Dark Mode\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"Το σταθερό επιτόκιο θα <0>μείνει το ίδιο για όλη τη διάρκεια του δανείου σας. Συνιστάται για μακροχρόνιες περιόδους δανεισμού και για χρήστες που προτιμούν την προβλεψιμότητα.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Διαθέσιμο για προμήθεια\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"Αυτό το περιουσιακό στοιχείο έχει φθάσει στο ανώτατο όριο δανεισμού του. Τίποτα δεν είναι διαθέσιμο για δανεισμό από αυτή την αγορά.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Το υποκείμενο υπόλοιπο πρέπει να είναι μεγαλύτερο από 0\",\"pgWG9H\":\"Δεν υπάρχει αρκετό κλειδωμένο υπόλοιπο\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"παρακαλούμε ελέγξτε ότι το ποσό που θέλετε να παρέχετε δεν χρησιμοποιείται επί του παρόντος για κλείδωμα. Εάν χρησιμοποιείται για κλείδωμα, η συναλλαγή σας ενδέχεται να αποτύχει.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Καταλαβαίνω πώς λειτουργεί η ψύξη (\",[\"0\"],\") και το ξεκλείδωμα (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"Ο καλών αυτής της συνάρτησης πρέπει να είναι ένα κοινόχρηστο ταμείο\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Κλειδωμένο\",\"qB4kPi\":\"Προσφορά APY\",\"qENI8q\":\"Γενικές ρυθμίσεις\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"αντιγράψτε το σφάλμα\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Συνδέστε το πορτοφόλι σας για να δείτε τις προμήθειες, τα δάνεια και τις ανοιχτές θέσεις σας.\",\"qY2jnw\":\"Μη έγκυρη λήξη\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Μη έγκυρη ποσότητα προς καύση\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Το ποσό πρέπει να είναι μεγαλύτερο από 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Εμφάνιση περιουσιακών στοιχείων με υπόλοιπο 0\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Διεκδικήστε όλες τις ανταμοιβές\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Αναθεώρηση συναλλαγής\",\"sP2+gB\":\"ΚΑΤΑ\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Μπορείτε να ξεκλειδώσετε εδώ\",\"smJNwH\":\"Διαθέσιμο για δανεισμό\",\"solypO\":\"Ο παράγοντας υγείας δεν είναι κάτω από το όριο\",\"sr0UJD\":\"Πηγαίνετε Πίσω\",\"ss5GCK\":\"Η διεύθυνση του παρόχου διευθύνσεων κοινόχρηστου ταμείου είναι άκυρη\",\"swEgK4\":\"Οι πληροφορίες ψήφου σας\",\"t+wtgf\":\"Τίποτα δανεισμένο ακόμα\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Τιμή Oracle\",\"tFZLf8\":\"Αυτός ο υπολογισμός gas είναι μόνο μια εκτίμηση. Το πορτοφόλι σας θα καθορίσει την τιμή της συναλλαγής. Μπορείτε να τροποποιήσετε τις ρυθμίσεις gas απευθείας από τον πάροχο του πορτοφολιού σας.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Παρακαλώ, συνδέστε το πορτοφόλι σας\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Οι προμήθειές σας\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Η συναλλαγή απέτυχε\",\"u706uF\":\"Άκυρη πριμοδότηση flashloan\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Για την αποπληρωμή ενός συγκεκριμένου τύπου χρέους, ο χρήστης πρέπει να έχει χρέος αυτού του τύπου\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Απόκρυψη\",\"vMba49\":\"Ο δανεισμός δεν είναι ενεργοποιημένος\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Γλώσσα\",\"vesuBJ\":\"Σας επιτρέπει να αποφασίσετε αν θα χρησιμοποιήσετε ένα παρεχόμενο περιουσιακό στοιχείο ως εγγύηση. Ένα περιουσιακό στοιχείο που χρησιμοποιείται ως εγγύηση θα επηρεάσει τη δανειοληπτική σας ικανότητα και τον συντελεστή υγείας.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Σταθερό νόμισμα\",\"w/JtJ3\":\"Η σταθερή προσφορά χρέους δεν είναι μηδενική\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Ανταμοιβές APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Εσείς \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"Ο καλών της συνάρτησης δεν είναι AToken\",\"wRRqvW\":\"Δεν έχετε προμήθειες σε αυτό το νόμισμα\",\"wZFvVU\":\"ΨΗΦΙΣΤΕ ΥΠΕΡ\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Βρύση \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Τρέχον διαφορικό\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, παρακαλούμε μεταβείτε στο\",\"xNy/UG\":\"Αποπληρωμή με\",\"xPm8wv\":\"Μάθετε περισσότερα για τους κινδύνους\",\"xXYpZl\":[[\"0\"],\" Βρύση\"],\"xaVBSS\":\"Οι πληροφορίες σας\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Ενεργοποίηση \",[\"symbol\"],\" ως εγγύηση\"],\"yCrG6m\":\"Συνολικό μέγεθος της αγοράς\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Επισκόπηση συναλλαγής\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Μη έγκυρη διεύθυνση\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"Δεν μπορείτε να αλλάξετε τη χρήση ως λειτουργία εγγύησης για αυτό το νόμισμα, διότι θα προκαλέσει κλήση εγγύησης\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Δεν υπάρχουν αρκετά κεφάλαια στο\",[\"0\"],\"αποθεματικό για δανεισμό\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Κλείσιμο\",\"z4uGQg\":\"Υπέρβαση του ανώτατου ορίου χρέους\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"Η εγγύηση που έχει επιλεγεί δεν μπορεί να ρευστοποιηθεί\",\"z5Y+p6\":[\"Παροχή \",[\"symbol\"]],\"zCjNKs\":\"Η ενέργεια δεν μπορεί να εκτελεστεί επειδή το αποθεματικό έχει παγώσει\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Υπολειπόμενο χρέος\",\"zmTPiV\":\"Υπόλοιπο προσφοράς\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Μενού\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Μάθετε περισσότερα\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"Cxt2YY\":\"Watch wallet\",\"DR+4uL\":\"Supply balance after switch\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Show Frozen or paused assets\",\"TszKts\":\"Borrow balance after switch\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"gIMJlW\":\"Λειτουργία Testnet\",\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\",\"yB1YpA\":\"Σκοτεινή λειτουργία\"}")}; \ No newline at end of file diff --git a/src/locales/en/messages.js b/src/locales/en/messages.js index 96d01ce00a..376c82cd98 100644 --- a/src/locales/en/messages.js +++ b/src/locales/en/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"If you DO NOT unstake within \",[\"0\"],\" of unstake window, you will need to activate cooldown process again.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participating in this \",[\"symbol\"],\" reserve gives annualized rewards.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Borrow cap\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"Stable borrowing is not enabled\",\"/yQcJM\":\"Total worth\",\"00AB2i\":\"User did not borrow the specified currency\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Please connect a wallet to view your personal information here.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Liquidation <0/> threshold\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"View details\",\"2FYpfJ\":\"More\",\"2O3qp5\":\"Available liquidity\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Stable borrowing is enabled\",\"34Qfwy\":\"Borrow cap is exceeded\",\"39eQRj\":[\"Borrow \",[\"symbol\"]],\"3BL1xB\":\"Total supplied\",\"3K0oMo\":\"Remaining supply\",\"3MoZhl\":\"There is not enough collateral to cover a new borrow\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Supply \",[\"symbol\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Repay\",\"3qsjtp\":\"The weighted average of APY for all supplied assets, including incentives.\",\"3rL+os\":\"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Voting results\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"This asset has almost reached its supply cap. There can only be \",[\"messageValue\"],\" supplied to this market.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Variable debt supply is not zero\",\"5che++\":\"To request access for this permissioned market, please visit: <0>Acces Provider Name\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Allowance required action\",\"5rsnKT\":\"Available rewards\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Overview\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Collateral\",\"65A04M\":\"Spanish\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Repay \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Voting power\",\"6f8S68\":\"Markets\",\"6g1gi0\":\"Proposals\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Switch Network\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Health factor\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Reached\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Claim all\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Dashboard\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions\",\"87pUEW\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"All proposals\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Invalid amount to mint\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Disconnect Wallet\",\"8Zz7s5\":\"assets\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Utilization Rate\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Show\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"You are entering Isolation mode\",\"9CDK3/\":[\"Borrowing is currently unavailable for \",[\"0\"],\".\"],\"9GIj3z\":\"Reserve Size\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Current votes\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"This asset has almost reached its borrow cap. There is only \",[\"messageValue\"],\" available to be borrowed from this market.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"This asset has reached its supply cap. Nothing is available to be supplied from this market.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Since this is a test network, you can get any of the assets if you have ETH on your wallet\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Your borrows\",\"AV7cGz\":\"Review approval tx details\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Borrowing power and assets are limited due to Isolation mode.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Collateral usage is limited because of isolation mode. <0>Learn More\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Asset category\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Claim \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Faucet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Collateral is (mostly) the same currency that is being borrowed\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"The underlying asset cannot be rescued\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave per month\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collateralization\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Disabled\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Withdrawing \",[\"symbol\"]],\"EdQY6l\":\"None\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Learn more.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Borrow power used\",\"FPKEug\":\"Operation not supported\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"on\",\"Fjw9N+\":\"Assets to supply\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Assets\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"ends\",\"GtP2hp\":[\"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for \",[\"0\"],\" category. To manage E-Mode categories visit your <0>Dashboard.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Unstake window\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Cooldown period\",\"IaA40H\":\"Liquidation at\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"You can not use this currency as collateral\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Not enough balance on your wallet\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Wallet balance\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Isolated\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Expires\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Wrong Network\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Enter ETH address\",\"KvG1xW\":\"Claiming\",\"L+8Lzs\":\"Current LTV\",\"L+qiq+\":\"Market\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"No voting power\",\"LL0zks\":\"Can be collateral\",\"LLdJWu\":\"Claimable AAVE\",\"LSIpNK\":\"Borrow and repay in same block is not allowed\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Recipient address\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"staking view\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"If the health factor goes below 1, the liquidation of your collateral might be triggered.\",\"Mm/DVQ\":\"You cancelled the transaction.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Invalid return value of the flashloan executor function\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pending...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nothing staked\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Unbacked mint cap is exceeded\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Proposal overview\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"disabled\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Withdraw\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"The weighted average of APY for all borrowed assets, including incentives.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Liquidation threshold\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Not reached\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Disable \",[\"symbol\"],\" as collateral\"],\"RMtxNk\":\"Differential\",\"RNK49r\":\"Invalid signature\",\"RS0o7b\":\"State\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Proposal details\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Asset is not listed\",\"Rj01Fz\":\"Links\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"Health factor is lesser than the liquidation threshold\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Enabled\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Funds in the Safety Module\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Total available\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Disabling E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Pool addresses provider is not registered\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Borrow\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Liquidation penalty\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"Asset can only be used as collateral in isolation mode only.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"User does not have outstanding stable rate debt on this reserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Asset is not borrowable in isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Details\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"These funds have been borrowed and are not available for withdrawal at this time.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No rewards to claim\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Connect wallet\",\"VMfYUK\":\"Safety of your deposited collateral against the borrowed assets and its underlying value.\",\"VOAZJh\":\"Total borrows\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Review tx details\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nothing supplied yet\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more\",\"WPWG/y\":\"Reserve status & configuration\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"User cannot withdraw more than the available balance\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"To borrow you need to supply any asset to be used as collateral.\",\"X/ITG9\":\"Copy error text\",\"X3Pp6x\":\"Used as collateral\",\"X4Zt7j\":\"Action cannot be performed because the reserve is paused\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"You will exit isolation mode and other tokens can now be used as collateral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTE NAY\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Enabling E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Interest rate rebalance conditions were not met\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Aave Governance\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Efficiency mode (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Before supplying\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Liquidation value\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"enabled\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Time left to unstake\",\"a5RYZd\":\"Disabling this asset as collateral affects your borrowing power and Health Factor.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Array parameters that should be equal length are not\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Borrow APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Cooldown period warning\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Asset\",\"bXQ/Og\":\"Share on twitter\",\"bXr0ee\":\"Isolated assets have limited borrowing power and other assets cannot be used as collateral.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"The requested amount is greater than the max loan size in stable rate mode\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Supply\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Address is not a contract\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"You can not withdraw this amount because it will cause collateral call\",\"cBc+4A\":\"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Risk details\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Repaying \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Forum discussion\",\"csDS2L\":\"Available\",\"cu7Stb\":\"You did not participate in this proposal\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Governance\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Ltv validation failed\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Assets to borrow\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Collateral usage\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Action requires an active reserve\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Total borrowed\",\"ecqEvn\":\"The collateral balance is 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstake now\",\"evw5ha\":\"Net worth\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"You switched to \",[\"0\"],\" rate\"],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Your current loan to value based on your collateral supplied.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Withdraw \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"User is trying to borrow multiple assets including a siloed one\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Zero address not valid\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Invalid bridge protocol fee\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Net APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Amount\",\"hjDCQr\":\"There was some error. Please try changing the parameters or <0><1>copy the error\",\"hom7qf\":\"Claim\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Borrowing \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Inconsistent flashloan parameters\",\"iEPVHF\":\"Not enough voting power to participate in this proposal\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"You voted \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Enter an amount\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens is not the same as staking them. If you wish to stake your\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"Collateral usage is limited because of Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Supplying your\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Disable E-Mode\",\"jKYzR1\":\"Enable E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Cooldown time left\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Unavailable\",\"k/sb6z\":\"Select language\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Claim \",[\"0\"]],\"kH6wUX\":\"Price impact\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"To repay on behalf of a user an explicit amount to repay is needed\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Supply cap is exceeded\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Debt ceiling is not zero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"English\",\"lfEjIE\":\"Learn more in our <0>FAQ guide\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Total emission per day\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Ok, Close\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Asset cannot be used as collateral.\",\"n+SX4g\":\"Developers\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Supply apy\",\"nJgsQu\":\"With a voting power of <0/>\",\"nLC6tu\":\"French\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Can be executed\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"AToken supply is not zero\",\"o5ooMr\":\"Debt\",\"o7J4JM\":\"Filter\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown to unstake\",\"oJ5ZiG\":\"User does not have outstanding variable rate debt on this reserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Available to supply\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"The underlying balance needs to be greater than 0\",\"pgWG9H\":\"Not enough staked balance\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"I understand how cooldown (\",[\"0\"],\") and unstaking (\",[\"1\"],\") work\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"The caller of this function must be a pool\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Staked\",\"qB4kPi\":\"Supply APY\",\"qENI8q\":\"Global settings\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copy the error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Please connect your wallet to see your supplies, borrowings, and open positions.\",\"qY2jnw\":\"Invalid expiration\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Invalid amount to burn\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Amount must be greater than 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Show assets with 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Claim all rewards\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Review tx\",\"sP2+gB\":\"NAY\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"You unstake here\",\"smJNwH\":\"Available to borrow\",\"solypO\":\"Health factor is not below the threshold\",\"sr0UJD\":\"Go Back\",\"ss5GCK\":\"The address of the pool addresses provider is invalid\",\"swEgK4\":\"Your voting info\",\"t+wtgf\":\"Nothing borrowed yet\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Oracle price\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Please, connect your wallet\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Your supplies\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Transaction failed\",\"u706uF\":\"Invalid flashloan premium\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Hide\",\"vMba49\":\"Borrowing is not enabled\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"Stable debt supply is not zero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Rewards APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"You \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"The caller of the function is not an AToken\",\"wRRqvW\":\"You do not have supplies in this currency\",\"wZFvVU\":\"VOTE YAE\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Current differential\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, please go to the\",\"xNy/UG\":\"Repay with\",\"xPm8wv\":\"Learn more about risks involved\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Your info\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Enable \",[\"symbol\"],\" as collateral\"],\"yB1YpA\":\"Dark mode\",\"yCrG6m\":\"Total market size\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Transaction overview\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Not a valid address\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"You can not switch usage as collateral mode for this currency, because it will cause collateral call\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"There are not enough funds in the\",[\"0\"],\"reserve to borrow\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Close\",\"z4uGQg\":\"Debt ceiling is exceeded\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"The collateral chosen cannot be liquidated\",\"z5Y+p6\":[\"Supplying \",[\"symbol\"]],\"zCjNKs\":\"Action cannot be performed because the reserve is frozen\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Remaining debt\",\"zmTPiV\":\"Supply balance\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Learn more\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"If you DO NOT unstake within \",[\"0\"],\" of unstake window, you will need to activate cooldown process again.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participating in this \",[\"symbol\"],\" reserve gives annualized rewards.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Borrow cap\",\"+nuEh/\":\"Estimated time\",\"+vhh5+\":\"Test Mode\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Borrowing this amount will reduce your health factor and increase risk of liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"Stable borrowing is not enabled\",\"/yQcJM\":\"Total worth\",\"00AB2i\":\"User did not borrow the specified currency\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Rate change\",\"0BF3yK\":\"Sorry, we couldn't find the page you were looking for.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Liquidation risk\",\"0ojY+Y\":\"Current v2 Balance\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Collateral change\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Price data is not currently available for this reserve on the protocol subgraph\",\"1LjK22\":\"Transaction history\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Please connect a wallet to view your personal information here.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Liquidation <0/> threshold\",\"1t7rez\":\"Asset supply is limited to a certain amount to reduce protocol exposure to the asset and to help manage risks involved.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"View details\",\"2FYpfJ\":\"More\",\"2O3qp5\":\"Available liquidity\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Asset cannot be migrated due to supply cap restriction in \",[\"marketName\"],\" v3 market.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Please enter a valid wallet address.\",\"2eBWE6\":\"I acknowledge the risks involved.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"Stable borrowing is enabled\",\"34Qfwy\":\"Borrow cap is exceeded\",\"39eQRj\":[\"Borrow \",[\"symbol\"]],\"3BL1xB\":\"Total supplied\",\"3K0oMo\":\"Remaining supply\",\"3MoZhl\":\"There is not enough collateral to cover a new borrow\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Supply \",[\"symbol\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Repay\",\"3qsjtp\":\"The weighted average of APY for all supplied assets, including incentives.\",\"3rL+os\":\"You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active.\",\"41vemL\":\"Watch Wallet\",\"42UgDM\":[\"Migrate to \",[\"0\"],\" v3 Market\"],\"49UFQA\":\"Voting results\",\"4DMZUI\":\"View Transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Terms\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Sign to continue\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test assets at\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"This asset has almost reached its supply cap. There can only be \",[\"messageValue\"],\" supplied to this market.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"Variable debt supply is not zero\",\"5che++\":\"To request access for this permissioned market, please visit: <0>Acces Provider Name\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" received\"],\"5hDe9v\":\"Allowance required action\",\"5rsnKT\":\"Available rewards\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"View all votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Overview\",\"60crCe\":\"All transactions\",\"62Xcjh\":\"Collateral\",\"65A04M\":\"Spanish\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signing\",\"6Jrv+z\":[\"Repay \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Voting power\",\"6f8S68\":\"Markets\",\"6g1gi0\":\"Proposals\",\"6gvoHP\":\"Copy error message\",\"6h3Q5G\":\"repaid\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Switch Network\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Health factor\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Reached\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"Borrowing is unavailable because you’re using Isolation mode. To manage Isolation mode visit your <0>Dashboard.\",\"7aKlMS\":\"Share on Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Claim all\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Data couldn't be fetched, please reload graph.\",\"7p5kLi\":\"Dashboard\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Be careful - You are very close to liquidation. Consider depositing more collateral or paying down some of your borrowed positions\",\"87pUEW\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets.\"],\"8F1i42\":\"Page not found\",\"8G8M0u\":\"Loading data...\",\"8Iu1QS\":\"withdrew\",\"8JL93T\":\"All proposals\",\"8Q51DU\":\"Add to wallet\",\"8X/oyn\":\"Invalid amount to mint\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Disconnect Wallet\",\"8Zz7s5\":\"assets\",\"8aLW8H\":\"Balance to revoke\",\"8bOT3H\":\"Utilization Rate\",\"8sLe4/\":\"View contract\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Show\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"You are entering Isolation mode\",\"9CDK3/\":[\"Borrowing is currently unavailable for \",[\"0\"],\".\"],\"9GIj3z\":\"Reserve Size\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Staking balance\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Current votes\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"This asset has almost reached its borrow cap. There is only \",[\"messageValue\"],\" available to be borrowed from this market.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"This asset has reached its supply cap. Nothing is available to be supplied from this market.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"MAI has been paused due to a community decision. Supply, borrows and repays are impacted. <0>More details\",\"9lXchd\":\"Underlying token\",\"9xSooW\":\"Since this is a test network, you can get any of the assets if you have ETH on your wallet\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choose one of the on-ramp services\",\"A6dCI6\":[\"Maximum amount available to borrow is <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Your borrows\",\"AV7cGz\":\"Review approval tx details\",\"AZOjB8\":\"Fetching data...\",\"Ai0jas\":\"Join the community discussion\",\"Ajl2rq\":\"Borrowing power and assets are limited due to Isolation mode.\",\"AqgYNC\":\"Protocol borrow cap at 100% for this asset. Further borrowing unavailable.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH supplied as collateral will continue to accrue staking rewards provided by daily rebases.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"Collateral usage is limited because of isolation mode. <0>Learn More\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Asset category\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"This asset is frozen due to an Aave community decision. <0>More details\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"of\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Techpaper\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Greek\",\"CkTRmy\":[\"Claim \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Please connect your wallet to see migration tool.\",\"CtGlFb\":[[\"networkName\"],\" Faucet\"],\"CuAHqa\":\"Protocol Incentives\",\"D33VQU\":\"This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"Collateral is (mostly) the same currency that is being borrowed\",\"DCnFg0\":[\"Addresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"I fully understand the risks of migrating.\",\"DONJcV\":\"The underlying asset cannot be rescued\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave per month\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collateralization\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Disabled\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restaking \",[\"symbol\"]],\"Ebgc76\":[\"Withdrawing \",[\"symbol\"]],\"EdQY6l\":\"None\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivate cooldown period to unstake \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrate to v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Learn more.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Current v2 balance\",\"FHpxjF\":[\"Reserve factor is a percentage of interest which goes to a \",[\"0\"],\" that is controlled by Aave governance to promote ecosystem growth.\"],\"FOBZa6\":\"Borrow power used\",\"FPKEug\":\"Operation not supported\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"on\",\"Fjw9N+\":\"Assets to supply\",\"FmN0fk\":\"Restake\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Switch E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Assets\",\"GgEj+0\":\"Read-only mode. Connect to a wallet to perform transactions.\",\"GjkIKV\":\"ends\",\"GtP2hp\":[\"Borrowing is unavailable because you’ve enabled Efficiency Mode (E-Mode) for \",[\"0\"],\" category. To manage E-Mode categories visit your <0>Dashboard.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Sorry, an unexpected error happened. In the meantime you may try reloading the page, or come back later.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Unstake window\",\"HpK/8d\":\"Reload\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Asset cannot be migrated to \",[\"marketName\"],\" v3 Market since collateral asset will enable isolation mode.\"],\"Hvwnm9\":[\"Maximum amount available to supply is limited because protocol supply cap is at \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"The total amount of your assets denominated in USD that can be used as collateral for borrowing assets.\",\"IAD2SB\":[\"Claiming \",[\"symbol\"]],\"IG9X9/\":\"Borrowing of this asset is limited to a certain amount to minimize liquidity pool insolvency.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"This asset is planned to be offboarded due to an Aave Protocol Governance decision. <0>More details\",\"IP+I/j\":\"Cooldown period\",\"IaA40H\":\"Liquidation at\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Manage analytics\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstaking \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"You can not use this currency as collateral\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Not enough balance on your wallet\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Wallet balance\",\"JtwD8u\":\"Borrow balance after repay\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Protocol debt ceiling is at 100% for this asset. Further borrowing against this asset is unavailable.\",\"KLXVqE\":[\"stETH tokens will be migrated to Wrapped stETH using Lido Protocol wrapper which leads to supply balance change after migration: \",[\"0\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Isolated\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Switching E-Mode\",\"KnN1Tu\":\"Expires\",\"KoOBI2\":\"Due to internal stETH mechanics required for rebasing support, it is not possible to perform a collateral switch where stETH is the source token.\",\"KojyJ4\":\"Wrong Network\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Enter ETH address\",\"KvG1xW\":\"Claiming\",\"L+8Lzs\":\"Current LTV\",\"L+qiq+\":\"Market\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"No voting power\",\"LL0zks\":\"Can be collateral\",\"LLdJWu\":\"Claimable AAVE\",\"LSIpNK\":\"Borrow and repay in same block is not allowed\",\"LVt3TI\":[\"<0>Slippage tolerance <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Try increasing slippage or reduce input amount\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Recipient address\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"staking view\",\"McHlGl\":\"APY change\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"If the health factor goes below 1, the liquidation of your collateral might be triggered.\",\"Mm/DVQ\":\"You cancelled the transaction.\",\"MnE2QX\":\"Borrow info\",\"MuDFEQ\":\"Invalid return value of the flashloan executor function\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"Asset can be only used as collateral in isolation mode with limited borrowing power. To enter isolation mode, disable all other collateral.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pending...\",\"NK9ikO\":\"Wallet Balance\",\"NMt2CB\":\"Amount claimable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nothing staked\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Unbacked mint cap is exceeded\",\"O+tyU+\":[\"Maximum amount available to borrow against this asset is limited because debt ceiling is at \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Proposal overview\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Protocol debt ceiling is at 100% for this asset. Futher borrowing against this asset is unavailable.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Reset\",\"Og2SKn\":\"disabled\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Website\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Withdraw\",\"P1dURE\":\"Revoke power\",\"P2WCD/\":[\"Underlying asset does not exist in \",[\"marketName\"],\" v3 Market, hence this position cannot be migrated.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stake ABPT\",\"P72/OW\":\"The weighted average of APY for all borrowed assets, including incentives.\",\"P7e6Ug\":\"Please connect your wallet to view transaction history.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Borrow apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Liquidation threshold\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"Enabling this asset as collateral increases your borrowing power and Health Factor. However, it can get liquidated if your health factor drops below 1.\",\"PsOFSf\":\"This action will reduce V2 health factor below liquidation threshold. retain collateral or migrate borrow position to continue.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Not reached\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Disable \",[\"symbol\"],\" as collateral\"],\"RMtxNk\":\"Differential\",\"RNK49r\":\"Invalid signature\",\"RS0o7b\":\"State\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Proposal details\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"Asset is not listed\",\"Rj01Fz\":\"Links\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"Health factor is lesser than the liquidation threshold\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Enabled\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Funds in the Safety Module\",\"SENccp\":\"If the error continues to happen,<0/> you may report it to this\",\"SM58dD\":\"Amount in cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Liquidation Threshold\",\"SUb8x0\":\"Total available\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Read-only mode allows to see address positions in Aave, but you won't be able to perform transactions.\",\"SZRUQ4\":\"Max slippage\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Protocol borrow cap is at 100% for this asset. Further borrowing unavailable.\",\"Sk2zW9\":\"Disabling E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Pool addresses provider is not registered\",\"T/AIqG\":\"Protocol supply cap at 100% for this asset. Further supply unavailable.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Borrow\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Liquidation penalty\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"Asset can only be used as collateral in isolation mode only.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"User does not have outstanding stable rate debt on this reserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Reload the page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"The app is running in testnet mode. Learn how it works in\",\"U9btTk\":\"Asset is not borrowable in isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Details\",\"UTTKmT\":\"Stake cooldown activated\",\"UXeR72\":\"These funds have been borrowed and are not available for withdrawal at this time.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No rewards to claim\",\"V0f2Xv\":\"Reserve factor\",\"V1HK43\":\"Migration risks\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Covered debt\",\"VHOVEJ\":\"Connect wallet\",\"VMfYUK\":\"Safety of your deposited collateral against the borrowed assets and its underlying value.\",\"VOAZJh\":\"Total borrows\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Review tx details\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nothing supplied yet\",\"W5kTFy\":\"Voting\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode increases your LTV for a selected category of assets up to<0/>. <1>Learn more\",\"WPWG/y\":\"Reserve status & configuration\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"User cannot withdraw more than the available balance\",\"WaZyaV\":\"<0>Ampleforth is a rebasing asset. Visit the <1>documentation to learn more.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Because this asset is paused, no actions can be taken until further notice\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"To borrow you need to supply any asset to be used as collateral.\",\"X/ITG9\":\"Copy error text\",\"X3Pp6x\":\"Used as collateral\",\"X4Zt7j\":\"Action cannot be performed because the reserve is paused\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"You will exit isolation mode and other tokens can now be used as collateral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTE NAY\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Enabling E-Mode\",\"YSodyW\":\"This action will reduce your health factor. Please be mindful of the increased risk of collateral liquidation.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode is ON\",\"YrDxdO\":\"If your loan to value goes above the liquidation threshold your collateral supplied may be liquidated.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Interest rate rebalance conditions were not met\",\"YyydIq\":[\"Add \",[\"0\"],\" to wallet to track your balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Aave Governance\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Efficiency mode (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Disable testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Before supplying\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Liquidation value\",\"ZrEc8j\":\"We couldn't find any assets related to your search. Try again with a different asset name, symbol, or address.\",\"ZsLF7e\":\"enabled\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Time left to unstake\",\"a5RYZd\":\"Disabling this asset as collateral affects your borrowing power and Health Factor.\",\"a7u1N9\":\"Price\",\"a9D+6D\":\"Unstaked\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Buy Crypto With Fiat\",\"aOKIms\":\"Array parameters that should be equal length are not\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Borrow APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Cooldown period warning\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Asset\",\"bXQ/Og\":\"Share on twitter\",\"bXr0ee\":\"Isolated assets have limited borrowing power and other assets cannot be used as collateral.\",\"bYmAV1\":\"Addresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"The requested amount is greater than the max loan size in stable rate mode\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Supply\",\"bxN6EM\":\"Cannot disable E-Mode\",\"c91vuQ\":\"Address is not a contract\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"You can not withdraw this amount because it will cause collateral call\",\"cBc+4A\":\"This is the total amount available for you to borrow. You can borrow based on your collateral and until the borrow cap is reached.\",\"cIl5kp\":\"Your voting power is based on your AAVE/stkAAVE balance and received delegations.\",\"cLo09S\":\"Risk details\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Repaying \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Forum discussion\",\"csDS2L\":\"Available\",\"cu7Stb\":\"You did not participate in this proposal\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Governance\",\"dEgA5A\":\"Cancel\",\"dIsyWh\":\"Ltv validation failed\",\"dOB5nW\":[\"Maximum amount available to supply is <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Assets to borrow\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Borrowing is disabled due to an Aave community decision. <0>More details\",\"djsg0o\":\"Collateral usage\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Aave debt token\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 addresses\",\"eD8WX/\":\"Action requires an active reserve\",\"eJRJ04\":\"Amount to unstake\",\"eLh0cL\":\"Slippage is the difference between the quoted and received amounts from changing market conditions between the moment the transaction is submitted and its verification.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Staking Rewards\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"No transactions yet.\",\"ebLGGN\":\"Total borrowed\",\"ecqEvn\":\"The collateral balance is 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Available on\",\"enruNF\":\"starts\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstake now\",\"evw5ha\":\"Net worth\",\"ezcU16\":\"Get ABP Token\",\"f3W0Ej\":[\"You switched to \",[\"0\"],\" rate\"],\"fMJQZK\":\"Borrowed\",\"fZ5Vnu\":\"Received\",\"firl9Q\":\"Your current loan to value based on your collateral supplied.\",\"fldjW9\":\"Preview tx and migrate\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Withdraw \",[\"symbol\"]],\"fwjWSI\":\"Supplied\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Voted NAY\",\"gDd2gk\":\"about SuperFest.\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"This asset is frozen due to an Aave Protocol Governance decision. <0>More details\",\"gTHi2T\":\"User is trying to borrow multiple assets including a siloed one\",\"gVW59Y\":\"Please connect your wallet to get free testnet assets.\",\"gcFNxP\":\"Approve Confirmed\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Zero address not valid\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Invalid bridge protocol fee\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activate Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"Net APY\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Claimed\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Amount\",\"hjDCQr\":\"There was some error. Please try changing the parameters or <0><1>copy the error\",\"hom7qf\":\"Claim\",\"hpHJ4I\":\"Liquidated collateral\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Borrowing \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"About GHO\",\"iChbOF\":\"Inconsistent flashloan parameters\",\"iEPVHF\":\"Not enough voting power to participate in this proposal\",\"iEW87X\":\"Delegated power\",\"iEju36\":[\"You voted \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Select slippage tolerance\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Enter an amount\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens is not the same as staking them. If you wish to stake your\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Use it to vote for or against active proposals.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"Collateral usage is limited because of Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Supplying your\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Disable E-Mode\",\"jKYzR1\":\"Enable E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Cooldown time left\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrated\",\"jmXdoY\":\"In E-Mode some assets are not borrowable. Exit E-Mode to get access to all assets\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Unavailable\",\"k/sb6z\":\"Select language\",\"k3wP3f\":\"<0>Attention: Parameter changes via governance can alter your account health factor and risk of liquidation. Follow the <1>Aave governance forum for updates.\",\"kACpF3\":[\"Claim \",[\"0\"]],\"kH6wUX\":\"Price impact\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" assets selected\"],\"kN1Yg5\":\"To repay on behalf of a user an explicit amount to repay is needed\",\"kRTD40\":[\"Repayment amount to reach \",[\"0\"],\"% utilization\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Supply cap is exceeded\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"Debt ceiling is not zero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"Asset cannot be migrated due to insufficient liquidity or borrow cap limitation in \",[\"marketName\"],\" v3 market.\"],\"lVhKKI\":\"Voted YAE\",\"lWLqxB\":\"We couldn't find any transactions related to your search. Try again with a different asset name, or reset filters.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"English\",\"lfEjIE\":\"Learn more in our <0>FAQ guide\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Total emission per day\",\"m7r7Hh\":\"Selected borrow assets\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Your \",[\"name\"],\" wallet is empty. Purchase or transfer assets or use <0>\",[\"0\"],\" to transfer your \",[\"network\"],\" assets.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Buy \",[\"cryptoSymbol\"],\" with Fiat\"],\"mvCXBY\":\"Stake AAVE\",\"mwdzil\":\"Ok, Close\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Asset cannot be used as collateral.\",\"n+SX4g\":\"Developers\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Supply apy\",\"nJgsQu\":\"With a voting power of <0/>\",\"nLC6tu\":\"French\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Can be executed\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Both\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Something went wrong\",\"nxyWvj\":\"Withdrawing this amount will reduce your health factor and increase risk of liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"AToken supply is not zero\",\"o5ooMr\":\"Debt\",\"o7J4JM\":\"Filter\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown to unstake\",\"oJ5ZiG\":\"User does not have outstanding variable rate debt on this reserve\",\"oRVm8M\":\"Dark Mode\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Test Assets\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Available to supply\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Nothing found\",\"owSsI3\":\"Signatures ready\",\"p+R52m\":\"Go to Balancer Pool\",\"p2S64u\":\"The loan to value of the migrated positions would cause liquidation. Increase migrated collateral or reduce migrated borrow to continue.\",\"p2Z2Qi\":\"This asset has reached its borrow cap. Nothing is available to be borrowed from this market.\",\"p45alK\":\"Set up delegation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"The underlying balance needs to be greater than 0\",\"pgWG9H\":\"Not enough staked balance\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"I understand how cooldown (\",[\"0\"],\") and unstaking (\",[\"1\"],\") work\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"The caller of this function must be a pool\",\"q/51mF\":\"Migrate to V3\",\"q3df11\":\"Interest rate strategy\",\"q6lAbz\":\"Staked\",\"qB4kPi\":\"Supply APY\",\"qENI8q\":\"Global settings\",\"qGz5zl\":\"Collateral balance after repay\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copy the error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Please connect your wallet to see your supplies, borrowings, and open positions.\",\"qY2jnw\":\"Invalid expiration\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Invalid amount to burn\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Amount must be greater than 0\",\"rQ+R+0\":\"Selected supply assets\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Show assets with 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacy\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Claim all rewards\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Your proposition power is based on your AAVE/stkAAVE balance and received delegations.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Review tx\",\"sP2+gB\":\"NAY\",\"sQv06Y\":\"for\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"You unstake here\",\"smJNwH\":\"Available to borrow\",\"solypO\":\"Health factor is not below the threshold\",\"sr0UJD\":\"Go Back\",\"ss5GCK\":\"The address of the pool addresses provider is invalid\",\"swEgK4\":\"Your voting info\",\"t+wtgf\":\"Nothing borrowed yet\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Oracle price\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Go to V3 Dashboard\",\"tOcg3N\":\"Since this asset is frozen, the only available actions are withdraw and repay which can be accessed from the <0>Dashboard\",\"tOuXfv\":[\"Borrow amount to reach \",[\"0\"],\"% utilization\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Please, connect your wallet\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Your supplies\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Transaction failed\",\"u706uF\":\"Invalid flashloan premium\",\"u8Gfu7\":[\"No search results\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No assets selected to migrate.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrating\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Export data to\",\"ulup2p\":\"Buy Crypto with Fiat\",\"usB84Z\":\"Maximum amount available to borrow is limited because protocol borrow cap is nearly reached.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Insufficient collateral to cover new borrow position. Wallet must have borrowing power remaining to perform debt switch.\",\"vEqxH9\":\"Restaked\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Hide\",\"vMba49\":\"Borrowing is not enabled\",\"vMpNwt\":\"Approve with\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"Stable debt supply is not zero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Rewards APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"You \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Discord channel\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"The caller of the function is not an AToken\",\"wRRqvW\":\"You do not have supplies in this currency\",\"wZFvVU\":\"VOTE YAE\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Selected assets have successfully migrated. Visit the Market Dashboard to see them.\",\"x7F2p6\":\"Current differential\",\"x7K5ib\":[\"Your \",[\"networkName\"],\" wallet is empty. Get free test \",[\"0\"],\" at\"],\"x9iLRD\":\"tokens, please go to the\",\"xNy/UG\":\"Repay with\",\"xPm8wv\":\"Learn more about risks involved\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Your info\",\"xaWZ6f\":\"APY type change\",\"xh6k71\":\"Collateral usage is limited because of isolation mode.\",\"xvIklc\":\"Flashloan is disabled for this asset, hence this position cannot be migrated.\",\"y5rS9U\":\"Migrate\",\"y66tBm\":[\"Enable \",[\"symbol\"],\" as collateral\"],\"yCrG6m\":\"Total market size\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Transaction overview\",\"yLGmLX\":[\"Restake \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Not a valid address\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Track wallet\",\"yh2sjd\":[\"Price impact \",[\"0\"],\"%\"],\"yhvj6d\":\"You can not switch usage as collateral mode for this currency, because it will cause collateral call\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"There are not enough funds in the\",[\"0\"],\"reserve to borrow\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Close\",\"z4uGQg\":\"Debt ceiling is exceeded\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"The collateral chosen cannot be liquidated\",\"z5Y+p6\":[\"Supplying \",[\"symbol\"]],\"zCjNKs\":\"Action cannot be performed because the reserve is frozen\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Isolated Debt Ceiling\",\"zTOjMP\":\"Protocol supply cap is at 100% for this asset. Further supply unavailable.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Remaining debt\",\"zmTPiV\":\"Supply balance\",\"zpPbZl\":\"Liquidation risk parameters\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Learn more\",\"zy9fXn\":[\"Asset is frozen in \",[\"marketName\"],\" v3 market, hence this position cannot be migrated.\"],\"zys+R6\":\"Be mindful of the network congestion and gas prices.\"}")}; \ No newline at end of file diff --git a/src/locales/en/messages.po b/src/locales/en/messages.po index 3a92e762e2..4172ce78ef 100644 --- a/src/locales/en/messages.po +++ b/src/locales/en/messages.po @@ -56,6 +56,10 @@ msgstr "Borrow cap" msgid "Estimated time" msgstr "Estimated time" +#: src/layouts/components/TestNetModeSwitcher.tsx +msgid "Test Mode" +msgstr "Test Mode" + #: src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx #: src/modules/umbrella/StakeCooldownModalContent.tsx msgid "Remind me" @@ -335,6 +339,11 @@ msgstr "The weighted average of APY for all supplied assets, including incentive msgid "You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active." msgstr "You can only withdraw your assets from the Security Module after the cooldown period ends and the unstake window is active." +#: src/layouts/MobileMenu.tsx +#: src/layouts/SettingsMenu.tsx +msgid "Watch Wallet" +msgstr "Watch Wallet" + #: src/modules/dashboard/DashboardTopPanel.tsx msgid "Migrate to {0} v3 Market" msgstr "Migrate to {0} v3 Market" @@ -954,11 +963,6 @@ msgstr "{networkName} Faucet" msgid "Protocol Incentives" msgstr "Protocol Incentives" -#: src/layouts/MobileMenu.tsx -#: src/layouts/SettingsMenu.tsx -msgid "Watch wallet" -msgstr "Watch wallet" - #: src/modules/migration/MigrationBottomPanel.tsx msgid "This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue." msgstr "This action will reduce health factor of V3 below liquidation threshold. Increase migrated collateral or reduce migrated borrow to continue." @@ -2886,10 +2890,6 @@ msgstr "Voted NAY" msgid "about SuperFest." msgstr "about SuperFest." -#: src/layouts/components/TestNetModeSwitcher.tsx -msgid "Testnet mode" -msgstr "Testnet mode" - #: src/components/transactions/Swap/actions/WithdrawAndSwap/WithdrawAndSwapActionsViaParaswap.tsx #: src/components/transactions/Swap/actions/WithdrawAndSwap/WithdrawAndSwapActionsViaParaswap.tsx #: src/modules/history/actions/ActionDetails.tsx @@ -3501,6 +3501,10 @@ msgstr "Cooldown to unstake" msgid "User does not have outstanding variable rate debt on this reserve" msgstr "User does not have outstanding variable rate debt on this reserve" +#: src/layouts/components/DarkModeSwitcher.tsx +msgid "Dark Mode" +msgstr "Dark Mode" + #: src/modules/sGho/SGhoSavingsRate.tsx msgid "Savings Rate" msgstr "Savings Rate" @@ -3645,7 +3649,6 @@ msgid "Supply APY" msgstr "Supply APY" #: src/layouts/MobileMenu.tsx -#: src/layouts/SettingsMenu.tsx msgid "Global settings" msgstr "Global settings" @@ -4216,10 +4219,6 @@ msgstr "Migrate" msgid "Enable {symbol} as collateral" msgstr "Enable {symbol} as collateral" -#: src/layouts/components/DarkModeSwitcher.tsx -msgid "Dark mode" -msgstr "Dark mode" - #: src/modules/markets/MarketsTopPanel.tsx msgid "Total market size" msgstr "Total market size" diff --git a/src/locales/es/messages.js b/src/locales/es/messages.js index d50d5ee64f..bae98a9df2 100644 --- a/src/locales/es/messages.js +++ b/src/locales/es/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Si NO unstakeas entre \",[\"0\"],\" de la ventana de unstakeo, necesitarás activar el proceso de cooldown de nuevo.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participar en esta reserva de \",[\"symbol\"],\" da recompensas anuales.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Límite del préstamo\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Cantidad para migrar\",\"/7ykiW\":\"Tomar prestado esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"Preguntas frecuentes\",\"/yNlZf\":\"El préstamo estable no está habilitado\",\"/yQcJM\":\"Valor total\",\"00AB2i\":\"El usuario no tomó prestado el activo especificado\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Cambio de tasa\",\"0BF3yK\":\"Lo sentimos, no hemos podido encontrar la página que estabas buscando.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Riesgo de liquidación\",\"0ojY+Y\":\"Balance actual v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Cambio de garantía\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Los datos de los precios no están disponibles actualmente para esta reserva en el subgraph del protocolo\",\"1LjK22\":\"Historial de transacciones\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Por favor conecta una cartera para ver tu información personal aquí.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Umbral <0/> de liquidación\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Ver detalles\",\"2FYpfJ\":\"Más\",\"2O3qp5\":\"Liquidez disponible\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Este activo no se puede migrar debido a una restricción del límite de suministro en el mercado v3 de \",[\"marketName\"],\".\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Por favor introduce una dirección de cartera válida.\",\"2eBWE6\":\"Acepto los riesgos involucadros.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"El préstamo estable no está habilitado\",\"34Qfwy\":\"El límite del préstamo se ha sobrepasado\",\"39eQRj\":[\"Tomar prestado \",[\"symbol\"]],\"3BL1xB\":\"Total suministrado\",\"3K0oMo\":\"Suministro restante\",\"3MoZhl\":\"No hay suficiente garantía para cubrir un nuevo préstamo\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Suministrar \",[\"symbol\"]],\"3mXg0z\":\"LTV máximo\",\"3q3mFy\":\"Pagar\",\"3qsjtp\":\"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrar al mercado V3 de \",[\"0\"]],\"49UFQA\":\"Resultados de la votación\",\"4DMZUI\":\"Ver Transacciones\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Términos\",\"4YYh4d\":\"Máximo disponible para tomar prestado\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Firma para continuar\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transacciones\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue activos de prueba gratis en\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentación\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Este activo casi ha alcanzado su límite de suministro. Solo se puede suministrar \",[\"messageValue\"],\" a este mercado.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"El suministro de deuda variable no es cero\",\"5che++\":\"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso\",\"5ctNdV\":[\"Mínimo \",[\"0\"],\" recibido\"],\"5hDe9v\":\"Acción de permiso requerida\",\"5rsnKT\":\"Recompensas disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Ver todos los votos\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Resumen\",\"60crCe\":\"Todas las transacciones\",\"62Xcjh\":\"Garantía\",\"65A04M\":\"Español\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Firmando\",\"6Jrv+z\":[\"Pagar \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Poder de votación\",\"6f8S68\":\"Mercados\",\"6g1gi0\":\"Propuestas\",\"6gvoHP\":\"Copiar mensaje de error\",\"6h3Q5G\":\"reembolsado\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Cambiar de red\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Factor de salud\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Alcanzado\",\"7YlcXu\":\"El fork mode está activado\",\"7Z76Iw\":\"Tomar prestado no está disponible porque estás usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.\",\"7aKlMS\":\"Compartir en Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Reclamar todo\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"No se pudieron recuperar los datos, por favor recarga el gráfico.\",\"7p5kLi\":\"Panel de control\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Ten cuidado - Estás muy cerca de la liquidación. Considera depositar más garantía o pagar alguno de tus préstamos\",\"87pUEW\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos.\"],\"8F1i42\":\"Página no encontrada\",\"8G8M0u\":\"Cargando datos...\",\"8Iu1QS\":\"retirado\",\"8JL93T\":\"Todas las propuestas\",\"8Q51DU\":\"Añadir a la cartera\",\"8X/oyn\":\"Cantidad invalidad para generar\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Desconectar cartera\",\"8Zz7s5\":\"activos\",\"8aLW8H\":\"Balance a revocar\",\"8bOT3H\":\"Tasa de uso\",\"8sLe4/\":\"Ver contrato\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Mostrar\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Estás entrando en el Isolation mode\",\"9CDK3/\":[\"Tomar prestado no está disponible actualmente para \",[\"0\"],\".\"],\"9GIj3z\":\"Tamaño de la reserva\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Balance stakeado\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votos actuales\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Este activo casi ha alcanzado su límite de préstamo. Solo hay \",[\"messageValue\"],\" disponibles para ser prestado de este mercado.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Este activo ha alcanzado su límite de suministro. No queda nada disponible para ser suministrado desde este mercado.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Token subyacente\",\"9xSooW\":\"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Elige uno de los servicios on-ramp\",\"A6dCI6\":[\"La máxima cantidad disponible para tomar prestado es <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Tus préstamos\",\"AV7cGz\":\"Revisa los detalles del approve\",\"AZOjB8\":\"Recuperando datos...\",\"Ai0jas\":\"Únete a la discusión de la comunidad\",\"Ajl2rq\":\"El poder de préstamo y los activos están limitados debido al Isolation mode.\",\"AqgYNC\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH suministrado como garantía continuará acumulando recompensas de staking proporcionadas por rebases diarios.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"El uso como garantía está limitado debido al isolation mode. <0>Aprende más\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Categoría de activos\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Este activo está congelado debido a una decisión de la comunidad de Aave. <0>Más información\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Documento técnico\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Griego\",\"CkTRmy\":[\"Reclamar \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Por favor conecta tu cartera para ver la herramienta de migración.\",\"CtGlFb\":[\"Faucet \",[\"networkName\"]],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"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.\",\"DAma/S\":\"La garantía es (en su mayoría) el mismo activo que se está tomando prestado\",\"DCnFg0\":[\"Direcciones (\",[\"0\"],\")\"],\"DG3Lv1\":\"Entiendo completamente los riesgos de migrar.\",\"DONJcV\":\"El activo base no puede ser rescatado\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave por mes\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Colateralización\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Deshabilitado\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restakeando \",[\"symbol\"]],\"Ebgc76\":[\"Retirando \",[\"symbol\"]],\"EdQY6l\":\"Ninguno\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivar el periodo de cooldown para unstakear \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrar a V3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Aprende más.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Balance actual v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Capacidad de préstamo utilizada\",\"FPKEug\":\"Operación no soportada\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Direcciones vinculadas\",\"Fdp03t\":\"en\",\"Fjw9N+\":\"Activos a suministrar\",\"FmN0fk\":\"Restakear\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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\xA0la\xA0DAO\xA0de\xA0Aave.\",\"GQrBTq\":\"Cambiar E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Activos\",\"GgEj+0\":\"Modo de solo lectura. Conéctate a una cartera para realizar transacciones.\",\"GjkIKV\":\"finaliza\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la página, o volver después.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Ventana de unstakeo\",\"HpK/8d\":\"Recargar\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Este activo no se puede migrar al mercado v3 de \",[\"marketName\"],\", ya que el activo de garantía habilitará el isolation mode.\"],\"Hvwnm9\":[\"La cantidad máxima disponible para suministrar está limitada porque el límite de suministro del protocolo está al \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"La cantidad total de tus activos denominados en USD que pueden ser usados como garantía para activos de préstamo.\",\"IAD2SB\":[\"Reclamando \",[\"symbol\"]],\"IG9X9/\":\"Tomar prestado este activo está limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"Está previsto que este activo se desvincule debido a una decisión del Gobierno del Protocolo Aave. <0>Más detalles\",\"IP+I/j\":\"Periodo de cooldown\",\"IaA40H\":\"Liquidación en\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Administrar analíticas\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstakeando \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"No puedes usar este activo como garantía\",\"JYKRJS\":\"Stakear\",\"JZMxX0\":\"No hay suficiente balance en tu cartera\",\"Jgflkm\":\"Obtener GHO\",\"JoMQnI\":\"Balance de la cartera\",\"JtwD8u\":\"Balance tomado prestado tras pagar\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"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.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Aislado\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Cambiando E-Mode\",\"KnN1Tu\":\"Caduca\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Red incorrecta\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Introduce la dirección ETH\",\"KvG1xW\":\"Reclamando\",\"L+8Lzs\":\"LTV actual\",\"L+qiq+\":\"Mercado\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Sin poder de voto\",\"LL0zks\":\"Puede ser garantía\",\"LLdJWu\":\"AAVE Reclamable\",\"LSIpNK\":\"Tomar prestado y pagar en el mismo bloque no está permitido\",\"LVt3TI\":[\"<0>Tolerancia de deslizamiento <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Modo E\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Dirección del destinatario\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vista de stakeo\",\"McHlGl\":\"Cambio de APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si el factor de salud se encuentra por debajo de 1, la liquidación de tu colateral puede ser activada.\",\"Mm/DVQ\":\"Has cancelado la transacción.\",\"MnE2QX\":\"Información de préstamo\",\"MuDFEQ\":\"Valor de retorno inválido en la función executor del préstamo flash\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pendiente...\",\"NK9ikO\":\"Balance de la cartera\",\"NMt2CB\":\"Cantidad reclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nada invertido\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"El límite de minteo sin respaldo ha sido excedido\",\"O+tyU+\":[\"La cantidad máxima disponible para tomar prestado contra este activo está limitada porque el límite de deuda está al \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstakear\",\"OR8cYX\":\"Resumen de la propuesta\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"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.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Restablecer\",\"Og2SKn\":\"deshabilitado\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Página web\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirar\",\"P1dURE\":\"Revocar poder\",\"P2WCD/\":[\"El activo subyacente no existe en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stakea ABPT\",\"P72/OW\":\"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.\",\"P7e6Ug\":\"Por favor conecta tu cartera para ver el historial de transacciones.\",\"PByO0X\":\"Votos\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Deshabilitar fork\",\"PJK9u/\":\"Apy préstamo\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Umbral de liquidación\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Retirando\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"No alcanzado\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Desactivar \",[\"symbol\"],\" como garantía\"],\"RMtxNk\":\"Diferencial\",\"RNK49r\":\"Firma inválida\",\"RS0o7b\":\"Estado\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Detalles de la propuesta\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"El activo no está listado\",\"Rj01Fz\":\"Enlaces\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"El factor de salud es menor que el umbral de liquidación\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Habilitado\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fondos en el Módulo de Seguridad\",\"SENccp\":\"Si el error persiste, <0/> podrías reportarlo a esto\",\"SM58dD\":\"Cantidad en cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Umbral de liquidación\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrás realizar transacciones.\",\"SZRUQ4\":\"Deslizamiento máximo\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"Sk2zW9\":\"Desactivando E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"La dirección del proveedor del pool no esta registrada\",\"T/AIqG\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"T0xCO9\":\"No se puede validar la dirección de la cartera. Vuelve a intentarlo.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Tomar prestado\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Penalización de liquidación\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"El activo solo puede usarse como garantía en el Isolation mode únicamente.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"El usuario no tiene deuda pendiente de tasa estable en esta reserva\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recarga la página\",\"U2r8nY\":\"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.\",\"U8IubP\":\"La aplicación se está ejecutando en testnet mode. Aprende como funciona en\",\"U9btTk\":\"El activo no se puede pedir prestado en isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Detalles\",\"UTTKmT\":\"Cooldown de stakeo activado\",\"UXeR72\":\"Estos fondos se han tomado prestados y no están disponibles para su retirada en este momento.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No hay recompensas para reclamar\",\"V0f2Xv\":\"Factor de reserva\",\"V1HK43\":\"Riesgos de migración\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Deuda cubierta\",\"VHOVEJ\":\"Conectar cartera\",\"VMfYUK\":\"Seguridad de tu garantía depositada contra los activos prestados y su valor subyacente.\",\"VOAZJh\":\"Total de préstamos\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Revisar detalles de la tx\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nada suministrado aún\",\"W5kTFy\":\"Votando\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"El E-Mode incrementa tu LTV para una categoría seleccionada de activos hasta el <0/>. <1>Aprende más\",\"WPWG/y\":\"Configuración y estado de la reserva\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"El usuario no puede retirar más que el balance disponible\",\"WaZyaV\":\"<0>Ampleforth es un activo con rebase. Visita la <1>documentación para aprender más.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Debido a que este activo está en pausa, no se pueden realizar acciones hasta nuevo aviso\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantía.\",\"X/ITG9\":\"Copiar el texto del error\",\"X3Pp6x\":\"Utilizado como garantía\",\"X4Zt7j\":\"No se puede realizar la acción porque la reserva está pausada\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Saldrás del modo aislamiento y otros tokens pueden ser usados ahora como garantía\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTAR NO\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Habilitar E-Mode\",\"YSodyW\":\"Esta acción reducirá tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidación de la garantía.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode está ON\",\"YrDxdO\":\"Si tu relación préstamo-valor supera el umbral de liquidación, tu garantía puede ser liquidada.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"No se cumplieron las condiciones de ajuste de tasas de interés\",\"YyydIq\":[\"Añade \",[\"0\"],\" a tu cartera para hacer un seguimiento del balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gobierno de Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Modo de eficiencia (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Deshabilitar testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Antes de suministrar\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valor de liquidación\",\"ZrEc8j\":\"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.\",\"ZsLF7e\":\"habilitado\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Tempo restante para unstakear\",\"a5RYZd\":\"Deshabilitar este activo como garantía afecta tu poder de préstamo y Factor de Salud.\",\"a7u1N9\":\"Precio\",\"a9D+6D\":\"Unstakeado\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Votar NO\",\"aMmFE1\":\"Comprar Crypto con Fiat\",\"aOKIms\":\"Los parámetros del array que deberían ser iguales en longitud no lo son\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"Se ha producido un error al recuperar la propuesta.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"APY préstamo, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Advertencia periodo de cooldown\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Activo\",\"bXQ/Og\":\"Compartir en twitter\",\"bXr0ee\":\"Los activos aislados han limitado tu capacidad de préstamo y otros activos no pueden ser usados como garantía.\",\"bYmAV1\":\"Direcciones\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"La cantidad solicitada es mayor que el tamaño máximo del préstamo en el modo de tasa estable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Suministrar\",\"bxN6EM\":\"No se puede deshabilitar E-Mode\",\"c91vuQ\":\"La dirección no es un contrato\",\"c97os2\":\"aToken de Aave\",\"c9b44w\":\"No puedes retirar esta cantidad porque causará una liquidación\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"cLo09S\":\"Detalles de riesgo\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Votar SI\",\"ckf7gX\":[\"Pagando \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Hilo de discusión del foro\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"No has participado en esta propuesta\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gobierno\",\"dEgA5A\":\"Cancelar\",\"dIsyWh\":\"La validación del LTV ha fallado\",\"dOB5nW\":[\"La cantidad máxima disponible para suministrar es <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Activos a tomar prestado\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Tomar prestado está deshabilitado debido a una decisión de la comunidad de Aave. <0>Más información\",\"djsg0o\":\"Uso de la garantía\",\"drdV8R\":\"Liquidación\",\"dxW8cS\":\"Token de deuda de Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 direcciones\",\"eD8WX/\":\"La acción requiere una reserva activa\",\"eJRJ04\":\"Cantidad para unstakear\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Editar\",\"eVpCmf\":\"Recompensas de Staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aún no hay transacciones.\",\"ebLGGN\":\"Total tomado prestado\",\"ecqEvn\":\"El balance de garantía es 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible en\",\"enruNF\":\"empieza\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstakea ahora\",\"evw5ha\":\"Valor neto\",\"ezcU16\":\"Obtener Token ABP\",\"f3W0Ej\":[\"Has cambiado a tasa \",[\"0\"]],\"fMJQZK\":\"Prestado\",\"fZ5Vnu\":\"Recibido\",\"firl9Q\":\"Tu actual relación préstamo-valor basado en tu garantía suministrada.\",\"fldjW9\":\"Previsualizar la tx y migrar\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Retirar \",[\"symbol\"]],\"fwjWSI\":\"Suministrado\",\"fwyTMb\":\"Migrar a stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Votó NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Testnet mode\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Este activo está congelado debido a una decisión del Gobierno del Protocolo Aave. <0>More información\",\"gTHi2T\":\"El usuario está intentando tomar prestado múltiples activos incluido uno aislado\",\"gVW59Y\":\"Por favor conecta tu cartera para obtener activos testnet gratis.\",\"gcFNxP\":\"Aprobación confirmada\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Dirección cero no válida\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Comisión de puente de protocolo inválida\",\"h33MxW\":\"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activar Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY neto\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Reclamado\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Cantidad\",\"hjDCQr\":\"Hubo un error. Por favor intenta cambiar los parámetros o <0><1>copiar el error\",\"hom7qf\":\"Reclamar\",\"hpHJ4I\":\"Garantía liquidada\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Tomando prestado \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"Sobre GHO\",\"iChbOF\":\"Parámetros inconsistentes del préstamo flash\",\"iEPVHF\":\"No hay suficiente poder de voto para participar en esta propuesta\",\"iEW87X\":\"Poder delegado\",\"iEju36\":[\"Has votado \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Seleccionar tolerancia de deslizamiento\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Ingresa una cantidad\",\"iSLIjg\":\"Conectar\",\"iUo5rv\":\"tokens no es lo mismo que stakearlos. Si deseas stakearlos\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Úsalo para votar a favor o en contra de propuestas activas.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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 \"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"El uso de garantías está limitado debido al Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Suministrando tu\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Desactivar el E-Mode\",\"jKYzR1\":\"Habilitar E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Periodo restante de cooldown\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrado\",\"jmXdoY\":\"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"No disponible\",\"k/sb6z\":\"Seleccionar idioma\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Reclamar \",[\"0\"]],\"kH6wUX\":\"Impacto del precio\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" activos seleccionados\"],\"kN1Yg5\":\"Para pagar en nombre de un usuario, se necesita una cantidad explícita para pagar\",\"kRTD40\":[\"Cantidad a pagar para alcanzar el \",[\"0\"],\"% de utilización\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"El límite de suministro se ha sobrepasado\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"El límite de deuda no es cero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"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.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"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\"],\".\"],\"lVhKKI\":\"Votó YAE\",\"lWLqxB\":\"No pudimos encontrar ninguna transacción relacionada con tu búsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Inglés\",\"lfEjIE\":\"Aprende más en nuestra guía <0>Preguntas frecuentes\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Emisiones totales por día\",\"m7r7Hh\":\"Activos de préstamo seleccionados\",\"mDDK4p\":\"Pool de Balancer\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos o usa <0>\",[\"0\"],\" para transferir tus activos de \",[\"network\"],\".\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Comprar \",[\"cryptoSymbol\"],\" con Fiat\"],\"mvCXBY\":\"Stakea AAVE\",\"mwdzil\":\"Vale, cerrar\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Este activo no puede usarse como garantía.\",\"n+SX4g\":\"Desarrolladores\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Apy de suministro\",\"nJgsQu\":\"Con un poder de votación de <0/>\",\"nLC6tu\":\"Francés\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposición\",\"nPGNMh\":\"Puede ser ejecutado\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Ambos\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Se produjo un error\",\"nxyWvj\":\"Retirar esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"El balance de AToken no es cero\",\"o5ooMr\":\"Deuda\",\"o7J4JM\":\"Filtro\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown para undstakear\",\"oJ5ZiG\":\"El usuario no tiene deuda pendiente de tasa variable en esta reserva\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Activos de prueba\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible para suministrar\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Sin resultados\",\"owSsI3\":\"Firmas listas\",\"p+R52m\":\"Ir al pool de Balancer\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Este activo ha alcanzado su límite de préstamo. No queda nada disponible para ser prestado de este mercado.\",\"p45alK\":\"Configurar la delegación\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"El balance subyacente debe ser mayor que 0\",\"pgWG9H\":\"No hay suficiente balance stakeado\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Cantidad mínima recibida\",\"pooutM\":\"La votación está activa\",\"pqaM5s\":\"Confirmando transacción\",\"ptaxX3\":[\"Entiendo como el cooldown (\",[\"0\"],\") y el proceso de unstaking (\",[\"1\"],\") funcionan\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"La función debe ser llamada por un pool\",\"q/51mF\":\"Migrar a V3\",\"q3df11\":\"Estrategia de tasa de interés\",\"q6lAbz\":\"Stakeado\",\"qB4kPi\":\"Suministrar APY\",\"qENI8q\":\"Configuración global\",\"qGz5zl\":\"Balance de la garantía tras pagar\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copiar el error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Por favor, conecta tu cartera para ver tus suministros, préstamos y posiciones abiertas.\",\"qY2jnw\":\"Expiración inválida\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Cantidad inválida para quemar\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"La cantidad debe ser mayor que 0\",\"rQ+R+0\":\"Activos de suministro seleccionados\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"\"],\"rcT+yy\":\"Mostrar activos con 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacidad\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Reclamar todas las recompensas\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Tu poder de proposición se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstakear \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Revisión tx\",\"sP2+gB\":\"NO\",\"sQv06Y\":\"para\",\"sTtO6J\":\"Confirmar transacción\",\"sXKb3l\":\"Tasa de cambio\",\"sb0q4+\":\"Unstakea aquí\",\"smJNwH\":\"Disponible para tomar prestado\",\"solypO\":\"El factor de salud no está por debajo del umbral\",\"sr0UJD\":\"Volver atrás\",\"ss5GCK\":\"La dirección del proveedor del grupo de direcciones no es válida\",\"swEgK4\":\"Tu información de voto\",\"t+wtgf\":\"Nada tomado prestado aún\",\"t/YqKh\":\"Eliminar\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Precio del oráculo\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Ir al panel de control V3\",\"tOcg3N\":\"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\",\"tOuXfv\":[\"Cantidad a tomar prestado para alcanzar el \",[\"0\"],\"% de utilización\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Por favor, conecta tu cartera\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Tus suministros\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Error en la transacción\",\"u706uF\":\"Préstamo flash inválido\",\"u8Gfu7\":[\"Sin resultados de búsqueda\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No hay activos seleccionados para migrar.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrando\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Para el pago de un tipo específico de deuda, el usuario necesita tener una deuda de ese tipo\",\"ulNuNq\":\"Exportar datos a\",\"ulup2p\":\"Comprar Crypto con Fiat\",\"usB84Z\":\"La cantidad máxima disponible para tomar prestado está limitada porque casi se ha alcanzado el límite de préstamo del protocolo.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"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.\",\"vEqxH9\":\"Restakeado\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Ocultar\",\"vMba49\":\"Tomar prestado no está habilitado\",\"vMpNwt\":\"Aprobar con\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Idioma\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"El balance de deuda estable no es cero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"APR de recompensas\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Tu \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Canal de Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"El llamador de la función no es un AToken\",\"wRRqvW\":\"No tienes suministros en este activo\",\"wZFvVU\":\"VOTAR SI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"No tienes balance de AAVE/stkAAVE/aAave para delegar.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Obtener Token ABP v2\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.\",\"x7F2p6\":\"Diferencial actual\",\"x7K5ib\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue \",[\"0\"],\" de prueba gratis en\"],\"x9iLRD\":\"tokens, por favor ve al\",\"xNy/UG\":\"Pagar con\",\"xPm8wv\":\"Aprende más sobre los riesgos involucrados\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Tu información\",\"xaWZ6f\":\"Cambio tipo de APY\",\"xh6k71\":\"El uso de garantías está limitado debido al isolation mode.\",\"xvIklc\":\"El préstamo flash está deshabilitado para este activo, por lo tanto, esta posición no se puede migrar.\",\"y5rS9U\":\"Migrar\",\"y66tBm\":[\"Habilitar \",[\"symbol\"],\" como garantía\"],\"yB1YpA\":\"Modo oscuro\",\"yCrG6m\":\"Tamaño total del mercado\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Resumen de la transacción\",\"yLGmLX\":[\"Restakear \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Dirección no válida\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Haz seguimiento de tu cartera\",\"yh2sjd\":[\"Impacto en el precio \",[\"0\"],\"%\"],\"yhvj6d\":\"No puedes cambiar el uso como modo de garantía para este activo, porque causará una liquidación\",\"ylmtBZ\":\"La aplicación se ejecuta en fork mode.\",\"ymNY32\":[\"No hay fondos suficientes en la reserva\",[\"0\"],\"para tomar prestado\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Cerrar\",\"z4uGQg\":\"El límite de deuda está sobrepasado\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantía elegida no puede ser liquidada\",\"z5Y+p6\":[\"Suministrando \",[\"symbol\"]],\"zCjNKs\":\"No se puede realizar la acción porque la reserva está congelada\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Límite de deuda aislado\",\"zTOjMP\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Deuda restante\",\"zmTPiV\":\"Balance de suministro\",\"zpPbZl\":\"Parámetros de riesgo de liquidación\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menú\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Aprende más\",\"zy9fXn\":[\"Este activo está congelado en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"zys+R6\":\"Ten en cuenta la congestión de la red y los precios del gas.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Balance del suministro después del cambio\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Mostrar activos congelados o pausados\",\"TszKts\":\"Balance de préstamo después del cambio\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"Si NO unstakeas entre \",[\"0\"],\" de la ventana de unstakeo, necesitarás activar el proceso de cooldown de nuevo.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participar en esta reserva de \",[\"symbol\"],\" da recompensas anuales.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Límite del préstamo\",\"+nuEh/\":\"Estimated time\",\"+vhh5+\":\"Test Mode\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Cantidad para migrar\",\"/7ykiW\":\"Tomar prestado esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"Preguntas frecuentes\",\"/yNlZf\":\"El préstamo estable no está habilitado\",\"/yQcJM\":\"Valor total\",\"00AB2i\":\"El usuario no tomó prestado el activo especificado\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Cambio de tasa\",\"0BF3yK\":\"Lo sentimos, no hemos podido encontrar la página que estabas buscando.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Riesgo de liquidación\",\"0ojY+Y\":\"Balance actual v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Cambio de garantía\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"Los datos de los precios no están disponibles actualmente para esta reserva en el subgraph del protocolo\",\"1LjK22\":\"Historial de transacciones\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Por favor conecta una cartera para ver tu información personal aquí.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Umbral <0/> de liquidación\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Ver detalles\",\"2FYpfJ\":\"Más\",\"2O3qp5\":\"Liquidez disponible\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"Este activo no se puede migrar debido a una restricción del límite de suministro en el mercado v3 de \",[\"marketName\"],\".\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Por favor introduce una dirección de cartera válida.\",\"2eBWE6\":\"Acepto los riesgos involucadros.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"El préstamo estable no está habilitado\",\"34Qfwy\":\"El límite del préstamo se ha sobrepasado\",\"39eQRj\":[\"Tomar prestado \",[\"symbol\"]],\"3BL1xB\":\"Total suministrado\",\"3K0oMo\":\"Suministro restante\",\"3MoZhl\":\"No hay suficiente garantía para cubrir un nuevo préstamo\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Suministrar \",[\"symbol\"]],\"3mXg0z\":\"LTV máximo\",\"3q3mFy\":\"Pagar\",\"3qsjtp\":\"El promedio ponderado de APY para todos los activos suministrados, incluidos los incentivos.\",\"3rL+os\":\"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.\",\"41vemL\":\"Watch Wallet\",\"42UgDM\":[\"Migrar al mercado V3 de \",[\"0\"]],\"49UFQA\":\"Resultados de la votación\",\"4DMZUI\":\"Ver Transacciones\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Términos\",\"4YYh4d\":\"Máximo disponible para tomar prestado\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Firma para continuar\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transacciones\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue activos de prueba gratis en\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentación\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Este activo casi ha alcanzado su límite de suministro. Solo se puede suministrar \",[\"messageValue\"],\" a este mercado.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"El suministro de deuda variable no es cero\",\"5che++\":\"Para solicitar acceso a este mercado, porfavor visita: <0>Nombre del proveedor de acceso\",\"5ctNdV\":[\"Mínimo \",[\"0\"],\" recibido\"],\"5hDe9v\":\"Acción de permiso requerida\",\"5rsnKT\":\"Recompensas disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Ver todos los votos\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Resumen\",\"60crCe\":\"Todas las transacciones\",\"62Xcjh\":\"Garantía\",\"65A04M\":\"Español\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Firmando\",\"6Jrv+z\":[\"Pagar \",[\"symbol\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Cooling down...\",\"6bxci/\":\"Poder de votación\",\"6f8S68\":\"Mercados\",\"6g1gi0\":\"Propuestas\",\"6gvoHP\":\"Copiar mensaje de error\",\"6h3Q5G\":\"reembolsado\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Cambiar de red\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Factor de salud\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Alcanzado\",\"7YlcXu\":\"El fork mode está activado\",\"7Z76Iw\":\"Tomar prestado no está disponible porque estás usando el Isolation mode. Para administrar el Isolation mode, visita tu <0>Panel de control.\",\"7aKlMS\":\"Compartir en Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Reclamar todo\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"No se pudieron recuperar los datos, por favor recarga el gráfico.\",\"7p5kLi\":\"Panel de control\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"Ten cuidado - Estás muy cerca de la liquidación. Considera depositar más garantía o pagar alguno de tus préstamos\",\"87pUEW\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos.\"],\"8F1i42\":\"Página no encontrada\",\"8G8M0u\":\"Cargando datos...\",\"8Iu1QS\":\"retirado\",\"8JL93T\":\"Todas las propuestas\",\"8Q51DU\":\"Añadir a la cartera\",\"8X/oyn\":\"Cantidad invalidad para generar\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Desconectar cartera\",\"8Zz7s5\":\"activos\",\"8aLW8H\":\"Balance a revocar\",\"8bOT3H\":\"Tasa de uso\",\"8sLe4/\":\"Ver contrato\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Mostrar\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Estás entrando en el Isolation mode\",\"9CDK3/\":[\"Tomar prestado no está disponible actualmente para \",[\"0\"],\".\"],\"9GIj3z\":\"Tamaño de la reserva\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Balance stakeado\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votos actuales\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Este activo casi ha alcanzado su límite de préstamo. Solo hay \",[\"messageValue\"],\" disponibles para ser prestado de este mercado.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Este activo ha alcanzado su límite de suministro. No queda nada disponible para ser suministrado desde este mercado.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Token subyacente\",\"9xSooW\":\"Puesto que esta es una red de pruebas, puedes obtener cualquiera de los activos si tienes ETH en tu cartera\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Elige uno de los servicios on-ramp\",\"A6dCI6\":[\"La máxima cantidad disponible para tomar prestado es <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Tus préstamos\",\"AV7cGz\":\"Revisa los detalles del approve\",\"AZOjB8\":\"Recuperando datos...\",\"Ai0jas\":\"Únete a la discusión de la comunidad\",\"Ajl2rq\":\"El poder de préstamo y los activos están limitados debido al Isolation mode.\",\"AqgYNC\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"stETH suministrado como garantía continuará acumulando recompensas de staking proporcionadas por rebases diarios.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"El uso como garantía está limitado debido al isolation mode. <0>Aprende más\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Categoría de activos\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Este activo está congelado debido a una decisión de la comunidad de Aave. <0>Más información\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Documento técnico\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Griego\",\"CkTRmy\":[\"Reclamar \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Por favor conecta tu cartera para ver la herramienta de migración.\",\"CtGlFb\":[\"Faucet \",[\"networkName\"]],\"CuAHqa\":\"Protocol Incentives\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"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.\",\"DAma/S\":\"La garantía es (en su mayoría) el mismo activo que se está tomando prestado\",\"DCnFg0\":[\"Direcciones (\",[\"0\"],\")\"],\"DG3Lv1\":\"Entiendo completamente los riesgos de migrar.\",\"DONJcV\":\"El activo base no puede ser rescatado\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave por mes\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Colateralización\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Deshabilitado\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Restakeando \",[\"symbol\"]],\"Ebgc76\":[\"Retirando \",[\"symbol\"]],\"EdQY6l\":\"Ninguno\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Reactivar el periodo de cooldown para unstakear \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrar a V3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Aprende más.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Balance actual v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Capacidad de préstamo utilizada\",\"FPKEug\":\"Operación no soportada\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Direcciones vinculadas\",\"Fdp03t\":\"en\",\"Fjw9N+\":\"Activos a suministrar\",\"FmN0fk\":\"Restakear\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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\xA0la\xA0DAO\xA0de\xA0Aave.\",\"GQrBTq\":\"Cambiar E-Mode\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Activos\",\"GgEj+0\":\"Modo de solo lectura. Conéctate a una cartera para realizar transacciones.\",\"GjkIKV\":\"finaliza\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Lo sentimos, se produjo un error imprevisto. Mientras tanto, puedes intentar recargar la página, o volver después.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Ventana de unstakeo\",\"HpK/8d\":\"Recargar\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"Este activo no se puede migrar al mercado v3 de \",[\"marketName\"],\", ya que el activo de garantía habilitará el isolation mode.\"],\"Hvwnm9\":[\"La cantidad máxima disponible para suministrar está limitada porque el límite de suministro del protocolo está al \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"La cantidad total de tus activos denominados en USD que pueden ser usados como garantía para activos de préstamo.\",\"IAD2SB\":[\"Reclamando \",[\"symbol\"]],\"IG9X9/\":\"Tomar prestado este activo está limitado a una cierta cantidad para minimizar la insolvencia del fondo de liquidez.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"Está previsto que este activo se desvincule debido a una decisión del Gobierno del Protocolo Aave. <0>Más detalles\",\"IP+I/j\":\"Periodo de cooldown\",\"IaA40H\":\"Liquidación en\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Administrar analíticas\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Unstakeando \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"No puedes usar este activo como garantía\",\"JYKRJS\":\"Stakear\",\"JZMxX0\":\"No hay suficiente balance en tu cartera\",\"Jgflkm\":\"Obtener GHO\",\"JoMQnI\":\"Balance de la cartera\",\"JtwD8u\":\"Balance tomado prestado tras pagar\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"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.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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.\",\"KYAjf3\":\"Aislado\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Cambiando E-Mode\",\"KnN1Tu\":\"Caduca\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Red incorrecta\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Introduce la dirección ETH\",\"KvG1xW\":\"Reclamando\",\"L+8Lzs\":\"LTV actual\",\"L+qiq+\":\"Mercado\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Sin poder de voto\",\"LL0zks\":\"Puede ser garantía\",\"LLdJWu\":\"AAVE Reclamable\",\"LSIpNK\":\"Tomar prestado y pagar en el mismo bloque no está permitido\",\"LVt3TI\":[\"<0>Tolerancia de deslizamiento <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Modo E\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Tip: Intenta aumentar el deslizamiento o reduce la cantidad de entrada\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Dirección del destinatario\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vista de stakeo\",\"McHlGl\":\"Cambio de APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si el factor de salud se encuentra por debajo de 1, la liquidación de tu colateral puede ser activada.\",\"Mm/DVQ\":\"Has cancelado la transacción.\",\"MnE2QX\":\"Información de préstamo\",\"MuDFEQ\":\"Valor de retorno inválido en la función executor del préstamo flash\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"Pendiente...\",\"NK9ikO\":\"Balance de la cartera\",\"NMt2CB\":\"Cantidad reclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Collector Contract\",\"NfpPeS\":\"Nada invertido\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"El límite de minteo sin respaldo ha sido excedido\",\"O+tyU+\":[\"La cantidad máxima disponible para tomar prestado contra este activo está limitada porque el límite de deuda está al \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstakear\",\"OR8cYX\":\"Resumen de la propuesta\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"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.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Restablecer\",\"Og2SKn\":\"deshabilitado\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Página web\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirar\",\"P1dURE\":\"Revocar poder\",\"P2WCD/\":[\"El activo subyacente no existe en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Stakea ABPT\",\"P72/OW\":\"El promedio ponderado de APY para todos los activos prestados, incluidos los incentivos.\",\"P7e6Ug\":\"Por favor conecta tu cartera para ver el historial de transacciones.\",\"PByO0X\":\"Votos\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Deshabilitar fork\",\"PJK9u/\":\"Apy préstamo\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Umbral de liquidación\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Retirando\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"No alcanzado\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Desactivar \",[\"symbol\"],\" como garantía\"],\"RMtxNk\":\"Diferencial\",\"RNK49r\":\"Firma inválida\",\"RS0o7b\":\"Estado\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Detalles de la propuesta\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"El activo no está listado\",\"Rj01Fz\":\"Enlaces\",\"RmWFEe\":\"Staking APR\",\"RtBLm7\":\"El factor de salud es menor que el umbral de liquidación\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Habilitado\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fondos en el Módulo de Seguridad\",\"SENccp\":\"Si el error persiste, <0/> podrías reportarlo a esto\",\"SM58dD\":\"Cantidad en cooldown\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Umbral de liquidación\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"El modo de solo lectura permite ver las posiciones de las direcciones en Aave, pero no podrás realizar transacciones.\",\"SZRUQ4\":\"Deslizamiento máximo\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"El límite de préstamo del protocolo está al 100% para este activo. No es posible tomar más prestado.\",\"Sk2zW9\":\"Desactivando E-Mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"La dirección del proveedor del pool no esta registrada\",\"T/AIqG\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"T0xCO9\":\"No se puede validar la dirección de la cartera. Vuelve a intentarlo.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Tomar prestado\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Penalización de liquidación\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"El activo solo puede usarse como garantía en el Isolation mode únicamente.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"El usuario no tiene deuda pendiente de tasa estable en esta reserva\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recarga la página\",\"U2r8nY\":\"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.\",\"U8IubP\":\"La aplicación se está ejecutando en testnet mode. Aprende como funciona en\",\"U9btTk\":\"El activo no se puede pedir prestado en isolation mode\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Detalles\",\"UTTKmT\":\"Cooldown de stakeo activado\",\"UXeR72\":\"Estos fondos se han tomado prestados y no están disponibles para su retirada en este momento.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"No hay recompensas para reclamar\",\"V0f2Xv\":\"Factor de reserva\",\"V1HK43\":\"Riesgos de migración\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Deuda cubierta\",\"VHOVEJ\":\"Conectar cartera\",\"VMfYUK\":\"Seguridad de tu garantía depositada contra los activos prestados y su valor subyacente.\",\"VOAZJh\":\"Total de préstamos\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Revisar detalles de la tx\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Nada suministrado aún\",\"W5kTFy\":\"Votando\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"El E-Mode incrementa tu LTV para una categoría seleccionada de activos hasta el <0/>. <1>Aprende más\",\"WPWG/y\":\"Configuración y estado de la reserva\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"El usuario no puede retirar más que el balance disponible\",\"WaZyaV\":\"<0>Ampleforth es un activo con rebase. Visita la <1>documentación para aprender más.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Debido a que este activo está en pausa, no se pueden realizar acciones hasta nuevo aviso\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Para tomar prestado, necesitas suministrar cualquier activo para ser utilizado como garantía.\",\"X/ITG9\":\"Copiar el texto del error\",\"X3Pp6x\":\"Utilizado como garantía\",\"X4Zt7j\":\"No se puede realizar la acción porque la reserva está pausada\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Direcciones de cartera de contrato inteligente representativas (Safe) en otras cadenas.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Saldrás del modo aislamiento y otros tokens pueden ser usados ahora como garantía\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTAR NO\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Habilitar E-Mode\",\"YSodyW\":\"Esta acción reducirá tu factor de salud. Por favor ten en cuenta el riesgo incrementado de liquidación de la garantía.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Testnet mode está ON\",\"YrDxdO\":\"Si tu relación préstamo-valor supera el umbral de liquidación, tu garantía puede ser liquidada.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"No se cumplieron las condiciones de ajuste de tasas de interés\",\"YyydIq\":[\"Añade \",[\"0\"],\" a tu cartera para hacer un seguimiento del balance.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gobierno de Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Modo de eficiencia (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Deshabilitar testnet\",\"Zbyywy\":\"Max slashing\",\"ZfUGFb\":\"Antes de suministrar\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valor de liquidación\",\"ZrEc8j\":\"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.\",\"ZsLF7e\":\"habilitado\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Tempo restante para unstakear\",\"a5RYZd\":\"Deshabilitar este activo como garantía afecta tu poder de préstamo y Factor de Salud.\",\"a7u1N9\":\"Precio\",\"a9D+6D\":\"Unstakeado\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Votar NO\",\"aMmFE1\":\"Comprar Crypto con Fiat\",\"aOKIms\":\"Los parámetros del array que deberían ser iguales en longitud no lo son\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"Se ha producido un error al recuperar la propuesta.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"APY préstamo, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Advertencia periodo de cooldown\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Activo\",\"bXQ/Og\":\"Compartir en twitter\",\"bXr0ee\":\"Los activos aislados han limitado tu capacidad de préstamo y otros activos no pueden ser usados como garantía.\",\"bYmAV1\":\"Direcciones\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"La cantidad solicitada es mayor que el tamaño máximo del préstamo en el modo de tasa estable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Suministrar\",\"bxN6EM\":\"No se puede deshabilitar E-Mode\",\"c91vuQ\":\"La dirección no es un contrato\",\"c97os2\":\"aToken de Aave\",\"c9b44w\":\"No puedes retirar esta cantidad porque causará una liquidación\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Tu poder de voto se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"cLo09S\":\"Detalles de riesgo\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Votar SI\",\"ckf7gX\":[\"Pagando \",[\"symbol\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Hilo de discusión del foro\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"No has participado en esta propuesta\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gobierno\",\"dEgA5A\":\"Cancelar\",\"dIsyWh\":\"La validación del LTV ha fallado\",\"dOB5nW\":[\"La cantidad máxima disponible para suministrar es <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Activos a tomar prestado\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"Tomar prestado está deshabilitado debido a una decisión de la comunidad de Aave. <0>Más información\",\"djsg0o\":\"Uso de la garantía\",\"drdV8R\":\"Liquidación\",\"dxW8cS\":\"Token de deuda de Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 direcciones\",\"eD8WX/\":\"La acción requiere una reserva activa\",\"eJRJ04\":\"Cantidad para unstakear\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Editar\",\"eVpCmf\":\"Recompensas de Staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aún no hay transacciones.\",\"ebLGGN\":\"Total tomado prestado\",\"ecqEvn\":\"El balance de garantía es 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible en\",\"enruNF\":\"empieza\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Unstakea ahora\",\"evw5ha\":\"Valor neto\",\"ezcU16\":\"Obtener Token ABP\",\"f3W0Ej\":[\"Has cambiado a tasa \",[\"0\"]],\"fMJQZK\":\"Prestado\",\"fZ5Vnu\":\"Recibido\",\"firl9Q\":\"Tu actual relación préstamo-valor basado en tu garantía suministrada.\",\"fldjW9\":\"Previsualizar la tx y migrar\",\"fsBGk0\":\"Balance\",\"fu1Dbh\":[\"Retirar \",[\"symbol\"]],\"fwjWSI\":\"Suministrado\",\"fwyTMb\":\"Migrar a stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Powered by\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"FAQS\",\"g9zzqS\":\"Votó NAY\",\"gDd2gk\":\"about SuperFest.\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Este activo está congelado debido a una decisión del Gobierno del Protocolo Aave. <0>More información\",\"gTHi2T\":\"El usuario está intentando tomar prestado múltiples activos incluido uno aislado\",\"gVW59Y\":\"Por favor conecta tu cartera para obtener activos testnet gratis.\",\"gcFNxP\":\"Aprobación confirmada\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Dirección cero no válida\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Comisión de puente de protocolo inválida\",\"h33MxW\":\"Direcciones de cartera de contrato inteligente representantes (Safe) en otras cadenas.\",\"h3ilK+\":\".CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activar Cooldown\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY neto\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Reclamado\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Cantidad\",\"hjDCQr\":\"Hubo un error. Por favor intenta cambiar los parámetros o <0><1>copiar el error\",\"hom7qf\":\"Reclamar\",\"hpHJ4I\":\"Garantía liquidada\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Tomando prestado \",[\"symbol\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"Sobre GHO\",\"iChbOF\":\"Parámetros inconsistentes del préstamo flash\",\"iEPVHF\":\"No hay suficiente poder de voto para participar en esta propuesta\",\"iEW87X\":\"Poder delegado\",\"iEju36\":[\"Has votado \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Seleccionar tolerancia de deslizamiento\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Ingresa una cantidad\",\"iSLIjg\":\"Conectar\",\"iUo5rv\":\"tokens no es lo mismo que stakearlos. Si deseas stakearlos\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Úsalo para votar a favor o en contra de propuestas activas.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Collector Info\",\"igkfR1\":[\"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 \"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"El uso de garantías está limitado debido al Isolation mode.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Suministrando tu\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Desactivar el E-Mode\",\"jKYzR1\":\"Habilitar E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Periodo restante de cooldown\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migrado\",\"jmXdoY\":\"En E-Mode algunos activos no se pueden pedir prestados. Sal del E-Mode para obtener acceso a todos los activos\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"No disponible\",\"k/sb6z\":\"Seleccionar idioma\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Reclamar \",[\"0\"]],\"kH6wUX\":\"Impacto del precio\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" activos seleccionados\"],\"kN1Yg5\":\"Para pagar en nombre de un usuario, se necesita una cantidad explícita para pagar\",\"kRTD40\":[\"Cantidad a pagar para alcanzar el \",[\"0\"],\"% de utilización\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"El límite de suministro se ha sobrepasado\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\".JSON\",\"ks2LWT\":\"El límite de deuda no es cero\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"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.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"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\"],\".\"],\"lVhKKI\":\"Votó YAE\",\"lWLqxB\":\"No pudimos encontrar ninguna transacción relacionada con tu búsqueda. Vuelve a intentarlo con un nombre de activo diferente o restablece los filtros.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Inglés\",\"lfEjIE\":\"Aprende más en nuestra guía <0>Preguntas frecuentes\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Emisiones totales por día\",\"m7r7Hh\":\"Activos de préstamo seleccionados\",\"mDDK4p\":\"Pool de Balancer\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Tu cartera de \",[\"name\"],\" está vacía. Compra o transfiere activos o usa <0>\",[\"0\"],\" para transferir tus activos de \",[\"network\"],\".\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Comprar \",[\"cryptoSymbol\"],\" con Fiat\"],\"mvCXBY\":\"Stakea AAVE\",\"mwdzil\":\"Vale, cerrar\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"Este activo no puede usarse como garantía.\",\"n+SX4g\":\"Desarrolladores\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Apy de suministro\",\"nJgsQu\":\"Con un poder de votación de <0/>\",\"nLC6tu\":\"Francés\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposición\",\"nPGNMh\":\"Puede ser ejecutado\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Ambos\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Se produjo un error\",\"nxyWvj\":\"Retirar esta cantidad reducirá tu factor de salud y aumentará el riesgo de liquidación.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"El balance de AToken no es cero\",\"o5ooMr\":\"Deuda\",\"o7J4JM\":\"Filtro\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Cooldown para undstakear\",\"oJ5ZiG\":\"El usuario no tiene deuda pendiente de tasa variable en esta reserva\",\"oRVm8M\":\"Dark Mode\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Activos de prueba\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible para suministrar\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Sin resultados\",\"owSsI3\":\"Firmas listas\",\"p+R52m\":\"Ir al pool de Balancer\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Este activo ha alcanzado su límite de préstamo. No queda nada disponible para ser prestado de este mercado.\",\"p45alK\":\"Configurar la delegación\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"El balance subyacente debe ser mayor que 0\",\"pgWG9H\":\"No hay suficiente balance stakeado\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Cantidad mínima recibida\",\"pooutM\":\"La votación está activa\",\"pqaM5s\":\"Confirmando transacción\",\"ptaxX3\":[\"Entiendo como el cooldown (\",[\"0\"],\") y el proceso de unstaking (\",[\"1\"],\") funcionan\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"La función debe ser llamada por un pool\",\"q/51mF\":\"Migrar a V3\",\"q3df11\":\"Estrategia de tasa de interés\",\"q6lAbz\":\"Stakeado\",\"qB4kPi\":\"Suministrar APY\",\"qENI8q\":\"Configuración global\",\"qGz5zl\":\"Balance de la garantía tras pagar\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copiar el error\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Por favor, conecta tu cartera para ver tus suministros, préstamos y posiciones abiertas.\",\"qY2jnw\":\"Expiración inválida\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Cantidad inválida para quemar\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"La cantidad debe ser mayor que 0\",\"rQ+R+0\":\"Activos de suministro seleccionados\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"\"],\"rcT+yy\":\"Mostrar activos con 0 balance\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Privacidad\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Reclamar todas las recompensas\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Tu poder de proposición se basa en tu balance de AAVE/stkAAVE y delegaciones recibidas.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstakear \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Revisión tx\",\"sP2+gB\":\"NO\",\"sQv06Y\":\"para\",\"sTtO6J\":\"Confirmar transacción\",\"sXKb3l\":\"Tasa de cambio\",\"sb0q4+\":\"Unstakea aquí\",\"smJNwH\":\"Disponible para tomar prestado\",\"solypO\":\"El factor de salud no está por debajo del umbral\",\"sr0UJD\":\"Volver atrás\",\"ss5GCK\":\"La dirección del proveedor del grupo de direcciones no es válida\",\"swEgK4\":\"Tu información de voto\",\"t+wtgf\":\"Nada tomado prestado aún\",\"t/YqKh\":\"Eliminar\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Precio del oráculo\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Ir al panel de control V3\",\"tOcg3N\":\"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\",\"tOuXfv\":[\"Cantidad a tomar prestado para alcanzar el \",[\"0\"],\"% de utilización\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"Por favor, conecta tu cartera\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Tus suministros\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"Error en la transacción\",\"u706uF\":\"Préstamo flash inválido\",\"u8Gfu7\":[\"Sin resultados de búsqueda\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"No hay activos seleccionados para migrar.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migrando\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"Para el pago de un tipo específico de deuda, el usuario necesita tener una deuda de ese tipo\",\"ulNuNq\":\"Exportar datos a\",\"ulup2p\":\"Comprar Crypto con Fiat\",\"usB84Z\":\"La cantidad máxima disponible para tomar prestado está limitada porque casi se ha alcanzado el límite de préstamo del protocolo.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"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.\",\"vEqxH9\":\"Restakeado\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Ocultar\",\"vMba49\":\"Tomar prestado no está habilitado\",\"vMpNwt\":\"Aprobar con\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Idioma\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"El balance de deuda estable no es cero\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"APR de recompensas\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Tu \",[\"action\"],\" <0/> \",[\"symbol\"]],\"wBIsjb\":\"Canal de Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"El llamador de la función no es un AToken\",\"wRRqvW\":\"No tienes suministros en este activo\",\"wZFvVU\":\"VOTAR SI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"No tienes balance de AAVE/stkAAVE/aAave para delegar.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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\",\"wmE285\":\"Obtener Token ABP v2\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Los activos seleccionados se han migrado correctamente. Visita el panel de control del mercado para verlos.\",\"x7F2p6\":\"Diferencial actual\",\"x7K5ib\":[\"Tu cartera de \",[\"networkName\"],\" está vacía. Consigue \",[\"0\"],\" de prueba gratis en\"],\"x9iLRD\":\"tokens, por favor ve al\",\"xNy/UG\":\"Pagar con\",\"xPm8wv\":\"Aprende más sobre los riesgos involucrados\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Tu información\",\"xaWZ6f\":\"Cambio tipo de APY\",\"xh6k71\":\"El uso de garantías está limitado debido al isolation mode.\",\"xvIklc\":\"El préstamo flash está deshabilitado para este activo, por lo tanto, esta posición no se puede migrar.\",\"y5rS9U\":\"Migrar\",\"y66tBm\":[\"Habilitar \",[\"symbol\"],\" como garantía\"],\"yCrG6m\":\"Tamaño total del mercado\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Resumen de la transacción\",\"yLGmLX\":[\"Restakear \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Dirección no válida\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Haz seguimiento de tu cartera\",\"yh2sjd\":[\"Impacto en el precio \",[\"0\"],\"%\"],\"yhvj6d\":\"No puedes cambiar el uso como modo de garantía para este activo, porque causará una liquidación\",\"ylmtBZ\":\"La aplicación se ejecuta en fork mode.\",\"ymNY32\":[\"No hay fondos suficientes en la reserva\",[\"0\"],\"para tomar prestado\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Cerrar\",\"z4uGQg\":\"El límite de deuda está sobrepasado\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantía elegida no puede ser liquidada\",\"z5Y+p6\":[\"Suministrando \",[\"symbol\"]],\"zCjNKs\":\"No se puede realizar la acción porque la reserva está congelada\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Límite de deuda aislado\",\"zTOjMP\":\"El límite de suministro del protocolo está al 100% para este activo. No es posible suministrar más.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Deuda restante\",\"zmTPiV\":\"Balance de suministro\",\"zpPbZl\":\"Parámetros de riesgo de liquidación\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menú\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Aprende más\",\"zy9fXn\":[\"Este activo está congelado en el mercado v3 de \",[\"marketName\"],\", por lo tanto, esta posición no se puede migrar.\"],\"zys+R6\":\"Ten en cuenta la congestión de la red y los precios del gas.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"Cxt2YY\":\"Watch wallet\",\"DR+4uL\":\"Balance del suministro después del cambio\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Mostrar activos congelados o pausados\",\"TszKts\":\"Balance de préstamo después del cambio\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"gIMJlW\":\"Testnet mode\",\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\",\"yB1YpA\":\"Modo oscuro\"}")}; \ No newline at end of file diff --git a/src/locales/fr/messages.js b/src/locales/fr/messages.js index 3acfad1ed4..6454a74686 100644 --- a/src/locales/fr/messages.js +++ b/src/locales/fr/messages.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"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.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participer à cette réserve \",[\"symbol\"],\" donne des récompenses annualisées.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Limite d'emprunt\",\"+nuEh/\":\"Estimated time\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Emprunter ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"L'emprunt stable n'est pas activé\",\"/yQcJM\":\"Valeur totale\",\"00AB2i\":\"L'utilisateur n'a pas emprunté la devise spécifiée\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Changement de taux\",\"0BF3yK\":\"Désolé, nous n’avons pas trouvé la page que vous cherchiez.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Risque de liquidation\",\"0ojY+Y\":\"Solde actuel v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Modification des garanties\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"À l’heure actuelle, les données sur les prix ne sont pas disponibles pour cette réserve dans le sous-graphe du protocole\",\"1LjK22\":\"Historique des transactions\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Seuil de liquidation <0/>\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Voir détails\",\"2FYpfJ\":\"Plus\",\"2O3qp5\":\"Liquidités disponibles\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"L’actif ne peut pas être migré en raison d’une restriction de plafond d’approvisionnement dans \",[\"marketName\"],\" v3 marché.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Veuillez saisir une adresse de portefeuille valide.\",\"2eBWE6\":\"Je reconnais les risques encourus.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"L'emprunt stable est activé\",\"34Qfwy\":\"Le plafond d'emprunt est dépassé\",\"39eQRj\":[\"Emprunter \",[\"symbole\"]],\"3BL1xB\":\"Total fourni\",\"3K0oMo\":\"Offre restante\",\"3MoZhl\":\"Il n'y a pas assez de collatéral pour couvrir un nouvel emprunt\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Fournir \",[\"symbole\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Rembourser\",\"3qsjtp\":\"La moyenne pondérée de l'APY pour tous les actifs fournis, y compris les incitations.\",\"3rL+os\":\"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.\",\"42UgDM\":[\"Migrer vers \",[\"0\"],\" Marché v3\"],\"49UFQA\":\"Résultats du vote\",\"4DMZUI\":\"Afficher les transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Petits caractères\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Signez pour continuer\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenez des ressources de test gratuites à l’adresse suivante :\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que \",[\"messageValue\"],\" fourni à ce marché.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"L'offre de dette variable n'est pas nulle\",\"5che++\":\"Pour demander l'accès à ce marché autorisé, veuillez consulter\xA0: <0>Nom du fournisseur d'accès\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" reçu\"],\"5hDe9v\":\"Allocation action requise\",\"5rsnKT\":\"Récompenses disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Voir tous les votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Aperçu\",\"60crCe\":\"Toutes les transactions\",\"62Xcjh\":\"Collatérale\",\"65A04M\":\"Espagnol\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signature\",\"6Jrv+z\":[\"Rembourser \",[\"symbole\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Refroidissement...\",\"6bxci/\":\"Pouvoir de vote\",\"6f8S68\":\"Marchés\",\"6g1gi0\":\"Les propositions\",\"6gvoHP\":\"Copier le message d’erreur\",\"6h3Q5G\":\"Remboursé\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Changer de réseau\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Facteur de santé\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Atteint\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"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.\",\"7aKlMS\":\"Partager sur Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Réclamer tout\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Les données n’ont pas pu être récupérées, veuillez recharger le graphique.\",\"7p5kLi\":\"Tableau de bord\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"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\",\"87pUEW\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs.\"],\"8F1i42\":\"Page introuvable\",\"8G8M0u\":\"Chargement des données...\",\"8Iu1QS\":\"Retiré\",\"8JL93T\":\"Toutes les propositions\",\"8Q51DU\":\"Ajouter au portefeuille\",\"8X/oyn\":\"Montant invalide à frapper\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Déconnecter le portefeuille\",\"8Zz7s5\":\"actifs\",\"8aLW8H\":\"Solde à révoquer\",\"8bOT3H\":\"Taux d'utilisation\",\"8sLe4/\":\"Voir le contrat\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Montrer\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Vous entrez en mode Isolation\",\"9CDK3/\":[\"L'emprunt n'est actuellement pas disponible pour \",[\"0\"],\".\"],\"9GIj3z\":\"Taille de réserve\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Solde de mise en jeu\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votes actuels\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Cet actif a presque atteint son plafond d'emprunt. Il n'y a que \",[\"messageValue\"],\" disponible pour être emprunté sur ce marché.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour être fourni à partir de ce marché.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Jeton sous-jacent\",\"9xSooW\":\"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\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choisissez l’un des services de rampe d’accès\",\"A6dCI6\":[\"Le montant maximal disponible pour emprunter est de <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Vos emprunts\",\"AV7cGz\":\"Examiner les détails de la taxe d'approbation\",\"AZOjB8\":\"Récupération de données...\",\"Ai0jas\":\"Rejoignez la discussion de la communauté\",\"Ajl2rq\":\"Le pouvoir d'emprunt et les actifs sont limités en raison du mode d'isolement.\",\"AqgYNC\":\"Plafond d’emprunt du protocole à 100% pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"Les stETH fournis en garantie continueront d’accumuler des récompenses de staking fournies par les rebasages quotidiens.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"L'utilisation de la garantie est limitée en raison du mode d'isolement. <0>En savoir plus\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Catégorie d'actifs\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Cet actif est gelé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Fiche technique\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Grec\",\"CkTRmy\":[\"Revendication \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Veuillez connecter votre portefeuille pour voir l’outil de migration.\",\"CtGlFb\":[[\"networkName\"],\" Robinet\"],\"CuAHqa\":\"Protocol Incentives\",\"Cxt2YY\":\"Watch wallet\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"La garantie est (principalement) la même devise que celle qui est empruntée\",\"DCnFg0\":[\"Adresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"Je comprends parfaitement les risques liés à la migration.\",\"DONJcV\":\"L'actif sous-jacent ne peut pas être sauvé\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave par mois\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collatéralisation\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Désactivé\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Reprise \",[\"symbol\"]],\"Ebgc76\":[\"Retrait \",[\"symbole\"]],\"EdQY6l\":\"Aucun/Aucune\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Réactiver la période de recharge pour annuler le pieu \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrer vers la v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Pour en savoir plus.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Solde actuel de la v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Puissance d'emprunt utilisée\",\"FPKEug\":\"Opération non prise en charge\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"sur\",\"Fjw9N+\":\"Actifs à déposer\",\"FmN0fk\":\"Remise en jeu\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Changer de mode E\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Actifs\",\"GgEj+0\":\"Mode lecture seule. Connectez-vous à un portefeuille pour effectuer des transactions.\",\"GjkIKV\":\"Prend fin\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Désolé, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Fenêtre d'arrêt de staking\",\"HpK/8d\":\"Recharger\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"La ressource ne peut pas être migrée vers \",[\"marketName\"],\" v3 Marché puisque l’actif collatéral activera le mode d’isolation.\"],\"Hvwnm9\":[\"La quantité maximale disponible pour l’approvisionnement est limitée parce que le plafond d’approvisionnement du protocole est à \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Le montant total de vos actifs libellés en USD qui peut être utilisé comme garantie pour emprunter des actifs.\",\"IAD2SB\":[\"Prétendant \",[\"symbol\"]],\"IG9X9/\":\"L’emprunt de cet actif est limité à un certain montant afin de minimiser l’insolvabilité du pool de liquidités.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"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\",\"IP+I/j\":\"Période de recharge\",\"IaA40H\":\"Liquidation à\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Gérer l’analytique\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Déjalonnement \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Vous ne pouvez pas utiliser cette devise comme garantie\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Pas assez de solde sur votre portefeuille\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Solde du portefeuille\",\"JtwD8u\":\"Emprunter le solde après le remboursement\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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\xA0%, cela signifie que la position sera liquidée lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.\",\"KYAjf3\":\"Isolé\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Changement de mode E\",\"KnN1Tu\":\"Expire\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Mauvais réseau\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Entrez l'adresse ETH\",\"KvG1xW\":\"Réclamer\",\"L+8Lzs\":\"LTV actuelle\",\"L+qiq+\":\"Marché\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Pas de pouvoir de vote\",\"LL0zks\":\"Peut être collatéral\",\"LLdJWu\":\"AAVE Réclamable\",\"LSIpNK\":\"Emprunter et rembourser dans le même bloc n'est pas autorisé\",\"LVt3TI\":[\"<0>Tolérance de glissement <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Astuce : Essayez d’augmenter le glissement ou de réduire la quantité d’entrée\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Adresse du destinataire\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vue de staking\",\"McHlGl\":\"Changement d’APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si le facteur de santé descend en dessous de 1, la liquidation de votre collatéral peut être déclenchée.\",\"Mm/DVQ\":\"Vous avez annulé la transaction.\",\"MnE2QX\":\"Emprunter des informations\",\"MuDFEQ\":\"Valeur de retour invalide de la fonction flashloan executor\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"En attente...\",\"NK9ikO\":\"Solde du portefeuille\",\"NMt2CB\":\"Montant réclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Contrat de collectionneur\",\"NfpPeS\":\"Rien staké\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Le plafond de mintage non soutenu est dépassé\",\"O+tyU+\":[\"Le montant maximal disponible pour emprunter sur cet actif est limité car le plafond de la dette est à \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Aperçu de la proposition\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Réinitialisation\",\"Og2SKn\":\"handicapé\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Site internet\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirer\",\"P1dURE\":\"Révoquer le pouvoir\",\"P2WCD/\":[\"L’actif sous-jacent n’existe pas dans \",[\"marketName\"],\" v3 Market, par conséquent, cette position ne peut pas être migrée.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Mise en jeu ABPT\",\"P72/OW\":\"La moyenne pondérée de l'APY pour tous les actifs empruntés, y compris les incitatifs.\",\"P7e6Ug\":\"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Emprunter apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Seuil de liquidation\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Non atteint\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Désactiver \",[\"symbol\"],\" comme garantie\"],\"RMtxNk\":\"Différentiel\",\"RNK49r\":\"Signature non valide\",\"RS0o7b\":\"État\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Détails de la proposition\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"L'actif n'est pas répertorié\",\"Rj01Fz\":\"Liens\",\"RmWFEe\":\"APR staké\",\"RtBLm7\":\"Le facteur santé est inférieur au seuil de liquidation\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Activé\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fonds dans le Safety Module\",\"SENccp\":\"Si l’erreur persiste,<0/> vous pouvez la signaler à ce\",\"SM58dD\":\"Quantité en temps de recharge\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Seuil de liquidation\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.\",\"SZRUQ4\":\"Glissement maximal\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"Sk2zW9\":\"Désactiver le E-mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Le fournisseur d'adresses de pool n'est pas enregistré\",\"T/AIqG\":\"Limite d’approvisionnement du protocole à 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Emprunter\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Pénalité de liquidation\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"L'actif ne peut être utilisé comme garantie qu'en mode isolé.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"L'utilisateur n'a pas de dette à taux stable impayée sur cette réserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recharger la page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"L’application s’exécute en mode réseau de test. Découvrez comment cela fonctionne dans\",\"U9btTk\":\"L'actif n'est pas empruntable en mode d'isolement\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Détails\",\"UTTKmT\":\"Temps de recharge de la mise activé\",\"UXeR72\":\"Ces fonds ont été empruntés et ne peuvent pas être retirés pour le moment.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Aucune récompense à réclamer\",\"V0f2Xv\":\"Facteur de réserve\",\"V1HK43\":\"Risques liés à la migration\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Dette couverte\",\"VHOVEJ\":\"Connecter le portefeuille\",\"VMfYUK\":\"Sécurité de votre garantie déposée contre les actifs empruntés et sa valeur sous-jacente.\",\"VOAZJh\":\"Total des emprunts\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Examiner les détails de la transaction\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Rien fourni pour le moment\",\"W5kTFy\":\"Vote\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode augmente votre LTV pour une catégorie d'actifs sélectionnée jusqu'à <0/>. <1>En savoir plus\",\"WPWG/y\":\"Statut et configuration de la réserve\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"L'utilisateur ne peut pas retirer plus que le solde disponible\",\"WaZyaV\":\"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Étant donné que cette ressource est suspendue, aucune action ne peut être entreprise jusqu’à nouvel ordre\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Pour emprunter, vous devez fournir tout actif à utiliser comme garantie.\",\"X/ITG9\":\"Copier le texte d'erreur\",\"X3Pp6x\":\"Utilisé comme collatéral\",\"X4Zt7j\":\"L'action ne peut pas être effectuée car la réserve est mise en pause\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Vous quitterez le mode d'isolement et d'autres jetons peuvent désormais être utilisés comme collatéral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTER NON\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Activation du E-Mode\",\"YSodyW\":\"Cette action réduira votre facteur de santé. Veuillez garder à l’esprit le risque accru de liquidation des garanties.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Le mode réseau de test est activé\",\"YrDxdO\":\"Si votre prêt à la valeur dépasse le seuil de liquidation, votre garantie fournie peut être liquidée.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Les conditions de rééquilibrage des taux d'intérêt n'ont pas été remplies\",\"YyydIq\":[\"Ajouter \",[\"0\"],\" à Wallet pour suivre votre solde.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gouvernance Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Mode efficacité (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Désactiver le réseau de test\",\"Zbyywy\":\"Coupure maximale\",\"ZfUGFb\":\"Avant de déposer\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valeur de liquidation\",\"ZrEc8j\":\"Nous n’avons trouvé aucun élément lié à votre recherche. Réessayez avec un autre nom, symbole ou adresse de ressource.\",\"ZsLF7e\":\"Activé\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Temps restant pour dépiquer\",\"a5RYZd\":\"La désactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santé.\",\"a7u1N9\":\"Prix\",\"a9D+6D\":\"Non jalonné\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"aOKIms\":\"Les paramètres de tableau devraient être de même longueur ne sont pas\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Prêt APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Avertissement de période de refroidissement\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Actif\",\"bXQ/Og\":\"Partager sur Twitter\",\"bXr0ee\":\"Les actifs isolés ont un pouvoir d'emprunt limité et les autres actifs ne peuvent pas être utilisés comme garantie.\",\"bYmAV1\":\"Adresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Le montant demandé est supérieur au montant maximum du prêt en mode taux stable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Fournir\",\"bxN6EM\":\"Impossible de désactiver le mode E\",\"c91vuQ\":\"L'adresse n'est pas un contrat\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Vous ne pouvez pas retirer ce montant car cela entraînera un appel de garantie\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Votre pouvoir de vote est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"cLo09S\":\"Détails des risques\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Remboursement \",[\"symbole\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Discussion de forum\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"Vous n'avez pas participé à cette proposition\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gouvernance\",\"dEgA5A\":\"Annuler\",\"dIsyWh\":\"Échec de la validation LTV\",\"dOB5nW\":[\"La quantité maximale disponible pour la fourniture est de <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Actifs à emprunter\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"L’emprunt est désactivé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"djsg0o\":\"Usage de collatéral\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Jeton de dette Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 des adresses\",\"eD8WX/\":\"L'action nécessite une réserve active\",\"eJRJ04\":\"Montant à la mise en jeu\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Récompenses de staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aucune transaction n’a encore été effectuée.\",\"ebLGGN\":\"Total emprunté\",\"ecqEvn\":\"Le solde de la garantie est de 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible sur\",\"enruNF\":\"Commence\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Arrêter de staker maintenant\",\"evw5ha\":\"Valeur nette\",\"ezcU16\":\"Obtenir le jeton ABP\",\"f3W0Ej\":[\"Vous êtes passé au tarif \",[\"0\"]],\"fMJQZK\":\"Emprunté\",\"fZ5Vnu\":\"Reçu\",\"firl9Q\":\"Votre prêt actuel à la valeur en fonction de votre collatéral fournie.\",\"fldjW9\":\"Prévisualiser tx et migrer\",\"fsBGk0\":\"Solde\",\"fu1Dbh\":[\"Retirer \",[\"symbole\"]],\"fwjWSI\":\"Fourni\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Alimenté par\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"Foire aux questions\",\"g9zzqS\":\"A voté NAY\",\"gDd2gk\":\"about SuperFest.\",\"gIMJlW\":\"Mode réseau test\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Cet actif est gelé en raison d’une décision de gouvernance du protocole Aave. <0>Plus d’informations\",\"gTHi2T\":\"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo\",\"gVW59Y\":\"Veuillez connecter votre portefeuille pour obtenir des ressources de réseau de test gratuites.\",\"gcFNxP\":\"Approuver Confirmé\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Adresse zéro non-valide\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Frais de protocole de pont invalide\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\". .CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activer le temps de recharge\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY Net\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Revendiqué\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Montant\",\"hjDCQr\":\"Il y a eu une erreur. Veuillez essayer de modifier les paramètres ou <0><1>copier l'erreur\",\"hom7qf\":\"Réclamer\",\"hpHJ4I\":\"Garantie liquidée\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Emprunter \",[\"symbole\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"À propos de GHO\",\"iChbOF\":\"Paramètres de prêt flash incohérents\",\"iEPVHF\":\"Pas assez de pouvoir de vote pour participer à cette proposition\",\"iEW87X\":\"Délégation de pouvoirs\",\"iEju36\":[\"Vous avez voté \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Sélectionner la tolérance de glissement\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Entrez un montant\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens n'est pas la même chose que de les staker . Si vous souhaitez staker votre\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Utilisez-le pour voter pour ou contre les propositions actives.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Informations sur le collectionneur\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"L'utilisation du collatéral est limitée en raison du mode d'isolation.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Fournir votre\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Désactiver le E-mode\",\"jKYzR1\":\"Activer le E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Temps de recharge restant\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migré\",\"jmXdoY\":\"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accéder à tous les actifs\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Non disponible\",\"k/sb6z\":\"Choisir la langue\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Réclamer \",[\"0\"]],\"kH6wUX\":\"Impact sur les prix\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" Actifs sélectionnés\"],\"kN1Yg5\":\"Pour rembourser au nom d'un utilisateur, un montant explicite à rembourser est nécessaire\",\"kRTD40\":[\"Montant de remboursement à atteindre \",[\"0\"],\"% d’utilisation\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Le plafond d'approvisionnement est dépassé\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\". JSON (en anglais seulement)\",\"ks2LWT\":\"Le plafond de la dette n'est pas nul\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"L’actif ne peut pas être migré en raison d’une liquidité insuffisante ou d’une limitation du plafond d’emprunt \",[\"marketName\"],\" v3 marché.\"],\"lVhKKI\":\"A voté YAE\",\"lWLqxB\":\"Nous n’avons trouvé aucune transaction liée à votre recherche. Réessayez avec un autre nom de ressource ou réinitialisez les filtres.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Anglais\",\"lfEjIE\":\"En savoir plus dans notre <0>guide FAQ\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Émission totale par jour\",\"m7r7Hh\":\"Sélection d’actifs d’emprunt\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs ou utiliser <0>\",[\"0\"],\" pour transférer votre \",[\"network\"],\" actif.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Acheter \",[\"cryptoSymbol\"],\" avec Fiat\"],\"mvCXBY\":\"Mise en jeu AAVE\",\"mwdzil\":\"D'accord, fermer\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"L'actif ne peut pas être utilisé comme collatéral.\",\"n+SX4g\":\"Développeurs\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Fournir apy\",\"nJgsQu\":\"Avec un pouvoir de vote de <0/>\",\"nLC6tu\":\"Français\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Peut être exécuté\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Les deux\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Quelque chose s’est mal passé\",\"nxyWvj\":\"Le retrait de ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"L'approvisionnement en aTokens n'est pas nul\",\"o5ooMr\":\"Dette\",\"o7J4JM\":\"Filtrer\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Temps de recharge pour déstaker\",\"oJ5ZiG\":\"L'utilisateur n'a pas de dette à taux variable impayée sur cette réserve\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Ressources de test\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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é.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible au dépôt\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Rien n’a été trouvé\",\"owSsI3\":\"Signatures prêtes\",\"p+R52m\":\"Accéder à Balancer Pool\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour être emprunté à ce marché.\",\"p45alK\":\"Configurer la délégation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Le solde sous-jacent doit être supérieur à 0\",\"pgWG9H\":\"Pas assez de solde staké\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Je comprends comment fonctionnent le temps de recharge (\",[\"0\"],\") et le retrait (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"L'appelant de cette fonction doit être un pool\",\"q/51mF\":\"Migrer vers la V3\",\"q3df11\":\"Stratégie de taux d’intérêt\",\"q6lAbz\":\"Staké\",\"qB4kPi\":\"Fournir APY\",\"qENI8q\":\"Paramètres globaux\",\"qGz5zl\":\"Solde de garantie après remboursement\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copier l'erreur\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.\",\"qY2jnw\":\"Expiration invalide\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Montant non valide à brûler\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Le montant doit être supérieur à 0\",\"rQ+R+0\":\"Sélection d’actifs d’approvisionnement\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Afficher les actifs avec 0 solde\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Vie privée\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Réclamez toutes les récompenses\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Votre pouvoir de proposition est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Réviser tx\",\"sP2+gB\":\"NON\",\"sQv06Y\":\"pour\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Vous unstaké ici\",\"smJNwH\":\"Disponible à emprunter\",\"solypO\":\"Le facteur de santé n'est pas inférieur au seuil\",\"sr0UJD\":\"Retourner\",\"ss5GCK\":\"L'adresse du fournisseur d'adresses du pool n'est pas valide\",\"swEgK4\":\"Vos informations de vote\",\"t+wtgf\":\"Aucun emprunt pour l'instant\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Prix Oracle\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Accéder au tableau de bord V3\",\"tOcg3N\":\"Étant donné que cet actif est gelé, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord\",\"tOuXfv\":[\"Emprunter le montant à atteindre \",[\"0\"],\"% d’utilisation\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"S'il vous plaît, connectez votre portefeuille\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Vos ressources\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"La transaction a échoué\",\"u706uF\":\"Prime flash non valide\",\"u8Gfu7\":[\"Aucun résultat de recherche\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"Aucune ressource n’a été sélectionnée pour la migration.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migration\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Exporter des données vers\",\"ulup2p\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"usB84Z\":\"Le montant maximum disponible pour emprunter est limité car le plafond d’emprunt du protocole est presque atteint.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacité d’emprunt restante pour effectuer le transfert de dette.\",\"vEqxH9\":\"Restauré\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Cacher\",\"vMba49\":\"L'emprunt n'est pas activé\",\"vMpNwt\":\"Approuvez avec\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"L'offre de dette stable n'est pas nulle\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Récompenses APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Vous \",[\"action\"],\" <0/> \",[\"symbole\"]],\"wBIsjb\":\"Canal Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"L'appelant de la fonction n'est pas un AToken\",\"wRRqvW\":\"Vous n'avez pas de fournitures dans cette devise\",\"wZFvVU\":\"VOTER OUI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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 «\xA0Faucet\xA0» 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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Les ressources sélectionnées ont été migrées avec succès. Rendez-vous sur le tableau de bord du marché pour les voir.\",\"x7F2p6\":\"Différentiel de courant\",\"x7K5ib\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenir un test gratuit \",[\"0\"],\" à\"],\"x9iLRD\":\"tokens, veuillez vous rendre sur\",\"xNy/UG\":\"Rembourser avec\",\"xPm8wv\":\"En savoir plus sur les risques encourus\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Vos informations\",\"xaWZ6f\":\"Changement de type APY\",\"xh6k71\":\"L’utilisation des garanties est limitée en raison du mode d’isolation.\",\"xvIklc\":\"Flashloan est désactivé pour cet actif, cette position ne peut donc pas être migrée.\",\"y5rS9U\":\"Émigrer\",\"y66tBm\":[\"Activer \",[\"symbol\"],\" comme collatéral\"],\"yB1YpA\":\"Mode Sombre\",\"yCrG6m\":\"Taille totale du marché\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Aperçu des transactions\",\"yLGmLX\":[\"Remise en jeu \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Pas une adresse valide\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Suivre le portefeuille\",\"yh2sjd\":[\"Impact sur les prix \",[\"0\"],\"%\"],\"yhvj6d\":\"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraînera un appel de garantie\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Il n'y a pas assez de fonds dans la \",[\"0\"],\" réserve pour emprunter\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Fermer\",\"z4uGQg\":\"Le plafond de la dette est dépassé\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantie choisie ne peut être liquidée\",\"z5Y+p6\":[\"Fournir \",[\"symbole\"]],\"zCjNKs\":\"L'action ne peut pas être effectuée car la réserve est gelée\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Plafond de la dette isolée\",\"zTOjMP\":\"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Dette restante\",\"zmTPiV\":\"Bilan d'approvisionnement\",\"zpPbZl\":\"Paramètres du risque de liquidation\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Apprendre encore plus\",\"zy9fXn\":[\"L’actif est gelé \",[\"marketName\"],\" v3, donc cette position ne peut pas être migrée.\"],\"zys+R6\":\"Faites attention à la congestion du réseau et aux prix de l’essence.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"DR+4uL\":\"Bilan de l’alimentation après le changement\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Afficher les ressources gelées ou mises en pause\",\"TszKts\":\"Emprunter le solde après le changement\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"+0xecS\":[\"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.\"],\"+5vxU4\":\"Reward APY at target liquidity\",\"+9RBfc\":\"Thank you for submitting your inquiry!\",\"+KaZP2\":\"Aave Labs does not guarantee the program and accepts no liability.\",\"+Nk14N\":\"Savings GHO token\",\"+VR63W\":[\"Participer à cette réserve \",[\"symbol\"],\" donne des récompenses annualisées.\"],\"+XNrRN\":\"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 restrictions, see the <1>help guide or the <2>Aave V3 Technical Paper.\",\"+bmKdK\":\"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.\",\"+i3Pd2\":\"Limite d'emprunt\",\"+nuEh/\":\"Estimated time\",\"+vhh5+\":\"Test Mode\",\"+xMFF8\":\"Remind me\",\"/+Vmgq\":\"Total amount of underlying assets staked. This number represents the combined sum of your original asset and the corresponding aTokens staked in Umbrella.\",\"/1Qot4\":\"Protocol Rewards\",\"/1xACT\":\"Reward APY adjusts with total staked amount, following a curve that targets optimal staking levels.\",\"/57U31\":\"Amount to migrate\",\"/7ykiW\":\"Emprunter ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"/FwCXs\":[[\"0\"],\" \",[\"symbol\"],\"...\"],\"/LCAwL\":\"In progress\",\"/ZyLeG\":\"Amount available to unstake\",\"/jQctM\":\"To\",\"/lDBHm\":\"FAQ\",\"/yNlZf\":\"L'emprunt stable n'est pas activé\",\"/yQcJM\":\"Valeur totale\",\"00AB2i\":\"L'utilisateur n'a pas emprunté la devise spécifiée\",\"02/4d1\":\"We suggest you go back to the home page.\",\"0AmQcW\":\"Changement de taux\",\"0BF3yK\":\"Désolé, nous n’avons pas trouvé la page que vous cherchiez.\",\"0RrIzN\":\"Select token\",\"0TAbjq\":\"Recent Transactions\",\"0jhlyw\":\"Risque de liquidation\",\"0ojY+Y\":\"Solde actuel v2\",\"0r31vq\":\"Reward Token\",\"0thX3P\":\"Modification des garanties\",\"0wGCWc\":\"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.\",\"11xQTX\":[\"This asset is eligible for \",[\"0\"],\" Ethena Rewards.\"],\"18GnfY\":[\"Repay \",[\"0\"]],\"1AsVfF\":\"À l’heure actuelle, les données sur les prix ne sont pas disponibles pour cette réserve dans le sous-graphe du protocole\",\"1LjK22\":\"Historique des transactions\",\"1PMU2v\":\"Learn more about the risks.\",\"1Ue8sX\":\"Veuillez connecter un portefeuille pour afficher vos informations personnelles ici.\",\"1W8DZp\":\"USDT on Ethereum requires approval reset before a new approval. This will require an additional transaction.\",\"1YH41K\":[\"After the cooldown period ends, you will enter the unstake window of \",[\"0\"],\". You will continue receiving rewards during cooldown and the unstake period.\"],\"1kWUB+\":\"Seuil de liquidation <0/>\",\"1t7rez\":\"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.\",\"2/aIvj\":\"Cancellation submited\",\"2C40JO\":[\"This transaction will switch E-Mode from \",[\"0\"],\" to \",[\"1\"],\". Borrowing will be restricted to assets within the new category.\"],\"2Eoi/a\":\"Voir détails\",\"2FYpfJ\":\"Plus\",\"2O3qp5\":\"Liquidités disponibles\",\"2OIfa1\":\"Please connect your wallet to swap collateral.\",\"2OM8/D\":[\"L’actif ne peut pas être migré en raison d’une restriction de plafond d’approvisionnement dans \",[\"marketName\"],\" v3 marché.\"],\"2RtYM0\":\"Need help? Our support team can assist.\",\"2S7oCr\":[\"This asset is eligible for the Ether.fi Loyalty program with a <0>x\",[\"multiplier\"],\" multiplier.\"],\"2ZGocC\":\"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\",\"2a6G7d\":\"Veuillez saisir une adresse de portefeuille valide.\",\"2eBWE6\":\"Je reconnais les risques encourus.\",\"2r2h/U\":\"Total Deposited\",\"2uJToh\":[[\"0\"],[\"name\"]],\"2x1UO0\":\"Favourited\",\"2x58bP\":\"L'emprunt stable est activé\",\"34Qfwy\":\"Le plafond d'emprunt est dépassé\",\"39eQRj\":[\"Emprunter \",[\"symbole\"]],\"3BL1xB\":\"Total fourni\",\"3K0oMo\":\"Offre restante\",\"3MoZhl\":\"Il n'y a pas assez de collatéral pour couvrir un nouvel emprunt\",\"3NO6VI\":[[\"0\"],\" Balance\",[\"1\"]],\"3Np5O8\":[\"Fournir \",[\"symbole\"]],\"3mXg0z\":\"Max LTV\",\"3q3mFy\":\"Rembourser\",\"3qsjtp\":\"La moyenne pondérée de l'APY pour tous les actifs fournis, y compris les incitations.\",\"3rL+os\":\"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.\",\"41vemL\":\"Watch Wallet\",\"42UgDM\":[\"Migrer vers \",[\"0\"],\" Marché v3\"],\"49UFQA\":\"Résultats du vote\",\"4DMZUI\":\"Afficher les transactions\",\"4HtGBb\":\"MAX\",\"4Y5H+g\":\"Petits caractères\",\"4YYh4d\":\"Maximum available to borrow\",\"4fCwrW\":\"or from the\",\"4lDFps\":\"Signez pour continuer\",\"4p5njr\":\"Total amount staked\",\"4wyw8H\":\"Transactions\",\"5+lhtA\":\"For swapping safety module assets please unstake your position <0>here.\",\"53r7O1\":[\"High price impact (<0>\",[\"0\"],\"%)! This route will return \",[\"1\"],\" due to low liquidity or small order size.\"],\"5CCqcz\":\"Fees help support the user experience and security of the Aave application. <0>Learn more.\",\"5JMEtL\":\"Not enough sGHO balance\",\"5JSSxX\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenez des ressources de test gratuites à l’adresse suivante :\"],\"5K3B36\":\"We couldn't find any assets related to your search. Try again with a different category.\",\"5K7kGO\":\"documentation\",\"5NOSGa\":\"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.\",\"5Ncc6j\":[\"Cet actif a presque atteint son plafond d'offre. Il ne peut y avoir que \",[\"messageValue\"],\" fourni à ce marché.\"],\"5RzvNm\":\"Aave Shield: Transaction blocked\",\"5cZ/KX\":\"L'offre de dette variable n'est pas nulle\",\"5che++\":\"Pour demander l'accès à ce marché autorisé, veuillez consulter\xA0: <0>Nom du fournisseur d'accès\",\"5ctNdV\":[\"Minimum \",[\"0\"],\" reçu\"],\"5hDe9v\":\"Allocation action requise\",\"5rsnKT\":\"Récompenses disponibles\",\"5ty6hB\":\"Claiming individual protocol reward only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"5vxk14\":\"To continue, you need to grant 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\",\"5yC5m5\":\"Voir tous les votes\",\"6+LIcL\":\"Show assets <$100k supply\",\"6/dCYd\":\"Aperçu\",\"60crCe\":\"Toutes les transactions\",\"62Xcjh\":\"Collatérale\",\"65A04M\":\"Espagnol\",\"68ANm7\":\"Withdrawing GHO\",\"6FCKXl\":\"Start Earning\",\"6G8s+q\":\"Signature\",\"6Jrv+z\":[\"Rembourser \",[\"symbole\"]],\"6SC+v0\":[\"Disable \",[\"0\"],\" as collateral to use this category. These assets would have 0% LTV.\"],\"6Xr0UU\":\"Refroidissement...\",\"6bxci/\":\"Pouvoir de vote\",\"6f8S68\":\"Marchés\",\"6g1gi0\":\"Les propositions\",\"6gvoHP\":\"Copier le message d’erreur\",\"6h3Q5G\":\"Remboursé\",\"6lFSyT\":\"Available to Stake\",\"6lGV3K\":\"Show less\",\"6s8L6f\":\"Changer de réseau\",\"70wH1Q\":\"APR\",\"72c5Qo\":\"Total\",\"75qcAQ\":[[\"stepName\"]],\"7ITr5L\":\"Facteur de santé\",\"7R/kqr\":\"The cooldown period is the time required prior to unstaking your tokens (<0/>). You can only withdraw your assets from the Security Module after the cooldown period and within the unstake window. <1>Learn more\",\"7T/o5R\":\"Atteint\",\"7YlcXu\":\"Fork mode is ON\",\"7Z76Iw\":\"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.\",\"7aKlMS\":\"Partager sur Lens\",\"7bdUsR\":\"Redeem as aToken\",\"7c6Gy8\":\"Learn more about Sonic Rewards program\",\"7er5fP\":\"Réclamer tout\",\"7hb2+s\":\"Time remaining until the withdraw period ends.\",\"7i1oxe\":\"Withdrawing and Swapping\",\"7l6/bW\":\"Aave Pro\",\"7l88b8\":\"Les données n’ont pas pu être récupérées, veuillez recharger le graphique.\",\"7p5kLi\":\"Tableau de bord\",\"7scu8g\":\"Rewards for legacy Savings GHO have ended. Migrate to continue earning.\",\"8+6BI0\":\"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\",\"87pUEW\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs.\"],\"8F1i42\":\"Page introuvable\",\"8G8M0u\":\"Chargement des données...\",\"8Iu1QS\":\"Retiré\",\"8JL93T\":\"Toutes les propositions\",\"8Q51DU\":\"Ajouter au portefeuille\",\"8X/oyn\":\"Montant invalide à frapper\",\"8Xaoyr\":\"View on CCIP Explorer\",\"8Z5FPv\":\"Déconnecter le portefeuille\",\"8Zz7s5\":\"actifs\",\"8aLW8H\":\"Solde à révoquer\",\"8bOT3H\":\"Taux d'utilisation\",\"8sLe4/\":\"Voir le contrat\",\"8ss7VF\":\"Transaction cancelled\",\"8t/M0y\":\"Please connect your wallet to be able to bridge your tokens.\",\"8u3DDw\":[\"Swap \",[\"0\"],\" collateral\"],\"8vETh9\":\"Montrer\",\"93T2Os\":\"Total deposited\",\"94OHPx\":\"Vous entrez en mode Isolation\",\"9CDK3/\":[\"L'emprunt n'est actuellement pas disponible pour \",[\"0\"],\".\"],\"9GIj3z\":\"Taille de réserve\",\"9ITYjl\":\"%\",\"9Knqb4\":\"Solde de mise en jeu\",\"9OBKm7\":\"Quorum\",\"9QHoGr\":\"Votes actuels\",\"9QUXEt\":\"V2 Markets\",\"9Rw96f\":[\"Cet actif a presque atteint son plafond d'emprunt. Il n'y a que \",[\"messageValue\"],\" disponible pour être emprunté sur ce marché.\"],\"9Xj/qR\":[\"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.\"],\"9YcC7V\":\"Select Categories\",\"9c6vDV\":\"Cet actif a atteint son plafond d'offre. Rien n'est disponible pour être fourni à partir de ce marché.\",\"9iDHmv\":\"Collateral Swap\",\"9kTWHA\":\"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\",\"9lXchd\":\"Jeton sous-jacent\",\"9xSooW\":\"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\",\"9y0Q0y\":[\"There is not enough liquidity in \",[\"symbol\"],\" to complete this swap. Try lowering the amount.\"],\"9zzsBx\":\"This is a program initiated by the Aave DAO and implemented by Merkl. Aave Labs does not guarantee the program and accepts no liability.\",\"A/lwoe\":\"Choisissez l’un des services de rampe d’accès\",\"A6dCI6\":[\"Le montant maximal disponible pour emprunter est de <0/> \",[\"0\"],\" (<1/>).\"],\"ACUEES\":\"Check errors\",\"AReoaV\":\"Vos emprunts\",\"AV7cGz\":\"Examiner les détails de la taxe d'approbation\",\"AZOjB8\":\"Récupération de données...\",\"Ai0jas\":\"Rejoignez la discussion de la communauté\",\"Ajl2rq\":\"Le pouvoir d'emprunt et les actifs sont limités en raison du mode d'isolement.\",\"AqgYNC\":\"Plafond d’emprunt du protocole à 100% pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"B6zvhF\":\"Shares\",\"BDFEd+\":\"Les stETH fournis en garantie continueront d’accumuler des récompenses de staking fournies par les rebasages quotidiens.\",\"BE2mP0\":\"Borrowed assets\",\"BNL4Ep\":\"L'utilisation de la garantie est limitée en raison du mode d'isolement. <0>En savoir plus\",\"BQ+4lu\":\"Swap saved in your <0>history section.\",\"BQ/wCO\":\"Migrate your assets\",\"BaCmXf\":\"AAVE 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.\",\"Baj2MJ\":\"Savings\",\"BnhYo8\":\"Catégorie d'actifs\",\"Bo6b9i\":\"Withdraw GHO\",\"Bq9Y7e\":\"Cet actif est gelé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"BqWMDJ\":\"Faucet\",\"BqynZO\":\"Optimized for efficiency and risk by supporting blue-chip collateral assets\",\"Bsu7zX\":\"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\",\"BwJKBw\":\"de\",\"C4/GSi\":\"Your balance of assets that are available to stake\",\"C4qYyX\":[\"Repay \",[\"0\"],\" with \",[\"1\"]],\"C7hM0q\":\"Country (optional)\",\"CDrsH+\":\"Fiche technique\",\"CGiscJ\":\"You've successfully submitted an order.\",\"CK1KXz\":\"Max\",\"COUcFd\":\"Points\",\"CZXzs4\":\"Grec\",\"CkTRmy\":[\"Revendication \",[\"symbol\"]],\"CrrC++\":\"Position swaps are disabled for this asset due to security reasons.\",\"CsqtLm\":\"Veuillez connecter votre portefeuille pour voir l’outil de migration.\",\"CtGlFb\":[[\"networkName\"],\" Robinet\"],\"CuAHqa\":\"Protocol Incentives\",\"D33VQU\":\"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.\",\"D4Q4h/\":\"Gas estimation error\",\"D79cZK\":\"Instant\",\"D8sc3k\":\"Stake balance\",\"D9BLRG\":\"This asset has been paused due to a community decision. Supply, withdraw, borrows and repays are impacted.\",\"DAma/S\":\"La garantie est (principalement) la même devise que celle qui est empruntée\",\"DCnFg0\":[\"Adresses (\",[\"0\"],\")\"],\"DG3Lv1\":\"Je comprends parfaitement les risques liés à la migration.\",\"DONJcV\":\"L'actif sous-jacent ne peut pas être sauvé\",\"DWjrck\":[\"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\"],\"DhaOWH\":\"Stake your Aave aTokens or underlying assets to earn rewards. In case of a shortfall event, your stake may be slashed to cover the deficit.\",\"Dj+3wB\":\"Aave par mois\",\"DlRHbH\":\"Claiming all protocol rewards only. Merit rewards excluded - select \\\"claim all\\\" to include merit rewards.\",\"DuEq2K\":\"Collatéralisation\",\"Dzma+E\":\"Main Ethereum market with the largest selection of assets and yield options\",\"E/QGRL\":\"Désactivé\",\"E6UoJs\":\"Estimated compounding 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.\",\"ETtXJg\":\"Share my wallet address to help the support team resolve my issue\",\"EZd3Dk\":[\"Reprise \",[\"symbol\"]],\"Ebgc76\":[\"Retrait \",[\"symbole\"]],\"EdQY6l\":\"Aucun/Aucune\",\"Ef7StM\":\"Unknown\",\"Ehzc//\":[\"Swapping \",[\"0\"],\" debt\"],\"Ekea1N\":\"We couldn't detect a wallet. Connect a wallet to stake and view your balance.\",\"Enslfm\":\"Destination\",\"EvE9nO\":[\"Réactiver la période de recharge pour annuler le pieu \",[\"0\"],\" \",[\"stakedToken\"]],\"EvECnL\":\"Migrer vers la v3\",\"EyYG53\":\"Get support\",\"EzMQbh\":\"The source chain time to finality is the main factor that determines the time to destination. <0>Learn more\",\"F40cwT\":\"Legacy Markets\",\"F6TdXL\":\"Pour en savoir plus.\",\"F6pfE9\":\"Active\",\"FHlMf/\":\"Solde actuel de la v2\",\"FHpxjF\":[\"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.\"],\"FOBZa6\":\"Puissance d'emprunt utilisée\",\"FPKEug\":\"Opération non prise en charge\",\"FTRJ1l\":\"L2 Networks\",\"FbmMe7\":\"Linked addresses\",\"Fdp03t\":\"sur\",\"Fjw9N+\":\"Actifs à déposer\",\"FmN0fk\":\"Remise en jeu\",\"G15AUr\":\"Sending cancel...\",\"GDGLIs\":\"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.\",\"GQrBTq\":\"Changer de mode E\",\"GWswcZ\":\"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\",\"GX8GKD\":\"Actifs\",\"GgEj+0\":\"Mode lecture seule. Connectez-vous à un portefeuille pour effectuer des transactions.\",\"GjkIKV\":\"Prend fin\",\"GtP2hp\":[\"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.\"],\"Gz07IS\":\"Your health factor after this swap will be critically low and may result in liquidation. Please choose a different asset or reduce the swap amount to stay safe.\",\"H1oAjw\":[[\"selectedCount\"],\" Categories\"],\"HB/wfS\":[[\"tooltipText\"]],\"HD4KkW\":[\"Swapping \",[\"0\"],\" collateral\"],\"HKDsQN\":\"Rewards can be claimed through\",\"Hi6Ttn\":\"Désolé, une erreur inattendue s’est produite. En attendant, vous pouvez essayer de recharger la page, ou revenir plus tard.\",\"HkEDbS\":[[\"d\"],\"d\"],\"HlWGZc\":[\"Your \",[\"0\"],\" balance is lower than the selected amount.\"],\"HmkYqM\":\"Fenêtre d'arrêt de staking\",\"HpK/8d\":\"Recharger\",\"HtBqo9\":\"sGHO\",\"HtuY7v\":\"Please connect your wallet to swap tokens.\",\"HvJKMU\":[\"La ressource ne peut pas être migrée vers \",[\"marketName\"],\" v3 Marché puisque l’actif collatéral activera le mode d’isolation.\"],\"Hvwnm9\":[\"La quantité maximale disponible pour l’approvisionnement est limitée parce que le plafond d’approvisionnement du protocole est à \",[\"0\"],\"%.\"],\"I+qb3P\":\"Available to deposit:\",\"I4Cxlm\":\"E-Mode required\",\"I8CX2c\":\"Le montant total de vos actifs libellés en USD qui peut être utilisé comme garantie pour emprunter des actifs.\",\"IAD2SB\":[\"Prétendant \",[\"symbol\"]],\"IG9X9/\":\"L’emprunt de cet actif est limité à un certain montant afin de minimiser l’insolvabilité du pool de liquidités.\",\"ILXMQA\":\"The Safety Module has been upgraded to <0>Umbrella, a new system that introduces automated slashing, aToken staking, and improved incentives design.\",\"IN8luu\":\"All done\",\"IOIx8L\":\"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\",\"IP+I/j\":\"Période de recharge\",\"IaA40H\":\"Liquidation à\",\"IfrAh0\":\"Migrate your sGHO position\",\"IhAc6F\":\"Costs & Fees\",\"ImxB3A\":\"deposited\",\"IrtO2E\":\"You have assets with zero LTV that are blocking this operation. Please withdraw them or disable them as collateral first.\",\"J/hVSQ\":[[\"0\"]],\"JAxZAp\":[[\"0\"],\" has a Loan-to-Value of 0, so it will not be enabled as collateral automatically after the swap.\"],\"JCoxL6\":\"Gérer l’analytique\",\"JEdlTC\":\"Stablecoins\",\"JOqFba\":[\"Déjalonnement \",[\"symbol\"]],\"JPHuMW\":\"Swapping\",\"JPhc4G\":\"ETH Correlated\",\"JPrLjO\":\"Vous ne pouvez pas utiliser cette devise comme garantie\",\"JYKRJS\":\"Stake\",\"JZMxX0\":\"Pas assez de solde sur votre portefeuille\",\"Jgflkm\":\"Get GHO\",\"JoMQnI\":\"Solde du portefeuille\",\"JtwD8u\":\"Emprunter le solde après le remboursement\",\"JumYTK\":\"Supplied assets\",\"KAz/NV\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter davantage sur cet actif.\",\"KLXVqE\":[\"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\"]],\"KLd6ky\":\"Use connected account\",\"KSlpka\":\"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\xA0%, cela signifie que la position sera liquidée lorsque la valeur de la dette vaut 80 % de la valeur de la garantie.\",\"KYAjf3\":\"Isolé\",\"KkJaLD\":\"Borrow:\",\"KkPgim\":\"Changement de mode E\",\"KnN1Tu\":\"Expire\",\"KoOBI2\":\"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.\",\"KojyJ4\":\"Mauvais réseau\",\"KqoLVC\":\"Merkl rewards are claimed through the\",\"KsqhWn\":\"Staking\",\"KuBTQq\":\"Entrez l'adresse ETH\",\"KvG1xW\":\"Réclamer\",\"L+8Lzs\":\"LTV actuelle\",\"L+qiq+\":\"Marché\",\"L2tU22\":\"Learn more about Ethena Rewards program\",\"L3ZyJR\":[[\"popularSectionTitle\"]],\"LEdkyb\":\"Rewards to claim\",\"LIrMcF\":\"Pas de pouvoir de vote\",\"LL0zks\":\"Peut être collatéral\",\"LLdJWu\":\"AAVE Réclamable\",\"LSIpNK\":\"Emprunter et rembourser dans le même bloc n'est pas autorisé\",\"LVt3TI\":[\"<0>Tolérance de glissement <1>\",[\"selectedSlippage\"],\"% <2>\",[\"0\"],\"\"],\"Lhf8zD\":\"Waiting for actions...\",\"Lp2cTp\":\"Eligible for incentives through Merkl.\",\"LvVpD/\":\"Emode\",\"Ly2enB\":\"This will cancel the order via an on-chain transaction. Note that the order will not be marked as cancelled in the CoW Protocol system, but will remain open and expire naturally. Keep in mind that a solver may already have filled your order.\",\"M1RnFv\":\"Expired\",\"M2sknc\":\"Astuce : Essayez d’augmenter le glissement ou de réduire la quantité d’entrée\",\"MKiONF\":\"Activating Cooldown\",\"MOvzXm\":\"Comparing best rates...\",\"MRwaR4\":\"This will require two separate transactions: one to change E-Mode and one to supply.\",\"MZ/nQf\":\"Adresse du destinataire\",\"MZbQHL\":\"No results found.\",\"Ma/MtY\":\"vue de staking\",\"McHlGl\":\"Changement d’APY\",\"MeCCA+\":\"APY, variable\",\"MghdTe\":\"Si le facteur de santé descend en dessous de 1, la liquidation de votre collatéral peut être déclenchée.\",\"Mm/DVQ\":\"Vous avez annulé la transaction.\",\"MnE2QX\":\"Emprunter des informations\",\"MuDFEQ\":\"Valeur de retour invalide de la fonction flashloan executor\",\"My0ZGV\":\"Learn more about the Kernel points distribution\",\"N+3mX2\":\"Please connect your wallet to swap debt.\",\"N39Ax4\":\"Ethereum\",\"N40H+G\":\"All\",\"N5kUMV\":\"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.\",\"N6Pxr9\":\"View all\",\"ND1ISA\":\"Weekly Rewards\",\"NF0e1Q\":\"En attente...\",\"NK9ikO\":\"Solde du portefeuille\",\"NMt2CB\":\"Montant réclamable\",\"Na7NlU\":[[\"remainingCustomMessage\"]],\"NcFGxG\":\"Contrat de collectionneur\",\"NfpPeS\":\"Rien staké\",\"Nh9DAo\":[[\"m\"],\"m\"],\"Npz7kI\":\"Inquiry\",\"O+sCUU\":\"Le plafond de mintage non soutenu est dépassé\",\"O+tyU+\":[\"Le montant maximal disponible pour emprunter sur cet actif est limité car le plafond de la dette est à \",[\"0\"],\"%.\"],\"O3oNi5\":\"Email\",\"OC4Tzv\":\"here\",\"OFjZGo\":\"Unstake\",\"OR8cYX\":\"Aperçu de la proposition\",\"OVf9Is\":\"stkGHO\",\"OYuJ9K\":\"Le plafond d’endettement du protocole est de 100% pour cet actif. Il n’est pas possible d’emprunter sur cet actif.\",\"OclOBa\":\"Favourites\",\"OfhWJH\":\"Réinitialisation\",\"Og2SKn\":\"handicapé\",\"OiykRd\":\"Deposit GHO\",\"On0aF2\":\"Site internet\",\"Oos+kl\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while it's active.\",\"OqAwLU\":\"Protocol APY\",\"OsyKSt\":\"Retirer\",\"P1dURE\":\"Révoquer le pouvoir\",\"P2WCD/\":[\"L’actif sous-jacent n’existe pas dans \",[\"marketName\"],\" v3 Market, par conséquent, cette position ne peut pas être migrée.\"],\"P2sL6B\":\"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.\",\"P6sRoL\":\"Mise en jeu ABPT\",\"P72/OW\":\"La moyenne pondérée de l'APY pour tous les actifs empruntés, y compris les incitatifs.\",\"P7e6Ug\":\"Veuillez connecter votre portefeuille pour consulter l’historique des transactions.\",\"PByO0X\":\"Votes\",\"PDRp+7\":\"stkGHO Savings Rate\",\"PI+kVe\":\"Disable fork\",\"PJK9u/\":\"Emprunter apy\",\"PLUB/s\":\"Fee\",\"PP5ZA8\":[\"Participating in staking \",[\"symbol\"],\" gives annualized rewards. Your wallet balance is the sum of your aTokens and underlying assets. The breakdown to stake is below\"],\"PcBUgb\":\"Seuil de liquidation\",\"PctCOf\":\"A temporary contract will be used to execute the trade. Your wallet may show a warning for approving a new or empty address.\",\"PjU6bu\":\"This asset is eligible for SPK incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"PpqD5g\":\"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.\",\"PsOFSf\":\"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.\",\"Pu4bI/\":[[\"currentMethod\"]],\"Q0LzKi\":\"View TX\",\"Q4eNqa\":\"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.\",\"QONKTE\":\"Merit Rewards\",\"QQYsQ7\":\"Withdrawing\",\"QZEgwS\":\"Execution fee\",\"R+30X3\":\"Non atteint\",\"R9Khdg\":\"Auto\",\"RCU5PY\":\"Age\",\"RIfckG\":[\"Désactiver \",[\"symbol\"],\" comme garantie\"],\"RMtxNk\":\"Différentiel\",\"RNK49r\":\"Signature non valide\",\"RS0o7b\":\"État\",\"RTG4/6\":\"There are no stake assets configured for this market\",\"RU+LqV\":\"Détails de la proposition\",\"RWLLXE\":\"Legacy Savings GHO (stkGHO)\",\"RYfdBk\":\"Visit <0><1>https://aave.self.xyz/ to get started with Self’s ZK-powered proof-of-humanity authentication.\",\"RZbjLY\":[\"See \",[\"0\"],\" more\"],\"Rg4K+m\":\"Cannot switch to this category\",\"RiSYV4\":\"L'actif n'est pas répertorié\",\"Rj01Fz\":\"Liens\",\"RmWFEe\":\"APR staké\",\"RtBLm7\":\"Le facteur santé est inférieur au seuil de liquidation\",\"RvF1Ts\":\"stkGHO is now Savings GHO\",\"RxzN1M\":\"Activé\",\"S37FFT\":\"sGHO balance\",\"SBv4zo\":[[\"0\"],\" collateral would have 0% LTV in this category. Disable \",[\"1\"],\" as collateral to use this option.\"],\"SDav7h\":\"Fonds dans le Safety Module\",\"SENccp\":\"Si l’erreur persiste,<0/> vous pouvez la signaler à ce\",\"SM58dD\":\"Quantité en temps de recharge\",\"SNmu1z\":\"Shares are Umbrella Stake Tokens you receive when staking. They represent your ownership in the pool, and the amount of underlying you can redeem depends on the current exchange rate between shares and the underlying.\",\"SSQVIz\":\"Seuil de liquidation\",\"SUb8x0\":\"Total disponible\",\"SWIgh4\":\"Fees exceed wallet balance\",\"SY9hVo\":\"Le mode lecture seule permet de voir les positions d’adresses dans Aave, mais vous ne pourrez pas effectuer de transactions.\",\"SZRUQ4\":\"Glissement maximal\",\"SZkDmY\":\"The swap could not be completed. Try increasing slippage or changing the amount.\",\"Sa1UE/\":\"Le plafond d’emprunt du protocole est de 100 % pour cet actif. Il n’est pas possible d’emprunter davantage.\",\"Sk2zW9\":\"Désactiver le E-mode\",\"Sn1jT8\":\"Legacy\",\"St4jqF\":\"This list may not include all your swaps.\",\"SxaD0o\":\"Le fournisseur d'adresses de pool n'est pas enregistré\",\"T/AIqG\":\"Limite d’approvisionnement du protocole à 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"T0xCO9\":\"Can't validate the wallet address. Try again.\",\"T4OhVl\":\"GHO balance\",\"T51Qav\":\"received\",\"T6uYU2\":\"Emprunter\",\"T7IVn4\":\"Principal Tokens\",\"TFxQlw\":\"Pénalité de liquidation\",\"THmCgW\":\"Select market\",\"TLJkuL\":\"Category assets\",\"TQ7WsV\":\"Available to stake\",\"TUI7iB\":\"L'actif ne peut être utilisé comme garantie qu'en mode isolé.\",\"TbjyhA\":\"Docs\",\"TduuS0\":\"L'utilisateur n'a pas de dette à taux stable impayée sur cette réserve\",\"Tg1JyO\":\"Bridge history\",\"TryXDg\":\"Double your yield by <0><1>verifying your humanity through Self.\",\"Tw07Vv\":\"Show assets with small balance\",\"TwJI9F\":\"Asset has been successfully sent to CCIP contract. You can check the status of the transactions below\",\"U/eBjN\":\"Recharger la page\",\"U2r8nY\":\"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.\",\"U8IubP\":\"L’application s’exécute en mode réseau de test. Découvrez comment cela fonctionne dans\",\"U9btTk\":\"L'actif n'est pas empruntable en mode d'isolement\",\"UAOZRe\":\"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.\",\"UMgOim\":\"Send cancel\",\"URmyfc\":\"Détails\",\"UTTKmT\":\"Temps de recharge de la mise activé\",\"UXeR72\":\"Ces fonds ont été empruntés et ne peuvent pas être retirés pour le moment.\",\"UYb8CM\":\"Learn more about the SPK rewards\",\"UbRrG0\":\"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.\",\"UiO4Hu\":[\"You'll need to wait \",[\"0\"],\" before you can unstake your tokens. This cooldown starts when you request to unstake. Once it ends, you can withdraw during the unstake window.\"],\"UpndFj\":\"Aucune récompense à réclamer\",\"V0f2Xv\":\"Facteur de réserve\",\"V1HK43\":\"Risques liés à la migration\",\"V7QGpc\":\"I understand the liquidation risk and want to proceed\",\"V7SFse\":[\"I confirm the swap knowing that I could lose up to <0>\",[\"0\"],\"% on this swap.\"],\"VATFH9\":\"Dette couverte\",\"VHOVEJ\":\"Connecter le portefeuille\",\"VMfYUK\":\"Sécurité de votre garantie déposée contre les actifs empruntés et sa valeur sous-jacente.\",\"VOAZJh\":\"Total des emprunts\",\"VbeIOx\":\"Author\",\"ViKYxK\":\"YAE\",\"VjrLW1\":\"Supply balance after swap\",\"VnQFYr\":\"Claiming all merit rewards only\",\"W1SSoD\":\"Examiner les détails de la transaction\",\"W1fdQa\":\"Deposit GHO into sGHO\",\"W5hVah\":\"Rien fourni pour le moment\",\"W5kTFy\":\"Vote\",\"WHrVwg\":\"Loading quote...\",\"WMJGls\":\"Estimated Costs & Fees\",\"WNGZwH\":\"E-Mode augmente votre LTV pour une catégorie d'actifs sélectionnée jusqu'à <0/>. <1>En savoir plus\",\"WPWG/y\":\"Statut et configuration de la réserve\",\"WS67YQ\":\"Let us know how we can help you. You may also consider joining our community\",\"WT188T\":\"Withdraw & Swap\",\"WZLQSU\":\"L'utilisateur ne peut pas retirer plus que le solde disponible\",\"WaZyaV\":\"<0>Ampleforth est un actif de rebasage. Consultez la <1>documentation pour en savoir plus.\",\"WbTDwg\":\"In Progress\",\"WfU+XN\":\"Étant donné que cette ressource est suspendue, aucune action ne peut être entreprise jusqu’à nouvel ordre\",\"Wjmqs2\":\"No results found. You can import a custom token with a contract address\",\"WkZ6C6\":\"Pour emprunter, vous devez fournir tout actif à utiliser comme garantie.\",\"X/ITG9\":\"Copier le texte d'erreur\",\"X3Pp6x\":\"Utilisé comme collatéral\",\"X4Zt7j\":\"L'action ne peut pas être effectuée car la réserve est mise en pause\",\"X4tRM3\":[[\"0\"],\" \",[\"symbol\"],\" to continue\"],\"XBdKOj\":\"Representative smart contract wallet (ie. Safe) addresses on other chains.\",\"XPN5UR\":\"User denied the operation.\",\"XYLcNv\":\"Support\",\"XZzneG\":\"Vous quitterez le mode d'isolement et d'autres jetons peuvent désormais être utilisés comme collatéral\",\"Xe5bTg\":\"Deposit APR\",\"Xg5y9S\":\"Amount to Bridge\",\"Xn4hUi\":\"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.\",\"XwKkg/\":\"Staked Underlying\",\"Xy+o6U\":\"For security reasons, limit orders are not supported for Native tokens. To place a limit order, use the wrapped version.\",\"Xy71ST\":\"Umbrella\",\"Y+hUcK\":\"Merit Program and Self rewards can be claimed\",\"Y46iXX\":\"The order could't be filled.\",\"Y5Orec\":\"Collateral options\",\"Y5kGkc\":\"VOTER NON\",\"YD+nXc\":\"Aave Shield\",\"YDIOks\":\"Activation du E-Mode\",\"YSodyW\":\"Cette action réduira votre facteur de santé. Veuillez garder à l’esprit le risque accru de liquidation des garanties.\",\"YXOWXM\":\"The total amount bridged minus CCIP fees. Paying in network token does not impact gho amount.\",\"Ya/che\":\"Stake token shares\",\"Ykj2Om\":\"Default slippage\",\"YogbCJ\":\"Le mode réseau de test est activé\",\"YrDxdO\":\"Si votre prêt à la valeur dépasse le seuil de liquidation, votre garantie fournie peut être liquidée.\",\"YrcHPy\":\"VIEW\",\"Yub0+r\":\"You'll receive\",\"YyIM65\":\"Les conditions de rééquilibrage des taux d'intérêt n'ont pas été remplies\",\"YyydIq\":[\"Ajouter \",[\"0\"],\" à Wallet pour suivre votre solde.\"],\"Z3FXyt\":\"Loading...\",\"Z756WI\":[\"Deposit GHO and earn up to \",[\"0\"],\"% APR\"],\"Z99M+T\":\"This is an off-chain operation. Keep in mind that a solver may already have filled your order.\",\"ZBvhI+\":\"Gouvernance Aave\",\"ZIIRAd\":\"Raw-Ipfs\",\"ZQCloy\":\"Search markets\",\"ZRq4tX\":\"Mode efficacité (E-Mode)\",\"ZRuM45\":\"These are the estimated costs associated with your limit swap, including costs and fees. Consider these costs when setting your order amounts to help optimize execution and maximize your chances of filling the order.\",\"ZSqEW+\":\"Manage E-Mode\",\"ZUFYFE\":\"Désactiver le réseau de test\",\"Zbyywy\":\"Coupure maximale\",\"ZfUGFb\":\"Avant de déposer\",\"ZiXN+B\":\"Assets to stake\",\"ZlsSDH\":\"Valeur de liquidation\",\"ZrEc8j\":\"Nous n’avons trouvé aucun élément lié à votre recherche. Réessayez avec un autre nom, symbole ou adresse de ressource.\",\"ZsLF7e\":\"Activé\",\"a0YQoQ\":\"Enter a valid address\",\"a2fBZn\":\"Temps restant pour dépiquer\",\"a5RYZd\":\"La désactivation de cet actif en tant que garantie affecte votre pouvoir d'emprunt et votre facteur de santé.\",\"a7u1N9\":\"Prix\",\"a9D+6D\":\"Non jalonné\",\"aCgA+I\":\"E-Mode change\",\"aEtiwq\":\"Vote NAY\",\"aMmFE1\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"aOKIms\":\"Les paramètres de tableau devraient être de même longueur ne sont pas\",\"aQYztl\":[\"Repaying \",[\"0\"]],\"aXgo8+\":\"from the\",\"adUsDd\":\"An error has occurred fetching the proposal.\",\"afk1Wt\":[\"This asset can only be used as collateral in E-Mode: \",[\"0\"]],\"aoXTT7\":\"Prêt APY, variable\",\"aqX1Yp\":\"This asset is eligible for rewards through SuperFest. Aave Labs does not guarantee the program and accepts no liability.\",\"b4NS3e\":\"Avertissement de période de refroidissement\",\"bBHmeP\":\"Available to withdraw\",\"bNEQeI\":\"Cooldown\",\"bT59Nw\":\"Withdraw sGHO\",\"bUUVED\":\"Actif\",\"bXQ/Og\":\"Partager sur Twitter\",\"bXr0ee\":\"Les actifs isolés ont un pouvoir d'emprunt limité et les autres actifs ne peuvent pas être utilisés comme garantie.\",\"bYmAV1\":\"Adresses\",\"bYtb3C\":\"Network costs\",\"bguKoJ\":\"Le montant demandé est supérieur au montant maximum du prêt en mode taux stable\",\"bm/mjh\":\"This is a program initiated and implemented by the Aave Chan Initiative (ACI). Aave Labs does not guarantee the program and accepts no liability.\",\"bq0uL+\":\"supply\",\"bwSQI0\":\"Fournir\",\"bxN6EM\":\"Impossible de désactiver le mode E\",\"c91vuQ\":\"L'adresse n'est pas un contrat\",\"c97os2\":\"Aave aToken\",\"c9b44w\":\"Vous ne pouvez pas retirer ce montant car cela entraînera un appel de garantie\",\"cBc+4A\":\"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.\",\"cIl5kp\":\"Votre pouvoir de vote est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"cLo09S\":\"Détails des risques\",\"cNT+ij\":\"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.\",\"cZOeBk\":\"Something went wrong fetching bridge message, please try again later.\",\"cc6gEH\":\"Incentives APR\",\"ceix5S\":\"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.\",\"ciSsYT\":\"Staking APY\",\"ciybUa\":\"Vote YAE\",\"ckf7gX\":[\"Remboursement \",[\"symbole\"]],\"cp1ZDP\":[\"Bridge \",[\"symbol\"]],\"cqwIvs\":\"Discussion de forum\",\"csDS2L\":\"Disponible\",\"cu7Stb\":\"Vous n'avez pas participé à cette proposition\",\"cuxGZP\":\"Low health factor after swap. Your position will carry a higher risk of liquidation.\",\"dE6BLF\":\"Gouvernance\",\"dEgA5A\":\"Annuler\",\"dIsyWh\":\"Échec de la validation LTV\",\"dOB5nW\":[\"La quantité maximale disponible pour la fourniture est de <0/> \",[\"0\"],\" (<1/>).\"],\"dVfODp\":\"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.\",\"dXUQFX\":\"Actifs à emprunter\",\"dYG3JG\":\"Data couldn't be loaded.\",\"dZQvSq\":\"Please review the swap values before confirming.\",\"dfDzrk\":[\"Supply cap reached for \",[\"symbol\"],\". Reduce the amount or choose a different asset.\"],\"dgFOcr\":\"L1 Networks\",\"dgr1aY\":\"L’emprunt est désactivé en raison d’une décision de la communauté Aave. <0>Plus d’informations\",\"djsg0o\":\"Usage de collatéral\",\"drdV8R\":\"Liquidation\",\"dxW8cS\":\"Jeton de dette Aave\",\"e/ghIe\":[\"This transaction will enable E-Mode (\",[\"0\"],\"). Borrowing will be restricted to assets within this category.\"],\"e4V3oW\":\"Top 10 des adresses\",\"eD8WX/\":\"L'action nécessite une réserve active\",\"eJRJ04\":\"Montant à la mise en jeu\",\"eLh0cL\":\"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.\",\"ePK91l\":\"Edit\",\"eVpCmf\":\"Récompenses de staking\",\"eVqvtf\":\"Bridge GHO\",\"eXs0Bt\":\"Search markets...\",\"eYdurp\":\"Aucune transaction n’a encore été effectuée.\",\"ebLGGN\":\"Total emprunté\",\"ecqEvn\":\"Le solde de la garantie est de 0\",\"edXiYw\":[\"You've successfully swapped \",[\"0\"],\".\"],\"efdrrk\":\"Disponible sur\",\"enruNF\":\"Commence\",\"epxVKI\":\"This Ink instance is operated by Tydro and governed by the Ink Foundation, independent from Aave DAO operated markets.\",\"eqLYiD\":\"Arrêter de staker maintenant\",\"evw5ha\":\"Valeur nette\",\"ezcU16\":\"Obtenir le jeton ABP\",\"f3W0Ej\":[\"Vous êtes passé au tarif \",[\"0\"]],\"fMJQZK\":\"Emprunté\",\"fZ5Vnu\":\"Reçu\",\"firl9Q\":\"Votre prêt actuel à la valeur en fonction de votre collatéral fournie.\",\"fldjW9\":\"Prévisualiser tx et migrer\",\"fsBGk0\":\"Solde\",\"fu1Dbh\":[\"Retirer \",[\"symbole\"]],\"fwjWSI\":\"Fourni\",\"fwyTMb\":\"Migrate to stkABPT v2\",\"g0mals\":\"You can not disable E-Mode because that could cause liquidation. To exit E-Mode supply or repay borrowed positions.\",\"g2UNkE\":\"Alimenté par\",\"g4Ius4\":\"This is the fee for executing position changes, set by governance.\",\"g8KGoA\":\"Foire aux questions\",\"g9zzqS\":\"A voté NAY\",\"gDd2gk\":\"about SuperFest.\",\"gK+IvE\":\"Withdraw and Swap\",\"gOzPxe\":\"Cet actif est gelé en raison d’une décision de gouvernance du protocole Aave. <0>Plus d’informations\",\"gTHi2T\":\"L'utilisateur essaie d'emprunter plusieurs actifs, y compris un en silo\",\"gVW59Y\":\"Veuillez connecter votre portefeuille pour obtenir des ressources de réseau de test gratuites.\",\"gcFNxP\":\"Approuver Confirmé\",\"gjxiVa\":[\"This swap has a price impact of \",[\"0\"],\"%, which exceeds the 25% safety threshold. To proceed, disable Aave Shield in the settings menu.\"],\"gkREDz\":\"Earn into sGHO\",\"goff7V\":\"Adresse zéro non-valide\",\"gvTM4B\":\"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.\",\"gzcch9\":\"Frais de protocole de pont invalide\",\"h33MxW\":\"Representing smart contract wallet (ie. Safe) addresses on other chains.\",\"h3ilK+\":\". .CSV\",\"h5hG6q\":\"This is the cost of settling your order on-chain, including gas and any LP fees.\",\"hB23LY\":\"Activer le temps de recharge\",\"hIJzBh\":\"Available to Claim\",\"hIS4N0\":\"APY Net\",\"hQRttt\":\"Submit\",\"hRWvpI\":\"Revendiqué\",\"hb8ajh\":\"Debt Swap\",\"hdmy/o\":\"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.\",\"hehnjM\":\"Montant\",\"hjDCQr\":\"Il y a eu une erreur. Veuillez essayer de modifier les paramètres ou <0><1>copier l'erreur\",\"hom7qf\":\"Réclamer\",\"hpHJ4I\":\"Garantie liquidée\",\"hrhwub\":\"dashboard\",\"huQ6Tz\":[\"Emprunter \",[\"symbole\"]],\"hxYu+F\":\"Borrow: All eligible assets\",\"i/fZ2Z\":\"Staked Balance\",\"i9qiyR\":\"Expires in\",\"iB5+/J\":\"À propos de GHO\",\"iChbOF\":\"Paramètres de prêt flash incohérents\",\"iEPVHF\":\"Pas assez de pouvoir de vote pour participer à cette proposition\",\"iEW87X\":\"Délégation de pouvoirs\",\"iEju36\":[\"Vous avez voté \",[\"0\"]],\"iFq2YN\":\"Borrowable\",\"iGxyIA\":\"Safety Module\",\"iIuDE1\":\"Estimated weekly rewards based on your current sGHO balance and APR. Actual rewards may vary depending on market conditions.\",\"iKfD53\":\"Transaction history for Plasma not supported yet, coming soon.\",\"iMVZk9\":\"Sélectionner la tolérance de glissement\",\"iNYgey\":\"Get Support\",\"iPMIoT\":\"Entrez un montant\",\"iSLIjg\":\"Connect\",\"iUo5rv\":\"tokens n'est pas la même chose que de les staker . Si vous souhaitez staker votre\",\"iZR5z6\":\"Borrow balance after swap\",\"iZxa38\":\"Utilisez-le pour voter pour ou contre les propositions actives.\",\"iboNXd\":\"Amount received\",\"iddNqA\":\"This transaction will disable E-Mode. All assets will revert to their base LTV and liquidation thresholds.\",\"if5PH+\":\"Informations sur le collectionneur\",\"igkfR1\":[\"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\"],\"ih/VjN\":\"Staking this amount will reduce your health factor and increase risk of liquidation.\",\"il0sEG\":\"L'utilisation du collatéral est limitée en raison du mode d'isolation.\",\"j+K1Xj\":\"Amount After Fee\",\"j4SXZo\":\"Claim all merit rewards\",\"j7JHV+\":\"Total APY\",\"j8cF1R\":\"Cooling down\",\"jA2QeW\":\"Fournir votre\",\"jFi7dz\":\"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\",\"jG3UJ7\":\"Désactiver le E-mode\",\"jKYzR1\":\"Activer le E-Mode\",\"jSYv+Z\":\"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.\",\"jZkYWO\":\"Boosted LTV\",\"jaKbwW\":[[\"s\"],\"s\"],\"jbFMap\":\"Temps de recharge restant\",\"jeMZNr\":[[\"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.\"],\"jfl9OP\":\"Migré\",\"jmXdoY\":\"En E-Mode, certains actifs ne sont pas empruntables. Quittez le E-mode pour accéder à tous les actifs\",\"jqVo/k\":\"here.\",\"jqzUyM\":\"Non disponible\",\"k/sb6z\":\"Choisir la langue\",\"k3wP3f\":\"<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.\",\"kACpF3\":[\"Réclamer \",[\"0\"]],\"kH6wUX\":\"Impact sur les prix\",\"kIC28N\":\"Available to claim\",\"kIpSye\":[[\"numSelected\"],\"/\",[\"numAvailable\"],\" Actifs sélectionnés\"],\"kN1Yg5\":\"Pour rembourser au nom d'un utilisateur, un montant explicite à rembourser est nécessaire\",\"kRTD40\":[\"Montant de remboursement à atteindre \",[\"0\"],\"% d’utilisation\"],\"kSXIT1\":\"Proceed with migration\",\"kgKqPv\":\"You can not stake this amount because it will cause collateral call\",\"kj3M8S\":\"Deposit\",\"kjN9tT\":\"Le plafond d'approvisionnement est dépassé\",\"kn+s7w\":[[\"0\"],\" collateral would have 0% LTV without E-Mode. Disable \",[\"1\"],\" as collateral to use this option.\"],\"knxE+G\":\". JSON (en anglais seulement)\",\"ks2LWT\":\"Le plafond de la dette n'est pas nul\",\"kz3wtK\":\"and about SPK program\",\"kzZyM4\":\"DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage.\",\"kzeZTm\":\"LTV\",\"lCF0wC\":\"Refresh\",\"lU2d1/\":[\"L’actif ne peut pas être migré en raison d’une liquidité insuffisante ou d’une limitation du plafond d’emprunt \",[\"marketName\"],\" v3 marché.\"],\"lVhKKI\":\"A voté YAE\",\"lWLqxB\":\"Nous n’avons trouvé aucune transaction liée à votre recherche. Réessayez avec un autre nom de ressource ou réinitialisez les filtres.\",\"lXb3Ih\":[\"This asset has 0 LTV and cannot be used as collateral. Enable an E-Mode to use \",[\"symbol\"],\" as collateral.\"],\"lXj2Sq\":\"Repay with Collateral\",\"lYGfRP\":\"Anglais\",\"lfEjIE\":\"En savoir plus dans notre <0>guide FAQ\",\"ljF4ko\":\"The selected rate is lower than the market price. You might incur a loss if you proceed.\",\"lu7f+8\":\"Blocked by Shield\",\"m/IEhi\":\"Émission totale par jour\",\"m7r7Hh\":\"Sélection d’actifs d’emprunt\",\"mDDK4p\":\"Balancer Pool\",\"masO5Z\":\"E-Mode increases your LTV for a selected category of assets. <0>Learn more\",\"mdNjKU\":[\"Votre \",[\"name\"],\" Le portefeuille est vide. Acheter ou transférer des actifs ou utiliser <0>\",[\"0\"],\" pour transférer votre \",[\"network\"],\" actif.\"],\"me5LMQ\":\"Checking approval\",\"muiOng\":[\"Acheter \",[\"cryptoSymbol\"],\" avec Fiat\"],\"mvCXBY\":\"Mise en jeu AAVE\",\"mwdzil\":\"D'accord, fermer\",\"mzDAU3\":\"Savings GHO (sGHO)\",\"mzdIia\":\"L'actif ne peut pas être utilisé comme collatéral.\",\"n+SX4g\":\"Développeurs\",\"n0Xol9\":\"Only the listed collateral contributes borrowing power in this category — other collateral you hold will have 0% LTV while in it.\",\"n1na81\":\"No eligible assets to swap.\",\"n4PWtp\":\"Depositing\",\"nJIhzm\":\"Fournir apy\",\"nJgsQu\":\"Avec un pouvoir de vote de <0/>\",\"nLC6tu\":\"Français\",\"nNHV0z\":\"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.\",\"nNbnzu\":\"Proposition\",\"nPGNMh\":\"Peut être exécuté\",\"nUK1ou\":[\"Assets with zero LTV (\",[\"0\"],\") must be withdrawn or disabled as collateral to perform this action\"],\"neITkT\":\"This asset has 0% LTV, meaning it does not contribute to borrowing power. Existing positions with this asset as collateral still count toward the liquidation threshold and protect your health factor. New positions cannot enable this asset as collateral.\",\"niLuDE\":\"GHO yield with instant withdraws.\",\"njBeMm\":\"Les deux\",\"nmsg0W\":\"Migrate stkGHO to sGHO\",\"ntyFSE\":[[\"h\"],\"h\"],\"nwIsn4\":\"After the cooldown is initiated, you will be able to withdraw your assets immediatley.\",\"nweCqF\":\"Cancelling order...\",\"nwtY4N\":\"Quelque chose s’est mal passé\",\"nxyWvj\":\"Le retrait de ce montant réduira votre facteur santé et augmentera le risque de liquidation.\",\"o17QVP\":\"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.\",\"o1xc2V\":\"L'approvisionnement en aTokens n'est pas nul\",\"o5ooMr\":\"Dette\",\"o7J4JM\":\"Filtrer\",\"o7Yloh\":\"Learn more about the Ether.fi program\",\"oHFrpj\":\"Temps de recharge pour déstaker\",\"oJ5ZiG\":\"L'utilisateur n'a pas de dette à taux variable impayée sur cette réserve\",\"oRVm8M\":\"Dark Mode\",\"oRyIAl\":\"Savings Rate\",\"oUwXhx\":\"Ressources de test\",\"oWQnqT\":\"Staking this asset will earn the underlying asset supply yield in addition to other configured rewards.\",\"oWklJD\":\"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é.\",\"odnIK3\":\"Time remaining until the 48 hour withdraw period starts.\",\"ogU9GD\":\"Target liquidity\",\"oiK5nY\":\"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.\",\"om/XHs\":\"Disponible au dépôt\",\"omq5qJ\":\"Claiming all protocol rewards and merit rewards together\",\"ovBPCi\":\"Default\",\"ovT1pF\":[\"Per the community, the \",[\"market\"],\" has been frozen.\"],\"ow3fug\":\"Rien n’a été trouvé\",\"owSsI3\":\"Signatures prêtes\",\"p+R52m\":\"Accéder à Balancer Pool\",\"p2S64u\":\"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.\",\"p2Z2Qi\":\"Cet actif a atteint son plafond d'emprunt. Rien n'est disponible pour être emprunté à ce marché.\",\"p45alK\":\"Configurer la délégation\",\"pDgeaz\":[[\"title\"]],\"pdZqBk\":\"Le solde sous-jacent doit être supérieur à 0\",\"pgWG9H\":\"Pas assez de solde staké\",\"ph9+uj\":[\"Switching to \",[\"networkName\"],\"...\"],\"piPrJ7\":\"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.\",\"pjO/iH\":\"Minimum amount received\",\"pooutM\":\"Voting is on\",\"pqaM5s\":\"Confirming transaction\",\"ptaxX3\":[\"Je comprends comment fonctionnent le temps de recharge (\",[\"0\"],\") et le retrait (\",[\"1\"],\")\"],\"pup/ej\":\"Net Protocol Incentives\",\"py2iiY\":\"L'appelant de cette fonction doit être un pool\",\"q/51mF\":\"Migrer vers la V3\",\"q3df11\":\"Stratégie de taux d’intérêt\",\"q6lAbz\":\"Staké\",\"qB4kPi\":\"Fournir APY\",\"qENI8q\":\"Paramètres globaux\",\"qGz5zl\":\"Solde de garantie après remboursement\",\"qKfida\":\"Staked tokens are wrapped and use an exchange rate. You may see fewer token shares, but the value matches your deposit and will grow as yield accrues.\",\"qOqbD6\":\"copier l'erreur\",\"qUB+Re\":[\"Deposit GHO into Savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APR on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow.\"],\"qXCkEM\":\"Veuillez connecter votre portefeuille pour voir vos fournitures, vos emprunts et vos positions ouvertes.\",\"qY2jnw\":\"Expiration invalide\",\"qhhf9L\":\"Rewards available to claim\",\"qtS7wW\":\"Thank you for voting\",\"quYPUU\":\"Variable interest rate will <0>fluctuate based on the market conditions.\",\"quzIeW\":\"User is in isolation mode or LTV is zero\",\"qvnz3q\":\"Montant non valide à brûler\",\"qz6JVE\":[\"Your order amounts are \",[\"0\"],\" less favorable by \",[\"1\"],\"% to the liquidity provider than recommended. This order may not be executed.\"],\"qz9c6b\":[\"Repaying \",[\"0\"],\" with \",[\"1\"]],\"qzFp5D\":\"All Categories\",\"rHgdb0\":\"Migrate to Aave V3\",\"rOrHHe\":\"Le montant doit être supérieur à 0\",\"rQ+R+0\":\"Sélection d’actifs d’approvisionnement\",\"rSayea\":\"APY\",\"rTBDeu\":[\"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\"],\"rcT+yy\":\"Afficher les actifs avec 0 solde\",\"riNWOA\":\"E-Mode\",\"rjGI/Q\":\"Vie privée\",\"rnKPW1\":\"Watch a wallet balance in read-only mode\",\"rojvRp\":\"Approval by signature not available\",\"rvbaFU\":[\"Bridging \",[\"symbol\"]],\"rwVVB7\":\"Réclamez toutes les récompenses\",\"rwyUva\":\"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.\",\"rxJW5W\":\"Votre pouvoir de proposition est basé sur votre solde AAVE/stkAAVE et les délégations reçues.\",\"s/R9cx\":\"To continue claiming rewards, migrate now.\",\"s2jJnW\":\"You don't have any bridge transactions\",\"s5wBAq\":[\"Unstake \",[\"symbol\"]],\"sJbIdI\":\"Enter ETH address or ENS\",\"sK+Nag\":\"Réviser tx\",\"sP2+gB\":\"NON\",\"sQv06Y\":\"pour\",\"sTtO6J\":\"Confirm transaction\",\"sXKb3l\":\"Exchange rate\",\"sb0q4+\":\"Vous unstaké ici\",\"smJNwH\":\"Disponible à emprunter\",\"solypO\":\"Le facteur de santé n'est pas inférieur au seuil\",\"sr0UJD\":\"Retourner\",\"ss5GCK\":\"L'adresse du fournisseur d'adresses du pool n'est pas valide\",\"swEgK4\":\"Vos informations de vote\",\"t+wtgf\":\"Aucun emprunt pour l'instant\",\"t/YqKh\":\"Remove\",\"t/ct9N\":\"Auto Slippage\",\"tBIz3I\":[\"Supply \",[\"0\"],\" and double your yield by <0><1>verifying your humanity through Self for \",[\"1\"],\" per user.\"],\"tCnbEs\":\"Prix Oracle\",\"tFZLf8\":\"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.\",\"tHuvQI\":\"Accéder au tableau de bord V3\",\"tOcg3N\":\"Étant donné que cet actif est gelé, les seules actions disponibles sont le retrait et le remboursement, accessibles depuis le <0>tableau de bord\",\"tOuXfv\":[\"Emprunter le montant à atteindre \",[\"0\"],\"% d’utilisation\"],\"tUR8qN\":\"Current APR\",\"tVJk4q\":\"Cancel order\",\"te9Bfl\":\"S'il vous plaît, connectez votre portefeuille\",\"tj6dr4\":\"Merit Program rewards can be claimed\",\"trDlYh\":\"APY, fixed rate\",\"tt5yma\":\"Vos ressources\",\"tw6G0s\":[\"You must disable \",[\"0\"],\" as collateral before exiting E-Mode. These assets have 0 LTV outside of E-Mode and cannot be used as collateral.\"],\"u3ZeYl\":\"La transaction a échoué\",\"u706uF\":\"Prime flash non valide\",\"u8Gfu7\":[\"Aucun résultat de recherche\",[\"0\"]],\"uAQUqI\":\"Status\",\"uGG4Lk\":\"Claim all protocol rewards\",\"uHMwk8\":\"Aucune ressource n’a été sélectionnée pour la migration.\",\"uI3SjW\":\"Connection Error\",\"uJOI6M\":\"Tip: Try improving your order parameters\",\"uJPHuY\":\"Migration\",\"uRXR6h\":[\"Swap \",[\"0\"],\" debt\"],\"uZiu4N\":\"There is an active order for the same sell asset (avoid nonce reuse).\",\"udFheE\":\"For repayment of a specific type of debt, the user needs to have debt that type\",\"ulNuNq\":\"Exporter des données vers\",\"ulup2p\":\"Acheter des crypto-monnaies avec des monnaies fiduciaires\",\"usB84Z\":\"Le montant maximum disponible pour emprunter est limité car le plafond d’emprunt du protocole est presque atteint.\",\"uyLjNw\":\"Custom slippage\",\"v+Fu0z\":\"This asset is eligible for Kernel points incentive program. Aave Labs does not guarantee the program and accepts no liability.\",\"v0CIlJ\":\"You have no rewards to claim at this time.\",\"v8x7Mg\":\"Garantie insuffisante pour couvrir une nouvelle position d’emprunt. Le portefeuille doit avoir une capacité d’emprunt restante pour effectuer le transfert de dette.\",\"vEqxH9\":\"Restauré\",\"vH2C/2\":\"Swap\",\"vLyv1R\":\"Cacher\",\"vMba49\":\"L'emprunt n'est pas activé\",\"vMpNwt\":\"Approuvez avec\",\"vNAHA2\":\"PTs\",\"vXIe7J\":\"Language\",\"vesuBJ\":\"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.\",\"vv7kpg\":\"Cancelled\",\"w+V9Cx\":\"Stablecoin\",\"w/JtJ3\":\"L'offre de dette stable n'est pas nulle\",\"w1f8Ky\":\"Savings GHO\",\"w4VBY+\":\"Récompenses APR\",\"w9dLMW\":[[\"label\"]],\"wAOL+X\":[\"Vous \",[\"action\"],\" <0/> \",[\"symbole\"]],\"wBIsjb\":\"Canal Discord\",\"wEwT0s\":\"Show frozen/paused assets\",\"wQZbc/\":\"L'appelant de la fonction n'est pas un AToken\",\"wRRqvW\":\"Vous n'avez pas de fournitures dans cette devise\",\"wZFvVU\":\"VOTER OUI\",\"wapGcj\":[[\"message\"]],\"wb/r1O\":[\"Faucet \",[\"0\"]],\"wdxz7K\":\"Source\",\"weC8IO\":\"All Rewards\",\"weH1nG\":\"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.\",\"wh7Ezv\":\"You have no AAVE/stkAAVE/aAave balance to delegate.\",\"wjFWDB\":\"No markets found\",\"wlsIx7\":\"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 «\xA0Faucet\xA0» 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\",\"wmE285\":\"Get ABP v2 Token\",\"wuMdlk\":[\"This asset is eligible for \",[\"0\"],\" Sonic Rewards.\"],\"wyRrcJ\":\"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.\",\"x+QJ9y\":[\"Category \",[\"selectedEmodeId\"]],\"x0TRLG\":[\"Repay your \",[\"0\"],\" \",[\"1\",\"plural\",{\"one\":\"borrow\",\"other\":\"borrows\"}],\" to use this category.\"],\"x5KiLL\":\"Les ressources sélectionnées ont été migrées avec succès. Rendez-vous sur le tableau de bord du marché pour les voir.\",\"x7F2p6\":\"Différentiel de courant\",\"x7K5ib\":[\"Votre \",[\"networkName\"],\" Le portefeuille est vide. Obtenir un test gratuit \",[\"0\"],\" à\"],\"x9iLRD\":\"tokens, veuillez vous rendre sur\",\"xNy/UG\":\"Rembourser avec\",\"xPm8wv\":\"En savoir plus sur les risques encourus\",\"xXYpZl\":[[\"0\"],\" Faucet\"],\"xaVBSS\":\"Vos informations\",\"xaWZ6f\":\"Changement de type APY\",\"xh6k71\":\"L’utilisation des garanties est limitée en raison du mode d’isolation.\",\"xvIklc\":\"Flashloan est désactivé pour cet actif, cette position ne peut donc pas être migrée.\",\"y5rS9U\":\"Émigrer\",\"y66tBm\":[\"Activer \",[\"symbol\"],\" comme collatéral\"],\"yCrG6m\":\"Taille totale du marché\",\"yD146M\":\"Eligible for incentives through Merkl and Boosted Yield via Self.\",\"yJUUbn\":\"Aperçu des transactions\",\"yLGmLX\":[\"Remise en jeu \",[\"symbol\"]],\"yRkqG9\":\"Limit\",\"yYHqJe\":\"Pas une adresse valide\",\"yZ5ngq\":\"Transaction details not available\",\"yZwLw6\":\"Suivre le portefeuille\",\"yh2sjd\":[\"Impact sur les prix \",[\"0\"],\"%\"],\"yhvj6d\":\"Vous ne pouvez pas changer d'utilisation en tant que mode de garantie pour cette devise, car cela entraînera un appel de garantie\",\"ylmtBZ\":\"The app is running in fork mode.\",\"ymNY32\":[\"Il n'y a pas assez de fonds dans la \",[\"0\"],\" réserve pour emprunter\"],\"yutSPY\":\"Add to Favourites\",\"yv/Kz/\":\"Back home\",\"yz7wBu\":\"Fermer\",\"z4uGQg\":\"Le plafond de la dette est dépassé\",\"z5JUmg\":[\"Estimated costs are \",[\"0\"],\"% of the sell amount. This order is unlikely to be filled.\"],\"z5UQOM\":\"La garantie choisie ne peut être liquidée\",\"z5Y+p6\":[\"Fournir \",[\"symbole\"]],\"zCjNKs\":\"L'action ne peut pas être effectuée car la réserve est gelée\",\"zNgzxM\":\"Excludes variable supply APY\",\"zRHytX\":\"Plafond de la dette isolée\",\"zTOjMP\":\"La limite d’approvisionnement du protocole est de 100 % pour cet actif. D’autres approvisionnements ne sont pas disponibles.\",\"zTTLE6\":\"Show legacy markets\",\"zVdRUG\":\"Submission did not work, please try again later or contact wecare@avara.xyz\",\"zZmf1N\":\"Filled\",\"zgtIDV\":\"Dette restante\",\"zmTPiV\":\"Bilan d'approvisionnement\",\"zpPbZl\":\"Paramètres du risque de liquidation\",\"zqp4Tm\":\"Unable to Connect\",\"zr58Jd\":\"Umbrella is the upgraded version of the Safety Module. Manage your previously staked assets\",\"zucql+\":\"Menu\",\"zv/j10\":[\"Active \",[\"0\"],\" borrow is not compatible with this category. Repay your \",[\"1\"],\" borrow to use this option.\"],\"zwWKhA\":\"Apprendre encore plus\",\"zy9fXn\":[\"L’actif est gelé \",[\"marketName\"],\" v3, donc cette position ne peut pas être migrée.\"],\"zys+R6\":\"Faites attention à la congestion du réseau et aux prix de l’essence.\",\"+F6nAX\":\"Save with sGHO\",\"/lMWs6\":[\"Deposit GHO and earn up to <0>\",[\"0\"],\"% APY\"],\"1bpx9A\":\"...\",\"2RubOP\":\"Initiate Withdraw\",\"8d61xO\":\"The Ink instance is governed by the Ink Foundation\",\"C5jQc6\":\"GHO Balance\",\"Cxt2YY\":\"Watch wallet\",\"DR+4uL\":\"Bilan de l’alimentation après le changement\",\"MlRlXX\":\"Current APY\",\"SIWumd\":\"Afficher les ressources gelées ou mises en pause\",\"TszKts\":\"Emprunter le solde après le changement\",\"d9YZVR\":\"Principle Tokens\",\"eQ0Wu0\":\"Please connect a wallet to view your balance here.\",\"f2e3vu\":[\"Deposit GHO into savings GHO (sGHO) and earn <0>\",[\"0\"],\"% APY on your GHO holdings. There are no lockups, no rehypothecation, and you can withdraw anytime. Simply deposit GHO, receive sGHO tokens representing your balance, and watch your savings grow earning claimable rewards from merit.\"],\"gIMJlW\":\"Mode réseau test\",\"kMi0nz\":\"sGHO Merit APY History\",\"lqCWte\":[\"Deposit GHO and earn \",[\"0\"],\"% APY\"],\"mogZv0\":\"Favourite\",\"yB1YpA\":\"Mode Sombre\"}")}; \ No newline at end of file diff --git a/src/modules/dashboard/DashboardEModeButton.tsx b/src/modules/dashboard/DashboardEModeButton.tsx index 12dfa8af05..86a26c3110 100644 --- a/src/modules/dashboard/DashboardEModeButton.tsx +++ b/src/modules/dashboard/DashboardEModeButton.tsx @@ -91,10 +91,11 @@ export const DashboardEModeButton = ({ userEmodeCategoryId }: DashboardEModeButt bgcolor: isEModeDisabled ? open ? figVars['bg-6'] - : figVars['bg-2'] + : 'transparent' : figVars['surface-elevated'], px: '4px', borderRadius: '4px', + height: '100%', }} > { onChange={(e: SelectChangeEvent) => setValue(e.target.value)} size="small" sx={{ minWidth: 160 }} + // Showcase-only: render the menu inline so it inherits the showcase's LOCAL color scheme. + // A portaled menu escapes to , outside the showcase's `data-mui-color-scheme` box, + // and would otherwise follow the app's global scheme instead of the toggle here. + MenuProps={{ disablePortal: true }} > Ethereum Base diff --git a/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx b/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx index 2778ab761b..78fc61c333 100644 --- a/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/TogglesBadgesSection/index.tsx @@ -1,28 +1,12 @@ import { Box, Typography } from '@mui/material'; import { useState } from 'react'; import { BadgeSize, ExclamationBadge } from 'src/components/badges/ExclamationBadge'; -import StyledToggleButton, { StyledTxModalToggleButton } from 'src/components/StyledToggleButton'; -import StyledToggleGroup, { - StyledTxModalToggleGroup, -} from 'src/components/StyledToggleButtonGroup'; +import { StyledTxModalToggleButton } from 'src/components/StyledToggleButton'; +import { StyledTxModalToggleGroup } from 'src/components/StyledToggleButtonGroup'; import { Section } from '../Section'; import { Specimen } from '../Specimen'; -const ToggleDemo = () => { - const [value, setValue] = useState('supply'); - return ( - v && setValue(v)}> - - Supply - - - Borrow - - - ); -}; - const TxToggleDemo = () => { const [value, setValue] = useState('market'); return ( @@ -39,13 +23,7 @@ const TxToggleDemo = () => { export const TogglesBadgesSection = () => (
- - - - - - - + diff --git a/src/modules/governance/proposal/VotersListModal.tsx b/src/modules/governance/proposal/VotersListModal.tsx index 1d0b294383..900183f21f 100644 --- a/src/modules/governance/proposal/VotersListModal.tsx +++ b/src/modules/governance/proposal/VotersListModal.tsx @@ -2,8 +2,8 @@ import { Trans } from '@lingui/macro'; import { Box, Grid, Typography, useMediaQuery, useTheme } from '@mui/material'; import { useState } from 'react'; import { Row } from 'src/components/primitives/Row'; -import StyledToggleButton from 'src/components/StyledToggleButton'; -import StyledToggleButtonGroup from 'src/components/StyledToggleButtonGroup'; +import { StyledTxModalToggleButton } from 'src/components/StyledToggleButton'; +import { StyledTxModalToggleGroup } from 'src/components/StyledToggleButtonGroup'; import { ProposalVoteDisplayInfo, VotersSplitDisplay } from 'src/modules/governance/types'; import { BasicModal } from '../../../components/primitives/BasicModal'; @@ -129,24 +129,24 @@ export const VotersListModal = ({ ) : ( <> - setVoteView(value)} - sx={{ width: '100%', height: '44px', mt: 8, mb: 6 }} + sx={{ width: '100%', mt: 8, mb: 6 }} > - + Voted YAE - - + + Voted NAY - - + + {voteView === 'yaes' && yesVotesUI} {voteView === 'nays' && noVotesUI} diff --git a/src/utils/buttonStyles.ts b/src/utils/buttonStyles.ts index 96e41fa78e..74c89cf776 100644 --- a/src/utils/buttonStyles.ts +++ b/src/utils/buttonStyles.ts @@ -9,10 +9,16 @@ import { SxProps, Theme } from '@mui/material'; * * */ -export const iconButtonSx: SxProps = { +export const iconButtonSx = { minWidth: 0, p: '0.25rem', + // Square: match the width to the button's own height (set by its size slot) so it's a square + // whatever the icon's width — otherwise a medium button (36px tall) with an 18px icon renders + // as a tall rectangle. + aspectRatio: '1', // Fixed radius even at size="small" (whose slot would otherwise apply 0.375rem); sx wins // over the theme's per-size styleOverride. borderRadius: '0.5rem', -}; + // `satisfies` (not a `SxProps` annotation) keeps the narrow literal type so this can also be + // composed inside an `sx` array — e.g. `sx={[iconButtonSx, { ... }]}`. +} satisfies SxProps; diff --git a/src/utils/theme.tsx b/src/utils/theme.tsx index c4c77bf029..ddc8a82c92 100644 --- a/src/utils/theme.tsx +++ b/src/utils/theme.tsx @@ -35,6 +35,12 @@ const darkScheme = (styles: object) => ({ '*:where([data-mui-color-scheme="dark"]) &': styles, }); +// Dropdown geometry: the menu paper's corner radius and the list's inset. The option-row +// highlight radius is derived from these (paper radius − inset) to stay concentric, so keep +// them together here — otherwise that relationship silently drifts. +const MENU_PAPER_RADIUS = '0.75rem'; +const MENU_LIST_INSET = '0.38rem'; + /** * Secondary "white pill" style for the `outlined` button variant: a hairline ring instead * of a border (bg-1 in light, bg-4 in dark) with a subtle fill shift on hover. On hover the @@ -465,6 +471,26 @@ export function getThemedComponents(theme: AppTheme) { }, '&.Mui-focused .MuiOutlinedInput-notchedOutline': { borderColor: figVars['input-border-hover'], + // Keep the hairline — MUI thickens the focused outline to 2px by default, which + // reads as a heavy border that lingers while the field/Select stays focused. + borderWidth: '1px', + }, + // Select trigger = the outlined-button surface (secondaryPillStyle): a bg-1/bg-4 fill + // wrapped by the shared ring (figSurfaceShadow), same 0.5rem radius (from `root`). + // The notched border is dropped — the ring IS the outline — so there's no blueish or + // animated border; hover & open step the fill (same as the button) while the ring + // stays put. + '&:has(.MuiSelect-select)': { + backgroundColor: figVars['bg-1'], + boxShadow: figSurfaceShadow(), + ...darkScheme({ backgroundColor: figVars['bg-4'] }), + '& .MuiOutlinedInput-notchedOutline': { border: 'none' }, + '&:hover, &.Mui-focused': { + backgroundColor: figVars['bg-4'], + boxShadow: figSurfaceShadow(), + ...darkScheme({ backgroundColor: figVars['bg-5'] }), + '& .MuiOutlinedInput-notchedOutline': { border: 'none' }, + }, }, }, }, @@ -481,12 +507,18 @@ export function getThemedComponents(theme: AppTheme) { }, }, }, + MuiButtonBase: { + defaultProps: { + // No ripple / pressed "splash" on any control (menu items, buttons, icon + // buttons, toggles, checkboxes, tabs, …). Interaction is conveyed by hover, + // keyboard focus, and the press-scale — not MUI's ripple. Set on ButtonBase so + // it covers every ButtonBase-derived component in one place. + disableRipple: true, + }, + }, MuiButton: { defaultProps: { disableElevation: true, - // No ripple / pressed splash on mouse-down (hover + keyboard focus are the - // only interaction states). - disableRipple: true, }, styleOverrides: { root: { @@ -544,13 +576,25 @@ export function getThemedComponents(theme: AppTheme) { props: { variant: 'contained', color: 'primary' }, style: { backgroundColor: figVars['fg-max'], + // Same lift as the outlined pill, but ringed in the button's own fill (not + // shadow-stroke-2) — the opaque bg already reads as a boundary, so the ring just + // needs to disappear into it while the drop-shadow layer still adds the lift. + boxShadow: figSurfaceShadow('fg-max'), '&:hover, &.Mui-focusVisible': { backgroundColor: figVars['fg-1'], + boxShadow: figSurfaceShadow('fg-1'), // Dark: fg-1 equals fg-max (#fff) so the swap is invisible — use bone instead. ...darkScheme({ backgroundColor: figVars['bone'], + boxShadow: figSurfaceShadow('bone'), }), }, + // The root focus ring uses `currentColor`, which here is contrastText (bg-1) — + // nearly the same shade as the page background, so it's invisible. Re-point it at + // fg-1 (same ink the outlined variant's ring uses) so it reads against the page. + '&.Mui-focusVisible': { + outlineColor: figVars['fg-1'], + }, // Disabled: crisp label, fg-max fill at 50% (no box-shadow on contained). '&.Mui-disabled': disabledFade({ color: figVars['bg-1'], @@ -584,7 +628,6 @@ export function getThemedComponents(theme: AppTheme) { }, MuiCheckbox: { defaultProps: { - disableRipple: true, icon: ( Date: Thu, 23 Jul 2026 08:33:50 +0900 Subject: [PATCH 35/39] style(governance): tokenize ProposalTimeline with v3 fg/theme.vars Re-apply v3 token conventions to main's new ProposalTimeline.tsx (the replacement for the deleted ProposalLifecycle/ProposalLifecycleCache): theme.palette.* -> theme.vars.palette.*, text.disabled -> figVars fg-4, and text.{primary,secondary,muted} props -> fg-{1,2,3}. Standard MUI palette strings (warning.main, divider) left as-is. --- .../governance/proposal/ProposalTimeline.tsx | 35 ++++++++++--------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/src/modules/governance/proposal/ProposalTimeline.tsx b/src/modules/governance/proposal/ProposalTimeline.tsx index 3485f0a873..14d77c0645 100644 --- a/src/modules/governance/proposal/ProposalTimeline.tsx +++ b/src/modules/governance/proposal/ProposalTimeline.tsx @@ -19,6 +19,7 @@ import { useGovernanceCoreConstants } from 'src/hooks/governance/useGovernanceCo import { ProposalDetail, ProposalPayload } from 'src/services/GovernanceCacheService'; import { governanceV3Config } from 'src/ui-config/governanceConfig'; import { networkConfigs } from 'src/ui-config/networksConfig'; +import { figVars } from 'src/utils/figmaColors'; import { getNetworkConfig } from 'src/utils/marketsAndNetworksConfig'; // Single-spine proposal timeline. It weaves the three state machines (proposal core, voting machine, @@ -109,16 +110,16 @@ interface Step { const statusColor = (status: StepStatus, theme: Theme) => { switch (status) { case 'done': - return theme.palette.primary.main; + return theme.vars.palette.primary.main; case 'ok': - return theme.palette.success.main; + return theme.vars.palette.success.main; case 'now': case 'settled': - return theme.palette.warning.main; + return theme.vars.palette.warning.main; case 'terminal': - return theme.palette.error.main; + return theme.vars.palette.error.main; default: - return theme.palette.text.disabled; + return figVars['fg-4']; } }; @@ -525,7 +526,7 @@ export const ProposalTimeline = ({ }} > {logo && } - + {sub.label} @@ -538,10 +539,10 @@ export const ProposalTimeline = ({ sub.tone === 'ready' || sub.tone === 'countdown' ? 'warning.main' : sub.tone === 'done' - ? 'text.muted' + ? 'fg-3' : sub.tone === 'estimate' - ? 'text.muted' - : 'text.secondary', + ? 'fg-3' + : 'fg-2', whiteSpace: 'nowrap', }} > @@ -608,10 +609,10 @@ export const ProposalTimeline = ({ step.status === 'settled' || step.status === 'terminal' ? color - : theme.palette.background.paper, + : theme.vars.palette.background.paper, boxShadow: step.status === 'now' - ? `0 0 0 4px ${theme.palette.background.paper}, 0 0 0 6px ${theme.palette.warning.main}33` + ? `0 0 0 4px ${theme.vars.palette.background.paper}, 0 0 0 6px ${theme.vars.palette.warning.main}33` : undefined, }} /> @@ -627,7 +628,7 @@ export const ProposalTimeline = ({ gap: 2, cursor: hasSubs ? 'pointer' : 'default', '&:focus-visible': { - outline: `2px solid ${theme.palette.primary.main}`, + outline: `2px solid ${theme.vars.palette.primary.main}`, outlineOffset: 2, borderRadius: 1, }, @@ -648,13 +649,13 @@ export const ProposalTimeline = ({ > {step.name} {hasSubs && ( - + {isOpen ? ( ) : ( @@ -688,7 +689,7 @@ export const ProposalTimeline = ({ step.status === 'ok' ? 'success.main' : step.status === 'pending' - ? 'text.muted' + ? 'fg-3' : 'warning.main', }} > @@ -702,8 +703,8 @@ export const ProposalTimeline = ({ step.valueKind === 'countdown' ? 'warning.main' : step.valueKind === 'pending' - ? 'text.disabled' - : 'text.muted', + ? 'fg-4' + : 'fg-3', fontWeight: step.valueKind === 'countdown' ? 600 : 400, fontStyle: step.valueKind === 'pending' || step.valueKind === 'estimate' From be18c47022c3800743241dede3fbadbf0da70bc6 Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 23 Jul 2026 09:08:24 +0900 Subject: [PATCH 36/39] perf(icons): path-import @mui/icons-material to avoid Babel barrel deopt A custom .babelrc (for @lingui/macro) disables SWC, so Next 15's automatic @mui/icons-material barrel optimization doesn't run. Barrel imports pulled the full icon set (>500KB) into the graph, causing a Babel deopt and slow dev compiles (AppFooter, in MainLayout, taxed every route). Switch the 8 barrel imports to per-icon path imports, matching the repo's existing convention. --- .../transactions/Swap/errors/shared/GenericError.tsx | 2 +- .../transactions/Swap/inputs/primitives/SwapAssetInput.tsx | 2 +- src/layouts/AppFooter.tsx | 5 ++++- src/modules/governance/proposal/ProposalOverview.tsx | 2 +- src/modules/governance/proposal/ProposalTimeline.tsx | 3 ++- src/modules/history/HistoryFilterMenu.tsx | 3 ++- src/modules/migration/MigrationBottomPanel.tsx | 2 +- src/modules/migration/MigrationMarketCard.tsx | 3 ++- 8 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/components/transactions/Swap/errors/shared/GenericError.tsx b/src/components/transactions/Swap/errors/shared/GenericError.tsx index 89fd15b888..5047c4c34a 100644 --- a/src/components/transactions/Swap/errors/shared/GenericError.tsx +++ b/src/components/transactions/Swap/errors/shared/GenericError.tsx @@ -1,5 +1,5 @@ import { Trans } from '@lingui/macro'; -import { ContentCopy } from '@mui/icons-material'; +import ContentCopy from '@mui/icons-material/ContentCopy'; import { IconButton, SxProps, Tooltip, Typography } from '@mui/material'; import React, { useState } from 'react'; import { Warning } from 'src/components/primitives/Warning'; diff --git a/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx b/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx index 018cc102be..456ad6846e 100644 --- a/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx +++ b/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx @@ -4,7 +4,7 @@ import { formatUnits } from '@ethersproject/units'; import { ExclamationIcon } from '@heroicons/react/outline'; import { XCircleIcon } from '@heroicons/react/solid'; import { Trans } from '@lingui/macro'; -import { ExpandMore } from '@mui/icons-material'; +import ExpandMore from '@mui/icons-material/ExpandMore'; import LaunchIcon from '@mui/icons-material/Launch'; import { Box, diff --git a/src/layouts/AppFooter.tsx b/src/layouts/AppFooter.tsx index 7e4e03db64..2da49a333b 100644 --- a/src/layouts/AppFooter.tsx +++ b/src/layouts/AppFooter.tsx @@ -1,5 +1,8 @@ import { Trans } from '@lingui/macro'; -import { GitHub, Instagram, LinkedIn, X } from '@mui/icons-material'; +import GitHub from '@mui/icons-material/GitHub'; +import Instagram from '@mui/icons-material/Instagram'; +import LinkedIn from '@mui/icons-material/LinkedIn'; +import X from '@mui/icons-material/X'; import { Box, styled, SvgIcon, Typography } from '@mui/material'; import { DuneIcon, TikTok } from 'public/icons/footer/icons'; import { Link } from 'src/components/primitives/Link'; diff --git a/src/modules/governance/proposal/ProposalOverview.tsx b/src/modules/governance/proposal/ProposalOverview.tsx index 5403486fb3..7c59722852 100644 --- a/src/modules/governance/proposal/ProposalOverview.tsx +++ b/src/modules/governance/proposal/ProposalOverview.tsx @@ -1,6 +1,6 @@ import { DownloadIcon } from '@heroicons/react/solid'; import { Trans } from '@lingui/macro'; -import { Twitter } from '@mui/icons-material'; +import Twitter from '@mui/icons-material/Twitter'; import { Box, Button, diff --git a/src/modules/governance/proposal/ProposalTimeline.tsx b/src/modules/governance/proposal/ProposalTimeline.tsx index 14d77c0645..24ba1713cb 100644 --- a/src/modules/governance/proposal/ProposalTimeline.tsx +++ b/src/modules/governance/proposal/ProposalTimeline.tsx @@ -1,6 +1,7 @@ import { ExternalLinkIcon } from '@heroicons/react/outline'; import { Trans } from '@lingui/macro'; -import { KeyboardArrowDown, KeyboardArrowUp } from '@mui/icons-material'; +import KeyboardArrowDown from '@mui/icons-material/KeyboardArrowDown'; +import KeyboardArrowUp from '@mui/icons-material/KeyboardArrowUp'; import { Avatar, Box, diff --git a/src/modules/history/HistoryFilterMenu.tsx b/src/modules/history/HistoryFilterMenu.tsx index b73c560c0e..a502cd0ccd 100644 --- a/src/modules/history/HistoryFilterMenu.tsx +++ b/src/modules/history/HistoryFilterMenu.tsx @@ -1,6 +1,7 @@ import { XCircleIcon } from '@heroicons/react/solid'; import { Trans } from '@lingui/macro'; -import { Check as CheckIcon, Sort as SortIcon } from '@mui/icons-material'; +import CheckIcon from '@mui/icons-material/Check'; +import SortIcon from '@mui/icons-material/Sort'; import { Box, Button, diff --git a/src/modules/migration/MigrationBottomPanel.tsx b/src/modules/migration/MigrationBottomPanel.tsx index eb9c5ed848..556c1dafba 100644 --- a/src/modules/migration/MigrationBottomPanel.tsx +++ b/src/modules/migration/MigrationBottomPanel.tsx @@ -1,7 +1,7 @@ import { valueToBigNumber } from '@aave/math-utils'; import { ExclamationIcon } from '@heroicons/react/solid'; import { Trans } from '@lingui/macro'; -import { ArrowDownward } from '@mui/icons-material'; +import ArrowDownward from '@mui/icons-material/ArrowDownward'; import { Box, Button, diff --git a/src/modules/migration/MigrationMarketCard.tsx b/src/modules/migration/MigrationMarketCard.tsx index 32a9a4296e..cb1820f46d 100644 --- a/src/modules/migration/MigrationMarketCard.tsx +++ b/src/modules/migration/MigrationMarketCard.tsx @@ -1,5 +1,6 @@ import { ArrowNarrowRightIcon } from '@heroicons/react/solid'; -import { KeyboardArrowDown, KeyboardArrowUp } from '@mui/icons-material'; +import KeyboardArrowDown from '@mui/icons-material/KeyboardArrowDown'; +import KeyboardArrowUp from '@mui/icons-material/KeyboardArrowUp'; import { Avatar, Badge, From f5a8b1e90b984a766c45f895e6bf64676dda130d Mon Sep 17 00:00:00 2001 From: Abhijeet Singh Date: Thu, 23 Jul 2026 19:44:58 +0900 Subject: [PATCH 37/39] feat(v3-uplift): dev/components showcase polish + shared-theme fixes Design-system uplift for the dev/components showcase and shared MUI theme: - Slider retargeted to the Switch palette (purple-1 track, fg-3 rail, white thumb) - Checkbox: bg-2 fill + inset fg-5->fg-4 ring; Radio newly themed as a checkbox twin (one shared selection-control recipe so the two never drift) - Select trigger hover transition (was instant); menu-item keyboard focus now shares the hover highlight - Toggle group: bg-5 fill + inset hairline - Frosted tooltip surface (ContentWithTooltip); info-tooltip icon uses on-theme neutrals instead of blue - Contained-button hover now follows the nearest color scheme (fixes the showcase's local light/dark toggle) via a new per-scheme fg-max-hover token - dev/components: mobile-ready layout (drawer nav + responsive), full input-variant coverage incl. Radio, button end-icon + color rows, Menu open-state active fill Also carries the in-progress typography-variant consolidation (24 -> 17 variants, swept across ~114 files) - entangled with the theme.tsx/figmaColors.ts changes above, so committed together. --- src/components/AssetCategoryMultiselect.tsx | 6 +- src/components/ContentWithTooltip.tsx | 30 ++- src/components/HealthFactorNumber.tsx | 2 +- src/components/MarketSwitcher.tsx | 4 +- src/components/ReserveOverviewBox.tsx | 2 +- src/components/ReserveSubheader.tsx | 6 +- src/components/SearchInput.tsx | 8 +- src/components/StyledToggleButtonGroup.tsx | 12 +- src/components/TextWithTooltip.tsx | 5 +- src/components/caps/CapsCircularStatus.tsx | 2 +- src/components/caps/CapsHint.tsx | 4 +- src/components/caps/DebtCeilingStatus.tsx | 10 +- src/components/icons/SearchIcon.tsx | 26 ++ .../incentives/IncentivesButton.tsx | 6 +- src/components/incentives/IncentivesCard.tsx | 6 +- .../incentives/IncentivesTooltipContent.tsx | 2 +- .../MeritIncentivesTooltipContent.tsx | 2 +- .../MerklIncentivesTooltipContent.tsx | 2 +- src/components/infoTooltips/EModeTooltip.tsx | 2 +- .../PointsBasedCampaignTooltip.tsx | 2 +- .../infoTooltips/PriceImpactTooltip.tsx | 4 +- .../WrappedTokenToolTipContent.tsx | 12 +- .../isolationMode/IsolatedBadge.tsx | 2 +- src/components/primitives/FormattedNumber.tsx | 8 +- src/components/transactions/AssetInput.tsx | 8 +- .../Bridge/BridgeFeeTokenSelector.tsx | 4 +- .../Bridge/BridgeModalContent.tsx | 4 +- .../ClaimRewards/ClaimRewardsModalContent.tsx | 19 +- .../transactions/Emode/EmodeAssetTable.tsx | 2 +- .../transactions/Emode/EmodeModalContent.tsx | 8 +- .../transactions/FlowCommons/Success.tsx | 3 +- .../FlowCommons/TxModalDetails.tsx | 24 +- .../GovDelegation/DelegationTokenSelector.tsx | 2 +- .../MigrateV3/MigrateV3ModalAssetsList.tsx | 4 +- .../StakeCooldownModalContent.tsx | 6 +- .../StakingMigrateModalContent.tsx | 2 +- .../Swap/details/CollateralSwapDetails.tsx | 8 +- .../Swap/details/CowCostsDetails.tsx | 6 +- .../Swap/details/DebtSwapDetails.tsx | 12 +- .../Swap/details/ParaswapCostsDetails.tsx | 2 +- .../transactions/Swap/details/SwapDetails.tsx | 13 +- .../Swap/inputs/LimitOrderInputs.tsx | 2 +- .../Swap/inputs/MarketOrderInputs.tsx | 2 +- .../Swap/inputs/primitives/SwapAssetInput.tsx | 22 +- .../Swap/inputs/shared/PriceInput.tsx | 10 +- .../Swap/inputs/shared/SwitchRates.tsx | 4 +- .../Swap/modals/result/SwapResultView.tsx | 12 +- .../bridge/BridgeTransactionListItem.tsx | 28 +- src/modules/dashboard/DashboardTopPanel.tsx | 2 +- .../components/InfoWrapper.tsx | 2 +- .../BorrowAssetsListMobileItem.tsx | 2 +- .../BorrowedPositionsListItem.tsx | 2 +- src/modules/dashboard/lists/ListAPRColumn.tsx | 2 + .../dashboard/lists/ListBottomText.tsx | 4 +- .../lists/ListItemCanBeCollateral.tsx | 2 +- .../dashboard/lists/ListTopInfoItem.tsx | 2 +- .../dashboard/lists/ListValueColumn.tsx | 8 +- src/modules/dashboard/lists/ListValueRow.tsx | 4 +- src/modules/dashboard/lists/SlippageList.tsx | 8 +- .../SuppliedPositionsListMobileItem.tsx | 2 +- .../SupplyAssetsList/SupplyAssetsListItem.tsx | 22 +- .../SupplyAssetsListMobileItem.tsx | 2 +- .../components/ButtonsSection/index.tsx | 28 +- .../DataPrimitivesSection/index.tsx | 16 +- .../components/FormControlsSection/index.tsx | 118 +++++++-- .../components/OverlaysSection/index.tsx | 41 ++- .../components/ShowcaseLayout/index.tsx | 167 ++++++++---- .../components/SurfacesSection/index.tsx | 18 +- .../components/Swatch/index.tsx | 2 +- .../components/TogglesBadgesSection/index.tsx | 56 +++- .../dev/ComponentShowcase/utils/catalog.ts | 9 +- src/modules/faucet/FaucetAssetsList.tsx | 6 +- src/modules/governance/VoteBar.tsx | 4 +- .../governance/proposal/ProposalPayloads.tsx | 2 +- .../governance/proposal/ProposalTimeline.tsx | 2 +- src/modules/governance/proposal/VoteInfo.tsx | 6 +- src/modules/history/HistoryWrapper.tsx | 2 +- src/modules/history/actions/ActionDetails.tsx | 60 ++--- src/modules/markets/Gho/GhoBanner.tsx | 13 +- src/modules/markets/MarketAssetsListItem.tsx | 10 +- .../markets/MarketAssetsListMobileItem.tsx | 10 +- src/modules/markets/MarketsTopPanel.tsx | 2 +- src/modules/migration/MigrationListItem.tsx | 29 +- .../migration/MigrationListMobileItem.tsx | 24 +- src/modules/migration/MigrationMarketCard.tsx | 2 +- .../reserve-overview/AddTokenDropdown.tsx | 6 +- src/modules/reserve-overview/BorrowInfo.tsx | 17 +- .../Gho/GhoReserveTopDetails.tsx | 2 +- .../reserve-overview/Gho/SavingsGho.tsx | 10 +- .../reserve-overview/ReserveConfiguration.tsx | 2 +- .../reserve-overview/ReserveEModePanel.tsx | 6 +- .../ReserveFactorOverview.tsx | 2 +- .../reserve-overview/ReserveTopDetails.tsx | 2 +- .../ReserveTopDetailsWrapper.tsx | 2 +- src/modules/reserve-overview/SupplyInfo.tsx | 23 +- .../reserve-overview/TokenLinkDropdown.tsx | 6 +- .../reserve-overview/graphs/ApyGraph.tsx | 4 +- .../reserve-overview/graphs/MeritApyGraph.tsx | 4 +- src/modules/sGho/SGhoDepositRow.tsx | 2 +- src/modules/sGho/SGhoHeader.tsx | 4 +- src/modules/sGho/SGhoLoggedOutPreview.tsx | 4 +- src/modules/sGho/SGhoSavingsRate.tsx | 6 +- src/modules/sGho/SGhoWithdrawRow.tsx | 2 +- src/modules/staking/GhoStakingPanel.tsx | 10 +- src/modules/staking/StakeActionBox.tsx | 2 +- src/modules/staking/StakingHeader.tsx | 2 +- src/modules/staking/StakingPanel.tsx | 14 +- src/modules/staking/StakingPanelNoWallet.tsx | 2 +- src/modules/stkGho/StkGhoDepositRow.tsx | 2 +- src/modules/stkGho/StkGhoSavingsRate.tsx | 4 +- src/modules/stkGho/StkGhoWithdrawRow.tsx | 2 +- src/modules/umbrella/AmountSharesItem.tsx | 2 +- .../umbrella/AmountStakedUnderlyingItem.tsx | 2 +- src/modules/umbrella/AvailableToStakeItem.tsx | 2 +- .../umbrella/StakeAssets/StakeAssetName.tsx | 4 +- .../umbrella/StakeCooldownModalContent.tsx | 8 +- src/modules/umbrella/StakingApyItem.tsx | 19 +- .../umbrella/UmbrellaAssetsDefault.tsx | 4 +- .../umbrella/UmbrellaClaimModalContent.tsx | 8 +- src/modules/umbrella/UmbrellaHeader.tsx | 6 +- src/modules/umbrella/UmbrellaModalContent.tsx | 2 +- src/modules/umbrella/UnstakeModalContent.tsx | 2 +- .../umbrella/helpers/AmountAvailableItem.tsx | 4 +- src/modules/umbrella/helpers/Helpers.tsx | 8 +- src/utils/figmaColors.ts | 15 +- src/utils/theme.tsx | 249 +++++++++--------- 126 files changed, 840 insertions(+), 700 deletions(-) create mode 100644 src/components/icons/SearchIcon.tsx diff --git a/src/components/AssetCategoryMultiselect.tsx b/src/components/AssetCategoryMultiselect.tsx index 5b6ce5e651..b58bffacd1 100644 --- a/src/components/AssetCategoryMultiselect.tsx +++ b/src/components/AssetCategoryMultiselect.tsx @@ -79,10 +79,12 @@ export const AssetCategoryMultiSelect = ({ onClick={handleClick} disabled={disabled} variant="outlined" + aria-haspopup="true" + aria-expanded={open} + endIcon={} sx={{ width: sm ? '100%' : 'unset', justifyContent: sm ? 'space-between' : 'center', - gap: 2, textTransform: 'none', ...sx, }} @@ -96,8 +98,6 @@ export const AssetCategoryMultiSelect = ({ {selectedCount} Categories )} - - theme.unstable_sx({ + // Frosted-glass tooltip: a translucent border-1 surface over an 80px backdrop blur, framed by + // an inset border-0 hairline + a soft shadow-medium drop. Padding lives here (not the inner Box). '.MuiTooltip-tooltip': { color: 'fg-1', - backgroundColor: 'surface-elevated', - p: 0, - borderRadius: '6px', - boxShadow: '0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1)', - maxWidth: '280px', + backgroundColor: 'border-1', + borderRadius: '0.5rem', + boxShadow: `0 1px 12px 0 ${figVars['shadow-medium']}, inset 0 0 0 1px ${figVars['border-0']}`, + backdropFilter: 'blur(80px)', + padding: '0.5rem 0.75rem', + maxWidth: '250px', + textAlign: 'center', + whiteSpace: 'pre-wrap', + textWrap: 'pretty', + fontSize: '0.75rem', + fontWeight: 400, + lineHeight: '135%', }, '.MuiTooltip-arrow': { - color: 'surface-elevated', - '&:before': { - boxShadow: '0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1)', - }, + color: 'border-1', }, }) ); @@ -86,10 +93,7 @@ export const ContentWithTooltip = ({ > {value === '-1' ? ( - + ) : ( diff --git a/src/components/MarketSwitcher.tsx b/src/components/MarketSwitcher.tsx index 6b7140ec4b..32e01adc5e 100644 --- a/src/components/MarketSwitcher.tsx +++ b/src/components/MarketSwitcher.tsx @@ -507,7 +507,7 @@ export const MarketSwitcher = () => { const sectionHeader = (label: React.ReactNode) => ( { {pinned.length > 0 && ( {title && ( - + {title} )} diff --git a/src/components/ReserveSubheader.tsx b/src/components/ReserveSubheader.tsx index 23116e862d..d27d20b5d6 100644 --- a/src/components/ReserveSubheader.tsx +++ b/src/components/ReserveSubheader.tsx @@ -21,16 +21,16 @@ export function ReserveSubheader({ value, rightAlign }: ReserveSubheaderProps) { }} > {value === 'Disabled' ? ( - + (Disabled) ) : ( diff --git a/src/components/SearchInput.tsx b/src/components/SearchInput.tsx index ef24c7e3c1..af8cac77b1 100644 --- a/src/components/SearchInput.tsx +++ b/src/components/SearchInput.tsx @@ -1,8 +1,8 @@ -import { SearchIcon } from '@heroicons/react/outline'; import { XCircleIcon } from '@heroicons/react/solid'; import { Box, BoxProps, IconButton, InputBase, useMediaQuery, useTheme } from '@mui/material'; import debounce from 'lodash/debounce'; import { useMemo, useRef, useState } from 'react'; +import { SearchIcon } from 'src/components/icons/SearchIcon'; import { figVars } from 'src/utils/figmaColors'; interface SearchInputProps { @@ -42,14 +42,12 @@ export const SearchInput = ({ alignItems: 'center', gap: 2, border: `1px solid ${figVars['border-2']}`, - borderRadius: '6px', + borderRadius: '0.5rem', height: '36px', ...wrapperSx, }} > - - - + ({ - backgroundColor: figVars['bg-1'], + backgroundColor: figVars['bg-5'], borderRadius: '0.5rem', - boxShadow: figSurfaceShadow(), + boxShadow: `inset 0 0 0 1px ${figVars['shadow-stroke-2']}`, padding: '2px', height: '36px', width: '100%', diff --git a/src/components/TextWithTooltip.tsx b/src/components/TextWithTooltip.tsx index 8aa3d93241..58bab46111 100644 --- a/src/components/TextWithTooltip.tsx +++ b/src/components/TextWithTooltip.tsx @@ -74,9 +74,10 @@ export const TextWithTooltip = ({ {icon || } diff --git a/src/components/caps/CapsCircularStatus.tsx b/src/components/caps/CapsCircularStatus.tsx index b1015dbc63..c413e51fcd 100644 --- a/src/components/caps/CapsCircularStatus.tsx +++ b/src/components/caps/CapsCircularStatus.tsx @@ -75,7 +75,7 @@ export const CapsCircularStatus = ({ value, tooltipContent, onClick }: CapsCircu value={value <= 2 ? 2 : value > 100 ? 100 : value} /> - + {title} = 0 ? value : 0} compact symbol={isUSD ? 'USD' : undefined} - variant="tooltip" + variant="caption" /> )} diff --git a/src/components/caps/DebtCeilingStatus.tsx b/src/components/caps/DebtCeilingStatus.tsx index 9d4cf41492..f5821ec2ee 100644 --- a/src/components/caps/DebtCeilingStatus.tsx +++ b/src/components/caps/DebtCeilingStatus.tsx @@ -71,24 +71,24 @@ export const DebtCeilingStatus = ({ of diff --git a/src/components/icons/SearchIcon.tsx b/src/components/icons/SearchIcon.tsx new file mode 100644 index 0000000000..fe50ea831b --- /dev/null +++ b/src/components/icons/SearchIcon.tsx @@ -0,0 +1,26 @@ +import { SvgIcon, SvgIconProps } from '@mui/material'; + +// Search / magnifying-glass icon. The lens is stroked and the handle is filled — both use +// `currentColor` so the color comes from the consumer (a palette token via `color` / sx). +export const SearchIcon = ({ sx, ...rest }: SvgIconProps) => { + return ( + + + + + ); +}; diff --git a/src/components/incentives/IncentivesButton.tsx b/src/components/incentives/IncentivesButton.tsx index c42622893c..98d2b54be4 100644 --- a/src/components/incentives/IncentivesButton.tsx +++ b/src/components/incentives/IncentivesButton.tsx @@ -381,7 +381,7 @@ const Content = ({ if (incentivesNetAPR !== INFINITY && incentivesNetAPR < 10000) { return ( - + ); @@ -392,7 +392,7 @@ const Content = ({ value={incentivesNetAPR} percent compact - variant="secondary12" + variant="subheader2" color="fg-2" /> @@ -517,7 +517,7 @@ const ContentButton = ({ value, iconSrc }: { value: number; iconSrc: string }) = }} > - + {`${value}x`} diff --git a/src/components/incentives/IncentivesCard.tsx b/src/components/incentives/IncentivesCard.tsx index 6c25c0028f..5e0e3b7455 100644 --- a/src/components/incentives/IncentivesCard.tsx +++ b/src/components/incentives/IncentivesCard.tsx @@ -24,8 +24,8 @@ interface IncentivesCardProps { value: string | number; incentives?: ReserveIncentiveResponse[]; address?: string; - variant?: 'main14' | 'main16' | 'secondary14'; - symbolsVariant?: 'secondary14' | 'secondary16'; + variant?: 'subheader1' | 'h4' | 'h5'; + symbolsVariant?: 'h5' | 'secondary16'; color?: string; tooltip?: ReactNode; market: string; @@ -39,7 +39,7 @@ export const IncentivesCard = ({ value, incentives, address, - variant = 'secondary14', + variant = 'h5', symbolsVariant, align, color, diff --git a/src/components/incentives/IncentivesTooltipContent.tsx b/src/components/incentives/IncentivesTooltipContent.tsx index 146417ba58..8075fd0938 100644 --- a/src/components/incentives/IncentivesTooltipContent.tsx +++ b/src/components/incentives/IncentivesTooltipContent.tsx @@ -296,7 +296,7 @@ export const IncentivesTooltipContent = ({ protocolAPY = 0, address, }: IncentivesTooltipContentProps) => { - const typographyVariant = 'secondary12'; + const typographyVariant = 'subheader2'; const { data: meritIncentives } = useMeritIncentives({ symbol, diff --git a/src/components/incentives/MeritIncentivesTooltipContent.tsx b/src/components/incentives/MeritIncentivesTooltipContent.tsx index ffcae77052..72b1f27ca7 100644 --- a/src/components/incentives/MeritIncentivesTooltipContent.tsx +++ b/src/components/incentives/MeritIncentivesTooltipContent.tsx @@ -114,7 +114,7 @@ export const MeritIncentivesTooltipContent = ({ const theme = useTheme(); const { openClaimRewards } = useModalContext(); const account = useRootStore((store) => store.account); - const typographyVariant = 'secondary12'; + const typographyVariant = 'subheader2'; const handleClaimClick = () => { openClaimRewards(); diff --git a/src/components/incentives/MerklIncentivesTooltipContent.tsx b/src/components/incentives/MerklIncentivesTooltipContent.tsx index f5d40b548b..2239764ef5 100644 --- a/src/components/incentives/MerklIncentivesTooltipContent.tsx +++ b/src/components/incentives/MerklIncentivesTooltipContent.tsx @@ -16,7 +16,7 @@ export const MerklIncentivesTooltipContent = ({ }) => { const theme = useTheme(); - const typographyVariant = 'secondary12'; + const typographyVariant = 'subheader2'; const merklIncentivesFormatted = getSymbolMap(merklIncentives); diff --git a/src/components/infoTooltips/EModeTooltip.tsx b/src/components/infoTooltips/EModeTooltip.tsx index ccd1143426..c4ff8c3a38 100644 --- a/src/components/infoTooltips/EModeTooltip.tsx +++ b/src/components/infoTooltips/EModeTooltip.tsx @@ -15,7 +15,7 @@ export const EModeTooltip = ({ .{' '} diff --git a/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx b/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx index 6340d70d65..9fe46d28f3 100644 --- a/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx +++ b/src/components/infoTooltips/PointsBasedCampaignTooltip.tsx @@ -24,7 +24,7 @@ export const PointsBasedCampaignTooltip = ({ ...rest }: PointBasedCampaignTooltipProps) => { const theme = useTheme(); - const typographyVariant = 'secondary12'; + const typographyVariant = 'subheader2'; const [inkPriceInput, setInkPriceInput] = useState(''); const [estimatedPointsValue, setEstimatedPointsValue] = useState(null); const [estimatedAPY, setEstimatedAPY] = useState(null); diff --git a/src/components/infoTooltips/PriceImpactTooltip.tsx b/src/components/infoTooltips/PriceImpactTooltip.tsx index fe8bc23bcc..969985f60a 100644 --- a/src/components/infoTooltips/PriceImpactTooltip.tsx +++ b/src/components/infoTooltips/PriceImpactTooltip.tsx @@ -31,7 +31,7 @@ export const PriceImpactTooltip = ({ return ( diff --git a/src/components/infoTooltips/WrappedTokenToolTipContent.tsx b/src/components/infoTooltips/WrappedTokenToolTipContent.tsx index 1274c6fc23..bf3b2c47e8 100644 --- a/src/components/infoTooltips/WrappedTokenToolTipContent.tsx +++ b/src/components/infoTooltips/WrappedTokenToolTipContent.tsx @@ -24,7 +24,7 @@ export const WrappedTokenTooltipContent = ({ return ( - + DAI balance will be converted via DSR contracts and then supplied as sDAI. Switching incurs no additional costs and no slippage. @@ -32,7 +32,7 @@ export const WrappedTokenTooltipContent = ({ - + Exchange rate @@ -40,18 +40,18 @@ export const WrappedTokenTooltipContent = ({ ) : ( - - {tokenInSymbol} + + {tokenInSymbol} - {tokenOutSymbol} + {tokenOutSymbol} )} diff --git a/src/components/isolationMode/IsolatedBadge.tsx b/src/components/isolationMode/IsolatedBadge.tsx index 501d4fdddd..5a492c4c6d 100644 --- a/src/components/isolationMode/IsolatedBadge.tsx +++ b/src/components/isolationMode/IsolatedBadge.tsx @@ -57,7 +57,7 @@ export const IsolatedEnabledBadge = ({ > {'<'} @@ -133,7 +133,7 @@ export function FormattedNumber({ component="span" sx={{ mr: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'fg-2'} + color={symbolsColor || rest.color} > $ @@ -158,7 +158,7 @@ export function FormattedNumber({ component="span" sx={{ ml: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'fg-2'} + color={symbolsColor || rest.color} > % @@ -168,7 +168,7 @@ export function FormattedNumber({ component="span" sx={{ ml: 0.5 }} variant={symbolsVariant || rest.variant} - color={symbolsColor || 'fg-2'} + color={symbolsColor || rest.color} > {symbol} diff --git a/src/components/transactions/AssetInput.tsx b/src/components/transactions/AssetInput.tsx index bcd6cbc3e7..76afc88e59 100644 --- a/src/components/transactions/AssetInput.tsx +++ b/src/components/transactions/AssetInput.tsx @@ -261,7 +261,7 @@ export const AssetInput = ({ aToken={asset.aToken} sx={{ mr: 2, ml: 4 }} /> - + {symbol} @@ -303,7 +303,7 @@ export const AssetInput = ({ value={isNaN(Number(usdValue)) ? 0 : Number(usdValue)} compact symbol="USD" - variant="secondary12" + variant="subheader2" color="fg-3" symbolsColor="fg-3" flexGrow={1} @@ -312,12 +312,12 @@ export const AssetInput = ({ {asset.balance && onChange && ( <> - + {balanceText && balanceText !== '' ? balanceText : Balance}{' '} diff --git a/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx b/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx index 80e41a94d0..94a6dc21ec 100644 --- a/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx +++ b/src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx @@ -119,7 +119,7 @@ export const BridgeFeeTokenSelector = ({ {!bridgeFeeFormatted && !loading ? ( - + ) : loading ? ( ) : ( @@ -129,7 +129,7 @@ export const BridgeFeeTokenSelector = ({ { sx={{ borderRadius: '4px' }} /> ) : ( - {estimatedTimeToDestination} + {estimatedTimeToDestination} )} @@ -507,7 +507,7 @@ export const BridgeModalContent = () => { sx={{ borderRadius: '4px' }} /> ) : ( - {estimatedTimeToDestination} + {estimatedTimeToDestination} )} */} {/* Spacer */} diff --git a/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx b/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx index 277e03d718..9895501719 100644 --- a/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx +++ b/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx @@ -415,8 +415,8 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo > - - + + {reward.symbol} @@ -458,9 +458,9 @@ export const ClaimRewardsModalContent = ({ user, reserves }: ClaimRewardsModalCo /> - + {meritReward.currency.symbol} - - + + {meritReward.symbol} - - + + {reward.symbol} diff --git a/src/components/transactions/Emode/EmodeAssetTable.tsx b/src/components/transactions/Emode/EmodeAssetTable.tsx index 78f5a90dd1..383dd1e415 100644 --- a/src/components/transactions/Emode/EmodeAssetTable.tsx +++ b/src/components/transactions/Emode/EmodeAssetTable.tsx @@ -70,7 +70,7 @@ export const EmodeAssetTable = ({ assets, maxHeight = '270px' }: EmodeAssetTable - {asset.symbol} + {asset.symbol} diff --git a/src/components/transactions/Emode/EmodeModalContent.tsx b/src/components/transactions/Emode/EmodeModalContent.tsx index b548725c91..f6cae123ea 100644 --- a/src/components/transactions/Emode/EmodeModalContent.tsx +++ b/src/components/transactions/Emode/EmodeModalContent.tsx @@ -376,7 +376,7 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) => percent visibleDecimals={2} value={user.currentLoanToValue} - variant="secondary12" + variant="subheader2" /> @@ -385,7 +385,7 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) => percent visibleDecimals={2} value={newSummary.currentLoanToValue} - variant="secondary12" + variant="subheader2" /> @@ -550,7 +550,7 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) => percent visibleDecimals={2} value={user.currentLoanToValue} - variant="secondary12" + variant="subheader2" /> @@ -559,7 +559,7 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) => percent visibleDecimals={2} value={Number(selectedEmode.ltv) / 10000} - variant="secondary12" + variant="subheader2" /> diff --git a/src/components/transactions/FlowCommons/Success.tsx b/src/components/transactions/FlowCommons/Success.tsx index ea19c5f488..dfb23c99ba 100644 --- a/src/components/transactions/FlowCommons/Success.tsx +++ b/src/components/transactions/FlowCommons/Success.tsx @@ -53,8 +53,7 @@ export const TxSuccessView = ({ {action && amount && symbol && ( - You {action} {' '} - {symbol} + You {action} {symbol} )} diff --git a/src/components/transactions/FlowCommons/TxModalDetails.tsx b/src/components/transactions/FlowCommons/TxModalDetails.tsx index 29b890459a..fedd768d92 100644 --- a/src/components/transactions/FlowCommons/TxModalDetails.tsx +++ b/src/components/transactions/FlowCommons/TxModalDetails.tsx @@ -109,11 +109,11 @@ export const DetailsNumberLine = ({ <> {iconSymbol && } {numberPrefix && {numberPrefix}} - + {futureValue && ( <> {ArrowRightIcon} - + )} @@ -166,9 +166,9 @@ export const DetailsNumberLineWithSub = ({ {value && ( <> - + {!hideSymbolSuffix && ( - + {symbol} )} @@ -176,9 +176,9 @@ export const DetailsNumberLineWithSub = ({ )} {tokenIcon && } - + {!hideSymbolSuffix && ( - + {symbol} )} @@ -278,7 +278,7 @@ export const DetailsIncentivesLine = ({ {ArrowRightIcon} {futureIncentives && futureIncentives.length === 0 && ( - + None )} @@ -318,7 +318,7 @@ export const DetailsHFLine = ({ ) : ( <> - + {visibleHfChange && ( <> @@ -326,7 +326,7 @@ export const DetailsHFLine = ({ )} @@ -389,7 +389,7 @@ export const DetailsCooldownLine = ({ ) : ( - + @@ -420,11 +420,11 @@ export const DetailsTextLine = ({ ) : ( {compactedProps ? ( - + {text} ) : ( - {text} + {text} )} )} diff --git a/src/components/transactions/GovDelegation/DelegationTokenSelector.tsx b/src/components/transactions/GovDelegation/DelegationTokenSelector.tsx index 452a3736a4..516f1626f5 100644 --- a/src/components/transactions/GovDelegation/DelegationTokenSelector.tsx +++ b/src/components/transactions/GovDelegation/DelegationTokenSelector.tsx @@ -69,7 +69,7 @@ export const TokenRow: React.FC = ({ symbol, amount }) => { } > - + ); }; diff --git a/src/components/transactions/MigrateV3/MigrateV3ModalAssetsList.tsx b/src/components/transactions/MigrateV3/MigrateV3ModalAssetsList.tsx index e8c3e25306..0f999b094a 100644 --- a/src/components/transactions/MigrateV3/MigrateV3ModalAssetsList.tsx +++ b/src/components/transactions/MigrateV3/MigrateV3ModalAssetsList.tsx @@ -35,8 +35,8 @@ export const MigrateV3ModalAssetsList = ({ caption, assets }: MigrateV3ModalAsse > - - + + {asset.symbol} diff --git a/src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx b/src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx index 0628958510..f4c358d512 100644 --- a/src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx +++ b/src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx @@ -198,7 +198,7 @@ export const StakeCooldownModalContent = ({ stakeAssetName, icon }: StakeCooldow - + @@ -217,13 +217,13 @@ export const StakeCooldownModalContent = ({ stakeAssetName, icon }: StakeCooldow - + {dateMessage(stakeCooldownSeconds)} - + {dateMessage(stakeCooldownSeconds + stakeUnstakeWindow)} diff --git a/src/components/transactions/StakingMigrate/StakingMigrateModalContent.tsx b/src/components/transactions/StakingMigrate/StakingMigrateModalContent.tsx index 6e8c86fc5d..62fb9f6779 100644 --- a/src/components/transactions/StakingMigrate/StakingMigrateModalContent.tsx +++ b/src/components/transactions/StakingMigrate/StakingMigrateModalContent.tsx @@ -112,7 +112,7 @@ const TxDetailsRow = ({ caption, value, valueUSD }: TxDetailsRowProps) => { - + + {sourceAmountAfterSwap.toString()} {userReserve.reserve.symbol} } @@ -235,7 +235,7 @@ export const ColalteralSwapDetails = ({ state }: { params: SwapParams; state: Sw @@ -275,7 +275,7 @@ export const ColalteralSwapDetails = ({ state }: { params: SwapParams; state: Sw /> + {targetAmountAfterSwap.toString()} {userTargetReserve.reserve.symbol} } @@ -287,7 +287,7 @@ export const ColalteralSwapDetails = ({ state }: { params: SwapParams; state: Sw diff --git a/src/components/transactions/Swap/details/CowCostsDetails.tsx b/src/components/transactions/Swap/details/CowCostsDetails.tsx index 7b4bd7e7d4..3365efdc84 100644 --- a/src/components/transactions/Swap/details/CowCostsDetails.tsx +++ b/src/components/transactions/Swap/details/CowCostsDetails.tsx @@ -173,7 +173,7 @@ export const CowCostsDetails = ({ state }: { state: SwapState }) => { width="16px" sx={{ mr: 2, ml: 4, fontSize: '16px' }} /> - + { width="16px" sx={{ mr: 2, ml: 4, fontSize: '16px' }} /> - + { width="16px" sx={{ mr: 2, ml: 4, fontSize: '16px' }} /> - + {ArrowRightIcon} @@ -109,7 +109,7 @@ export const DebtSwapDetails = ({ /> + {sourceAmountAfterSwap.toString()} {state.sourceReserve.reserve.symbol} } @@ -121,7 +121,7 @@ export const DebtSwapDetails = ({ @@ -159,7 +159,7 @@ export const DebtSwapDetails = ({ /> + {targetAmountAfterSwap.toString()} {state.destinationReserve.reserve.symbol} } @@ -171,7 +171,7 @@ export const DebtSwapDetails = ({ diff --git a/src/components/transactions/Swap/details/ParaswapCostsDetails.tsx b/src/components/transactions/Swap/details/ParaswapCostsDetails.tsx index ddc600e826..d83f97a685 100644 --- a/src/components/transactions/Swap/details/ParaswapCostsDetails.tsx +++ b/src/components/transactions/Swap/details/ParaswapCostsDetails.tsx @@ -48,7 +48,7 @@ export const ParaswapCostsDetails = ({ state }: { state: SwapState }) => { width="16px" sx={{ mr: 2, ml: 4, fontSize: '16px' }} /> - + + {buyAmount} {buyToken.symbol} } @@ -148,7 +148,7 @@ export const IntentTxDetails = ({ leaveTouchDelay={500} > - + @@ -215,7 +215,7 @@ const MarketOrderTxDetails = ({ /> + {buyAmount} {buyToken.symbol} } @@ -225,12 +225,7 @@ const MarketOrderTxDetails = ({ leaveTouchDelay={500} > - + diff --git a/src/components/transactions/Swap/inputs/LimitOrderInputs.tsx b/src/components/transactions/Swap/inputs/LimitOrderInputs.tsx index ad6ebd1ddb..d4175092fc 100644 --- a/src/components/transactions/Swap/inputs/LimitOrderInputs.tsx +++ b/src/components/transactions/Swap/inputs/LimitOrderInputs.tsx @@ -67,7 +67,7 @@ export const LimitOrderInputs = ({ {(inputInputTitle || swapState.showNetworkSelector) && ( {inputInputTitle && ( - + {inputInputTitle} )} diff --git a/src/components/transactions/Swap/inputs/MarketOrderInputs.tsx b/src/components/transactions/Swap/inputs/MarketOrderInputs.tsx index eb817ac7ec..89269a0582 100644 --- a/src/components/transactions/Swap/inputs/MarketOrderInputs.tsx +++ b/src/components/transactions/Swap/inputs/MarketOrderInputs.tsx @@ -41,7 +41,7 @@ export const MarketOrderInputs = ({ {(params.inputInputTitle || swapState.showNetworkSelector) && ( {params.inputInputTitle && ( - + {params.inputInputTitle} )} diff --git a/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx b/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx index 456ad6846e..8bdb7b0314 100644 --- a/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx +++ b/src/components/transactions/Swap/inputs/primitives/SwapAssetInput.tsx @@ -268,7 +268,7 @@ export const SwitchAssetInput = ({ }} > {title && ( - + {title} )} @@ -373,7 +373,7 @@ export const SwitchAssetInput = ({ /> @@ -400,7 +400,7 @@ export const SwitchAssetInput = ({ )} > - + - + {asset.symbol} @@ -591,7 +591,7 @@ export const SwitchAssetInput = ({ sx={{ mr: 2 }} /> - + {asset.name || asset.symbol} @@ -680,7 +680,7 @@ export const SwitchAssetInput = ({ @@ -713,7 +713,7 @@ export const SwitchAssetInput = ({ )) ) : ( @@ -739,7 +739,7 @@ export const SwitchAssetInput = ({ value={isNaN(Number(usdValue)) ? 0 : Number(usdValue)} compact symbol="USD" - variant="secondary12" + variant="subheader2" color="fg-3" symbolsColor="fg-3" flexGrow={1} @@ -748,12 +748,12 @@ export const SwitchAssetInput = ({ {showBalance && selectedAsset.balance && ( <> - + {balanceTitle || 'Balance'} - + When 1 {fromAsset.symbol} is worth: @@ -331,7 +331,7 @@ export const PriceInput = ({ /> @@ -383,18 +383,18 @@ export const PriceInput = ({ value={rate.usd ? rate.usd.toString() : 0} compact symbol="USD" - variant="secondary12" + variant="subheader2" color="fg-3" symbolsColor="fg-3" flexGrow={1} /> )} - + @@ -68,7 +68,7 @@ export const SwitchRates = ({ <> - Base: + Base: - Surplus: {' '} - ( + Surplus:{' '} + ( ) @@ -327,7 +327,7 @@ export const SwapTxSuccessView = ({ /> + {inAmount} {symbol} } @@ -367,7 +367,7 @@ export const SwapTxSuccessView = ({ /> + {outFinalAmount} {outSymbol} } diff --git a/src/modules/bridge/BridgeTransactionListItem.tsx b/src/modules/bridge/BridgeTransactionListItem.tsx index 575930d02b..d4d8a9a652 100644 --- a/src/modules/bridge/BridgeTransactionListItem.tsx +++ b/src/modules/bridge/BridgeTransactionListItem.tsx @@ -111,16 +111,11 @@ export const BridgeTransactionListItem = ({ - + {/* */} @@ -139,7 +134,7 @@ export const BridgeTransactionListItem = ({ - {age} + {age} {dayjs.unix(blockTimestamp).format('MMMM D YYYY h:mm A')} @@ -178,7 +173,7 @@ const BridgeTransactionMobileListItem = ({ - {age} + {age} {dayjs.unix(blockTimestamp).format('MMMM D YYYY h:mm A')} @@ -186,16 +181,11 @@ const BridgeTransactionMobileListItem = ({ - + {/* */} @@ -263,7 +253,7 @@ const TxStatus = ({ state }: { state: MessageExecutionState }) => { return ( - + Processing @@ -287,7 +277,7 @@ const TxStatus = ({ state }: { state: MessageExecutionState }) => { - + Success @@ -311,7 +301,7 @@ const TxStatus = ({ state }: { state: MessageExecutionState }) => { - + Failed diff --git a/src/modules/dashboard/DashboardTopPanel.tsx b/src/modules/dashboard/DashboardTopPanel.tsx index dd0649b4e1..35419bd897 100644 --- a/src/modules/dashboard/DashboardTopPanel.tsx +++ b/src/modules/dashboard/DashboardTopPanel.tsx @@ -141,7 +141,7 @@ export const DashboardTopPanel = () => { .dividedBy(user?.totalCollateralMarketReferenceCurrency || '1') .toFixed(); - const valueTypographyVariant = downToSM ? 'main16' : 'main21'; + const valueTypographyVariant = downToSM ? 'h4' : 'h2'; const noDataTypographyVariant = downToSM ? 'secondary16' : 'secondary21'; return ( diff --git a/src/modules/dashboard/LiquidationRiskParametresModal/components/InfoWrapper.tsx b/src/modules/dashboard/LiquidationRiskParametresModal/components/InfoWrapper.tsx index 2293d2f322..27f7e48c1a 100644 --- a/src/modules/dashboard/LiquidationRiskParametresModal/components/InfoWrapper.tsx +++ b/src/modules/dashboard/LiquidationRiskParametresModal/components/InfoWrapper.tsx @@ -60,7 +60,7 @@ export const InfoWrapper = ({ {children} - + {bottomText} diff --git a/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx b/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx index bd94e660d2..4b5e4c1bde 100644 --- a/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx +++ b/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx @@ -78,7 +78,7 @@ export const BorrowAssetsListMobileItem = ({ incentives={vIncentivesData} address={variableDebtTokenAddress} symbol={symbol} - variant="secondary14" + variant="h5" market={currentMarket} protocolAction={ProtocolAction.borrow} /> diff --git a/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListItem.tsx b/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListItem.tsx index 7e7ae204fb..62c3a39d74 100644 --- a/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListItem.tsx +++ b/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListItem.tsx @@ -237,7 +237,7 @@ const BorrowedPositionsListItemMobile = ({ incentives={incentives} address={variableDebtTokenAddress} symbol={symbol} - variant="secondary14" + variant="h5" market={currentMarket} protocolAction={ProtocolAction.borrow} /> diff --git a/src/modules/dashboard/lists/ListAPRColumn.tsx b/src/modules/dashboard/lists/ListAPRColumn.tsx index f645979dbe..5c48300bd7 100644 --- a/src/modules/dashboard/lists/ListAPRColumn.tsx +++ b/src/modules/dashboard/lists/ListAPRColumn.tsx @@ -33,6 +33,7 @@ export const ListAPRColumn = ({ { return ( - + Since this is a test network, you can get any of the assets if you have ETH on your wallet - + Faucet . diff --git a/src/modules/dashboard/lists/ListItemCanBeCollateral.tsx b/src/modules/dashboard/lists/ListItemCanBeCollateral.tsx index a3f40d2af1..e382bcc395 100644 --- a/src/modules/dashboard/lists/ListItemCanBeCollateral.tsx +++ b/src/modules/dashboard/lists/ListItemCanBeCollateral.tsx @@ -24,7 +24,7 @@ export const ListItemCanBeCollateral = ({ // NOTE: handled in ListItemIsolationBadge return null; } else { - return ; + return ; } }; diff --git a/src/modules/dashboard/lists/ListTopInfoItem.tsx b/src/modules/dashboard/lists/ListTopInfoItem.tsx index a486981c47..1e7500115a 100644 --- a/src/modules/dashboard/lists/ListTopInfoItem.tsx +++ b/src/modules/dashboard/lists/ListTopInfoItem.tsx @@ -26,7 +26,7 @@ export const ListTopInfoItem = ({ title, value, percent, tooltip }: ListTopInfoI {title} - + {tooltip} diff --git a/src/modules/dashboard/lists/ListValueColumn.tsx b/src/modules/dashboard/lists/ListValueColumn.tsx index be6f9ada4a..1368704056 100644 --- a/src/modules/dashboard/lists/ListValueColumn.tsx +++ b/src/modules/dashboard/lists/ListValueColumn.tsx @@ -27,7 +27,7 @@ const Content = ({ {!withTooltip && !!subValue && !disabled && ( - + )} ); @@ -67,14 +67,14 @@ export const ListValueColumn = ({ - + {capsComponent} {!disabled && ( Slippage tolerance{' '} - + {selectedSlippage}%{' '} @@ -66,7 +66,7 @@ export const ListSlippageButton = ({ } - variant="secondary14" + variant="h5" /> } disabled={false} @@ -84,7 +84,7 @@ export const ListSlippageButton = ({ data-cy={`slippageMenu_${selectedSlippage}`} > - + Select slippage tolerance @@ -116,7 +116,7 @@ export const ListSlippageButton = ({ diff --git a/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListMobileItem.tsx b/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListMobileItem.tsx index ccf8856a20..fa32938ed9 100644 --- a/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListMobileItem.tsx +++ b/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListMobileItem.tsx @@ -95,7 +95,7 @@ export const SuppliedPositionsListMobileItem = ({ incentives={aIncentivesData} address={aTokenAddress} symbol={symbol} - variant="secondary14" + variant="h5" market={currentMarket} protocolAction={ProtocolAction.supply} /> diff --git a/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx b/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx index bdb8ed5d2a..6c6ce8e072 100644 --- a/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx +++ b/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx @@ -191,12 +191,7 @@ export const SupplyAssetsListItemDesktop = ({ justifyContent: 'center', }} > - + @@ -240,7 +235,7 @@ export const SupplyAssetsListItemDesktop = ({ {debtCeiling.isMaxed ? ( - + ) : ( - + @@ -433,7 +423,7 @@ export const SupplyAssetsListItemMobile = ({ incentives={aIncentivesData} address={aTokenAddress} symbol={symbol} - variant="secondary14" + variant="h5" market={currentMarket} protocolAction={ProtocolAction.supply} /> diff --git a/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx b/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx index 4b17015558..62124693f1 100644 --- a/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx +++ b/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx @@ -98,7 +98,7 @@ export const SupplyAssetsListMobileItem = ({ incentives={aIncentivesData} address={aTokenAddress} symbol={symbol} - variant="secondary14" + variant="h5" market={currentMarket} protocolAction={ProtocolAction.supply} /> diff --git a/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx b/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx index d3bf46bc0d..58ec98fa51 100644 --- a/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/ButtonsSection/index.tsx @@ -1,4 +1,4 @@ -import { PlusIcon } from '@heroicons/react/outline'; +import { ChevronRightIcon, PlusIcon } from '@heroicons/react/outline'; import { Button, SvgIcon } from '@mui/material'; import { Section } from '../Section'; @@ -6,11 +6,12 @@ import { Specimen } from '../Specimen'; const VARIANTS = ['contained', 'outlined', 'text'] as const; const SIZES = ['small', 'medium', 'large'] as const; +const COLORS = ['primary', 'success', 'warning', 'error', 'secondary', 'info', 'inherit'] as const; export const ButtonsSection = () => (
{VARIANTS.map((variant) => ( @@ -31,8 +32,29 @@ export const ButtonsSection = () => ( } > - icon + start icon + + + ))} + + {(['contained', 'outlined'] as const).map((colorVariant) => ( + + {COLORS.map((color) => ( + + ))} ))}
diff --git a/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx b/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx index 27bf0c342b..0f2d7c7f4e 100644 --- a/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/DataPrimitivesSection/index.tsx @@ -33,12 +33,12 @@ export const DataPrimitivesSection = () => (
- - - - - - + + + + + + @@ -54,13 +54,13 @@ export const DataPrimitivesSection = () => ( - + - Gradient text + Gradient text diff --git a/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx b/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx index c530cecfc6..14d91f14a9 100644 --- a/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/FormControlsSection/index.tsx @@ -1,7 +1,11 @@ import { Box, Checkbox, + FormControlLabel, + InputAdornment, MenuItem, + Radio, + RadioGroup, Select, SelectChangeEvent, Slider, @@ -14,6 +18,10 @@ import { SearchInput } from 'src/components/SearchInput'; import { Section } from '../Section'; import { Specimen } from '../Specimen'; +// Showcase-only: render Select menus inline (disablePortal) so they inherit the showcase's LOCAL +// `data-mui-color-scheme` box instead of escaping to and following the app's global scheme. +const SELECT_MENU_PROPS = { disablePortal: true } as const; + const SelectDemo = () => { const [value, setValue] = useState('ethereum'); return ( @@ -22,10 +30,7 @@ const SelectDemo = () => { onChange={(e: SelectChangeEvent) => setValue(e.target.value)} size="small" sx={{ minWidth: 160 }} - // Showcase-only: render the menu inline so it inherits the showcase's LOCAL color scheme. - // A portaled menu escapes to , outside the showcase's `data-mui-color-scheme` box, - // and would otherwise follow the app's global scheme instead of the toggle here. - MenuProps={{ disablePortal: true }} + MenuProps={SELECT_MENU_PROPS} > Ethereum Base @@ -34,42 +39,117 @@ const SelectDemo = () => { ); }; +const MultiSelectDemo = () => { + const [value, setValue] = useState(['ethereum', 'base']); + return ( + + ); +}; + +// Sliders need a bounded width; full-width on mobile, 220px (and wrapping) on larger screens. +const sliderBox = { width: { xs: '100%', sm: 220 } }; + export const FormControlsSection = () => (
- + + + + + + + USDC }} + /> + + + + + + + + + + + } label="With label" /> - - - - - + + + + + - - + + + } label="Market" /> + } label="Limit" /> + } label="Disabled" disabled /> + - - - + + + + + + } label="With label" /> - - + + - + + + + + + + + + + + + + - + undefined} />
diff --git a/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx b/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx index 972f1a7a49..ae631b0b95 100644 --- a/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/OverlaysSection/index.tsx @@ -1,4 +1,4 @@ -import { Button, Menu, MenuItem, Select, Typography } from '@mui/material'; +import { Button, Menu, MenuItem, Typography } from '@mui/material'; import { useState } from 'react'; import { ContentWithTooltip } from 'src/components/ContentWithTooltip'; import { BasicModal } from 'src/components/primitives/BasicModal'; @@ -27,31 +27,24 @@ const ModalDemo = () => { ); }; -const SelectDemo = () => { - const [value, setValue] = useState('ethereum'); - return ( - - ); -}; - const MenuDemo = () => { const [anchorEl, setAnchorEl] = useState(null); + const open = Boolean(anchorEl); const close = () => setAnchorEl(null); return ( <> - - + First option Second option Third option @@ -66,19 +59,15 @@ export const OverlaysSection = () => ( - - - - Tooltip body content.} + tooltipContent={Tooltip body content.} > - + Click me @@ -86,7 +75,7 @@ export const OverlaysSection = () => ( - Explanation of the metric goes here. + Explanation of the metric goes here.
diff --git a/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx b/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx index f8c0279442..4374de4cab 100644 --- a/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/ShowcaseLayout/index.tsx @@ -1,4 +1,13 @@ -import { Box, Container, PaletteMode, Typography } from '@mui/material'; +import { MenuIcon } from '@heroicons/react/outline'; +import { + Box, + Container, + Drawer, + IconButton, + PaletteMode, + SvgIcon, + Typography, +} from '@mui/material'; import { useColorScheme } from '@mui/material/styles'; import { ReactNode, useState } from 'react'; import { Link } from 'src/components/primitives/Link'; @@ -11,18 +20,73 @@ interface ShowcaseLayoutProps { children: ReactNode; } +const SIDEBAR_WIDTH = 248; + export const ShowcaseLayout = ({ activeSlug, children }: ShowcaseLayoutProps) => { const { mode: appMode, systemMode } = useColorScheme(); // The showcase runs on its OWN color scheme (seeded once from the app's) so switching it // here re-declares the CSS variables for this subtree only — via the `data-mui-color-scheme` // attribute — without flipping the whole app. Colors below use `sx` palette shortcuts, - // which resolve to CSS-var refs and therefore follow that attribute. (`fig` tokens are - // reached through their semantic aliases: bg-2 → background.surface, selected → - // action.selected, button-hover → action.hover.) + // which resolve to CSS-var refs and therefore follow that attribute. const [scheme, setScheme] = useState( () => (appMode === 'system' ? systemMode : appMode) ?? 'light' ); + const [mobileNavOpen, setMobileNavOpen] = useState(false); + + // One nav block, reused by the desktop sidebar and the mobile drawer. + const nav = ( + <> + + Components + + + {SHOWCASE_GROUPS.map((group, index) => ( + + + {group.label} + + + {group.sections.map((section) => { + const active = section.slug === activeSlug; + return ( + setMobileNavOpen(false)} + sx={{ + display: 'block', + py: 1, + px: 2, + borderRadius: '8px', + color: active ? 'fg-1' : 'fg-2', + backgroundColor: active ? 'selected' : 'transparent', + '&:hover': { + color: 'fg-1', + backgroundColor: active ? 'selected' : 'button-hover', + }, + }} + > + {section.label} + + ); + })} + + ))} + + ); return ( bgcolor: 'bg-2', }} > - {/* Sidebar */} + {/* Persistent sidebar (md and up) */} height: '100vh', overflowY: 'auto', p: 4, + display: { xs: 'none', md: 'block' }, }} > - - Components - - - {SHOWCASE_GROUPS.map((group, index) => ( - - - {group.label} - - - {group.sections.map((section) => { - const active = section.slug === activeSlug; - return ( - - {section.label} - - ); - })} - - ))} + {nav} + {/* Mobile drawer (below md). It portals to , outside the local-scheme wrapper above, + so the inner Box re-declares `data-mui-color-scheme` to keep it on the showcase theme. */} + setMobileNavOpen(false)} + sx={{ display: { xs: 'block', md: 'none' } }} + PaperProps={{ sx: { width: SIDEBAR_WIDTH, border: 'none' } }} + > + + {nav} + + + {/* Content */} alignItems: 'center', justifyContent: 'space-between', gap: 4, - px: 8, + px: { xs: 4, md: 8 }, py: 3, borderBottom: '1px solid', borderColor: 'border-2', bgcolor: 'bg-2', }} > - - Component showcase - + + setMobileNavOpen(true)} + sx={{ display: { xs: 'inline-flex', md: 'none' }, ml: -1 }} + > + + + + + + Component showcase + + - + {children} diff --git a/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx b/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx index e6410b7aa5..446ab64727 100644 --- a/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx +++ b/src/modules/dev/ComponentShowcase/components/SurfacesSection/index.tsx @@ -17,7 +17,7 @@ export const SurfacesSection = () => ( {PAPER_VARIANTS.map((variant) => ( - Paper {variant} + Paper {variant} ))} @@ -27,10 +27,10 @@ export const SurfacesSection = () => ( Card title
}> - + - + @@ -51,7 +51,7 @@ export const SurfacesSection = () => ( value={1234567} symbol="USD" compact - variant="main16" + variant="h4" color="common.white" /> @@ -60,7 +60,7 @@ export const SurfacesSection = () => ( value={456789} symbol="USD" compact - variant="main16" + variant="h4" color="common.white" /> @@ -71,13 +71,13 @@ export const SurfacesSection = () => ( - + - + - + @@ -89,7 +89,7 @@ export const SurfacesSection = () => ( value="120.5" valueUSD="10450" bottomLineTitle="Cooldown" - bottomLineComponent={} + bottomLineComponent={} dataCy="showcaseStake" >